blob: cc9f108133745a350759cd5cd04bdf7f00417d2c (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<name>Sample KML</name>
<description>This is a sample KML File</description>
<Folder>
<name>Category 1</name>
<Snippet />
<description>Category description</description>
<Placemark id='1'>
<name>Place 1</name>
<Snippet>snippet</Snippet>
<description><![CDATA[<p>Description of place 1 with html</p>]]></description>
<Point>
<coordinates>-4.48285,48.38348,0</coordinates>
</Point>
</Placemark>
<Folder>
<name>Subcategory 1</name>
<Snippet />
<description><![CDATA[<p>Subcategory description]]></description>
<Placemark id='2'>
<name>Place 21</name>
<Snippet>snippet</Snippet>
<description>Place 21 description</description>
<Point>
<coordinates>-4.54328,48.374475,0</coordinates>
</Point>
</Placemark>
<Placemark id='3'>
<name>Place 22</name>
<Snippet>snippet</Snippet>
<description>Place 22 description</description>
<Point>
<coordinates>-4.69242,48.57501,0</coordinates>
</Point>
</Placemark>
<Placemark id='4'>
<name>Place 22</name>
<Snippet>snippet</Snippet>
<description>Place 44 description</description>
<LineString>
<coordinates>-112.0814237830345,36.10677870477137,0
-112.0870267752693,36.0905099328766,0
</coordinates>
</LineString>
</Placemark>
</Folder>
</Folder>
<Folder>
<name>Category 2</name>
<Snippet />
<description><![CDATA[<p>Category 2 description</p>]]></description>
<Folder>
<name>Subcategory 2</name>
<Snippet />
<description>Description</description>
<Placemark id='4'>
<name>Place 3</name>
<Snippet>snippet</Snippet>
<description><![CDATA[<p>Place 3 description</p>]]></description>
<Point>
<coordinates>-4.69242,48.57501,0</coordinates>
</Point>
</Placemark>
</Folder>
</Folder>
</Document>
<NetworkLinkControl>
<linkName>Link name</linkName>
<linkDescription>Link description</linkDescription>
<minRefreshPeriod>3600</minRefreshPeriod>
</NetworkLinkControl>
</kml>
|