-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplacemark.kml
49 lines (49 loc) · 1.45 KB
/
placemark.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>Highlighted Icon</name>
<description>Place your mouse over the icon to see it display the new icon</description>
<Style id="highlightPlacemark">
<IconStyle>
<scale>5</scale>
<Icon>
<href>http://www.percipio.dk/logo.gif</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction" />
</IconStyle>
</Style>
<Style id="normalPlacemark">
<IconStyle>
<scale>5</scale>
<Icon>
<href>http://www.percipio.dk/logo.gif</href>
</Icon>
<hotSpot x="0.5" y="0.5" xunits="fraction" yunits="fraction" />
</IconStyle>
</Style>
<StyleMap id="exampleStyleMap">
<Pair>
<key>normal</key>
<styleUrl>#normalPlacemark</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#normalPlacemark</styleUrl>
</Pair>
</StyleMap>
<Placemark>
<name>Her bor <![CDATA[<img src="www.percipio.dk/logo.gif" />]]></name>
<styleUrl>#exampleStyleMap</styleUrl>
<Point>
<coordinates>-122.0856545755255,37.42243077405461,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Roll over this icon</name>
<styleUrl>#exampleStyleMap</styleUrl>
<Point>
<coordinates>-122.0850000000000,37.42000000000000,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>