mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 23:01:48 +00:00
feat(server): add KML and KMZ place import pipeline
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml>
|
||||
<Document>
|
||||
<Placemark>
|
||||
<name>Broken Placemark</name>
|
||||
<Point><coordinates>2.1,48.1,0</coordinates></Point>
|
||||
</Document>
|
||||
</kml>
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml xmlns="http://www.opengis.net/kml/2.2">
|
||||
<Document>
|
||||
<Folder>
|
||||
<name>Food</name>
|
||||
<Folder>
|
||||
<name>Parks</name>
|
||||
<Placemark>
|
||||
<name>Nested Place</name>
|
||||
<description>Nested <i>folder</i> placemark<br/>line 2</description>
|
||||
<Point>
|
||||
<coordinates>13.4050,52.5200,15</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
</Folder>
|
||||
<Placemark>
|
||||
<name>Empty Placemark</name>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<Point>
|
||||
<coordinates>13.4010,52.5210,0</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
</Folder>
|
||||
</Document>
|
||||
</kml>
|
||||
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml xmlns="http://www.opengis.net/kml/2.2">
|
||||
<Document>
|
||||
<Folder>
|
||||
<name>Museums</name>
|
||||
<Placemark>
|
||||
<name>Eiffel Tower View</name>
|
||||
<description><![CDATA[Great spot<br>for photos <b>and</b> skyline.]]></description>
|
||||
<Point>
|
||||
<coordinates>2.2945,48.8584,0</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<description>Coordinates only placemark</description>
|
||||
<Point>
|
||||
<coordinates>2.3333,48.8600,0</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
</Folder>
|
||||
</Document>
|
||||
</kml>
|
||||
Vendored
BIN
Binary file not shown.
Reference in New Issue
Block a user