-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexample.kml
73 lines (73 loc) · 2.28 KB
/
example.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<!-- here is a comment in the prolog -->
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>Example KML file</name>
<description><![CData[Example KML file]]></description>
<!-- here is a comment -->
<Style id="style1">
<IconStyle>
<Icon>
<href>//maps.google.com/mapfiles/ms/icons/blue-dot.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="style2">
<LineStyle>
<color>40000000</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color>A600CC33</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Style id="style3">
<LineStyle>
<color>E60000FF</color>
<width>15</width>
</LineStyle>
</Style>
<Placemark>
<name>Time Square</name>
<description><![CData[Times Square is a major commercial intersection and neighborhood in Midtown Manhattan, New York City.]]></description>
<styleUrl>#style1</styleUrl>
<Point>
<coordinates>-73.984939,40.758874,0.000000</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Central Park</name>
<description><![CData[Central Park is an urban park in middle-upper Manhattan, within New York City.]]></description>
<styleUrl>#style2</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>
-73.981508,40.768632,0.000000
-73.957845,40.800289,0.000000
-73.949348,40.796797,0.000000
-73.973093,40.764732,0.000000
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>Lincoln Tunnel</name>
<description><![CData[Traffic(under 10 minutes)]]></description>
<styleUrl>#style3</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
-74.022749,40.766578,0.000000
-74.021955,40.767206,0.000000
-74.020571,40.767279,0.000000
-74.000079,40.758980,0.000000
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>