diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-05 19:42:44 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-05 19:42:44 +0200 |
| commit | 9065e677a65707f1449b85fc5fd9b57c989112f7 (patch) | |
| tree | 16b65858c3340c0e1aab5a42cf56df33cf382049 /chimere/tests | |
| parent | 2bcbefae1072c8d1a73e74f59804d5001ca6c7d2 (diff) | |
| download | Chimère-9065e677a65707f1449b85fc5fd9b57c989112f7.tar.bz2 Chimère-9065e677a65707f1449b85fc5fd9b57c989112f7.zip | |
KML import: Add test for KML with no "Folder".
Diffstat (limited to 'chimere/tests')
| -rw-r--r-- | chimere/tests/sample-no-folder.kml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chimere/tests/sample-no-folder.kml b/chimere/tests/sample-no-folder.kml new file mode 100644 index 0000000..98d44e7 --- /dev/null +++ b/chimere/tests/sample-no-folder.kml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<kml xmlns="http://www.opengis.net/kml/2.2"> + <Document> + <Placemark> + <name><![CDATA[ Name 1]]></name> + <description><![CDATA[ <b>Name 1</b>]]></description> + <Point> + <coordinates>-4.5571311,48.4236268,0</coordinates> + </Point> + </Placemark> + <Placemark> + <name>Name 2</name> + <description>This is name 2</description> + <Point> + <coordinates>-4.5571311,48.4236268,0</coordinates> + </Point> + </Placemark> + <Placemark> + <name><![CDATA[ Name 3]]></name> + <description>And name 3...</description> + <Point> + <coordinates>-4.4009323055573,48.436176306866,0</coordinates> + </Point> + </Placemark> + </Document> +</kml> |
