-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKmlFile.kml
51 lines (51 loc) · 1.08 KB
/
KmlFile.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
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>Pavadinimas</name>
<description>Aprašymas</description>
<Style>
<LineStyle>
<color>7DD500FF</color>
<width>5.0</width>
</LineStyle>
<PolyStyle>
<color>7D00FF1E</color>
</PolyStyle>
</Style>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
23.75366,54.954454,0.0 23.75513,54.954034,0.0 23.755028,54.953487,0.0 23.753522,54.953551,0.0 23.75366,54.954454,0.0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>Pavadinimas</name>
<description>Aprašymas</description>
<Style>
<LineStyle>
<width>5.0</width>
<color>7DD500FF</color>
</LineStyle>
</Style>
<LineString>
<coordinates>
23.752608,54.954578,0.0 23.75254,54.954089,0.0 23.753567,54.95403,0.0
</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Pavadinimas</name>
<description>Aprašymas</description>
<Point>
<coordinates>
23.754378,54.95378,0.0
</coordinates>
</Point>
</Placemark>
</Document>
</kml>