This adds ol.parser.ogc.KML which can be used to read and write KML documents. NetworkLinks are retrieved asynchronously. Current caveats of the implementation are: * LabelStyle not yet implemented. Missing support in renderers. * When using shared structures the parser needs to be configured with dimension 2. * We need a better way to disable fill, currently we use opacity as a workaround. * We cannot really roundtrip documents, since some of the info is not preserved in the ol structures. But we can write out most of the important info.
12 lines
383 B
XML
12 lines
383 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kml xmlns="http://www.opengis.net/kml/2.2">
|
|
<Placemark>
|
|
<name>Simple placemark</name>
|
|
<description>Attached to the ground. Intelligently places itself
|
|
at the height of the underlying terrain.</description>
|
|
<Point>
|
|
<coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
|
|
</Point>
|
|
</Placemark>
|
|
</kml>
|