blob: 98d44e7f2a32444794683037008ec976c90e4b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
|