-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathexample.kml
43 lines (43 loc) · 1.08 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
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>Portland</name>
<Point>
<coordinates>-122.681944,45.52,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rio de Janeiro</name>
<Point>
<coordinates>-43.196389,-22.908333,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Istanbul</name>
<Point>
<coordinates>28.976018,41.01224,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Reykjavik</name>
<Point>
<coordinates>-21.933333,64.133333,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Simple Polygon</name>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-122.681944,45.52,0
-43.196389,-22.908333,0
28.976018,41.01224,0
-21.933333,64.133333,0
-122.681944,45.52,0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
</Document>
</kml>