blob: 38612767b5add7f9a4fd613f88221e8043ed60de (
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
75
76
77
|
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Expo.KML</name>
<Style id="small_cave_">
<IconStyle>
<scale>1.0</scale>
<Icon>
<href>icons/small_cave.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.7</scale>
</LabelStyle>
</Style>
<Style id="small_cave_hl">
<IconStyle>
<scale>2.0</scale>
<Icon>
<href>icons/small_cave.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.7</scale>
</LabelStyle>
</Style>
<StyleMap id="small_cave">
<Pair>
<key>normal</key>
<styleUrl>#small_cave_</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#small_cave_hl</styleUrl>
</Pair>
</StyleMap>
<Style id="large_cave_">
<IconStyle>
<scale>1.0</scale>
<Icon>
<href>icons/large_cave.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.7</scale>
</LabelStyle>
</Style>
<Style id="large_cave_hl">
<IconStyle>
<scale>2.0</scale>
<Icon>
<href>icons/large_cave.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.7</scale>
</LabelStyle>
</Style>
<StyleMap id="large_cave">
<Pair>
<key>normal</key>
<styleUrl>#large_cave_</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#large_cave_hl</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>Expo.KML</name>
{% for entrance in entrances %}
{{ entrance }}
{% endfor %}
</Folder>
</Document>
</kml>
|