-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathPointPlacemark.kml
More file actions
50 lines (47 loc) · 1.63 KB
/
PointPlacemark.kml
File metadata and controls
50 lines (47 loc) · 1.63 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--$Id: PointPlacemark.kml 13753 2010-09-09 17:56:12Z tgaskins $-->
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>Simple placemark</name>
<description>Attached to the ground. Intelligently places itself
at the height of the underlying terrain.
</description>
<Style>
<IconStyle>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal3/icon21.png</href>
</Icon>
</IconStyle>
</Style>
<Point>
<coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Placemark without image</name>
<description>This placemark draws text, but not an image.</description>
<Style>
<IconStyle>
<scale>0.0</scale>
</IconStyle>
<LabelStyle>
<scale>1.0</scale>
</LabelStyle>
</Style>
<Point>
<coordinates>-90,45,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Placemark with red label</name>
<description>This placemark uses the deprecated labelColor tag.</description>
<Style>
<labelColor>FF0000FF</labelColor>
</Style>
<Point>
<coordinates>-80,45,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>