-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from gabeschine/feat_altitudeMode
Add option to KmlWriter to specify <altitudeMode>
Showing
3 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<kml xmlns="http://www.opengis.net/kml/2.2"> | ||
<Document> | ||
<name>routes</name> | ||
<ExtendedData> | ||
<Data name="time"> | ||
<value>2010-01-02T03:04:05.000Z</value> | ||
</Data> | ||
<Data name="copyright"> | ||
<value>lib, 2019</value> | ||
</Data> | ||
</ExtendedData> | ||
<Placemark> | ||
<name>Monte Quemado</name> | ||
<description>Argentina</description> | ||
<ExtendedData/> | ||
<Point> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>-62.8666,-25.7996,10.2</coordinates> | ||
</Point> | ||
</Placemark> | ||
<Placemark> | ||
<name>Xining</name> | ||
<description>China</description> | ||
<ExtendedData/> | ||
<Point> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>101.77,36.62,10.2</coordinates> | ||
</Point> | ||
</Placemark> | ||
<Placemark> | ||
<name>route from London to Paris</name> | ||
<ExtendedData/> | ||
<LineString> | ||
<extrude>1</extrude> | ||
<tessellate>1</tessellate> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>-0.1167,51.5,0.0 | ||
2.3333,48.8667,0.0</coordinates> | ||
</LineString> | ||
</Placemark> | ||
<Placemark> | ||
<name>route from Paris to Londan</name> | ||
<ExtendedData/> | ||
<LineString> | ||
<extrude>1</extrude> | ||
<tessellate>1</tessellate> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>2.3333,48.8667,0.0 | ||
-0.1167,51.5,0.0</coordinates> | ||
</LineString> | ||
</Placemark> | ||
<Placemark> | ||
<name>route from London to Paris</name> | ||
<ExtendedData/> | ||
<LineString> | ||
<extrude>1</extrude> | ||
<tessellate>1</tessellate> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>-0.1167,51.5,0.0 | ||
2.3333,48.8667,0.0</coordinates> | ||
</LineString> | ||
</Placemark> | ||
<Placemark> | ||
<name>route from Paris to Londan</name> | ||
<ExtendedData/> | ||
<LineString> | ||
<extrude>1</extrude> | ||
<tessellate>1</tessellate> | ||
<altitudeMode>clampToGround</altitudeMode> | ||
<coordinates>-0.1167,51.5,0.0 | ||
2.3333,48.8667,0.0</coordinates> | ||
</LineString> | ||
</Placemark> | ||
</Document> | ||
</kml> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters