-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cesium-test-app): Add KML source example
- Loading branch information
Showing
2 changed files
with
30 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,17 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<kml xmlns="http://www.opengis.net/kml/2.2"> | ||
<Document id="root_doc"> | ||
<Schema name="polygon2.5d" id="polygon2.5d"> | ||
<SimpleField name="height" type="int"></SimpleField> | ||
</Schema> | ||
<Folder><name>polygon2.5d</name> | ||
<Placemark> | ||
<name>Polygon with height higher than its Z-coords</name> | ||
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style> | ||
<ExtendedData><SchemaData schemaUrl="#polygon2.5d"> | ||
<SimpleData name="height">800</SimpleData> | ||
</SchemaData></ExtendedData> | ||
<Polygon><outerBoundaryIs><LinearRing><coordinates>13.365,49.74,350 13.363,49.735,400 13.37,49.735,450 13.373,49.74,500 13.372,49.74,650 13.368,49.738,700 13.365,49.74,350</coordinates></LinearRing></outerBoundaryIs></Polygon> | ||
</Placemark> | ||
</Folder> | ||
</Document></kml> |