Apr 18, 2026 3.8 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "flight",
8 "from": "HRK",
9 "to": "TIV",
10 "date": "2010-05-21",
11 "mode": "flight, transit"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 36.286,
18 49.9248
19 ],
20 [
21 18.7233,
22 42.4047
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Tivat, ME",
32 "to": "Becici, ME",
33 "date": "2010-05-21",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 18.7233,
41 42.4047
42 ],
43 [
44 18.8567,
45 42.2886
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Becici, ME",
55 "to": "Dubrovnik, HR",
56 "date": "2010-05-24",
57 "mode": "bus"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 18.8567,
64 42.2886
65 ],
66 [
67 18.0944,
68 42.6507
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "route",
77 "from": "Dubrovnik, HR",
78 "to": "Becici, ME",
79 "date": "2010-05-24",
80 "mode": "bus"
81 },
82 "geometry": {
83 "type": "LineString",
84 "coordinates": [
85 [
86 18.0944,
87 42.6507
88 ],
89 [
90 18.8567,
91 42.2886
92 ]
93 ]
94 }
95 },
96 {
97 "type": "Feature",
98 "properties": {
99 "layer": "route",
100 "from": "Becici, ME",
101 "to": "Tivat, ME",
102 "date": "2010-05-28",
103 "mode": "bus, transit"
104 },
105 "geometry": {
106 "type": "LineString",
107 "coordinates": [
108 [
109 18.8567,
110 42.2886
111 ],
112 [
113 18.7233,
114 42.4047
115 ]
116 ]
117 }
118 },
119 {
120 "type": "Feature",
121 "properties": {
122 "layer": "flight",
123 "from": "TIV",
124 "to": "HRK",
125 "date": "2010-05-28",
126 "mode": "flight"
127 },
128 "geometry": {
129 "type": "LineString",
130 "coordinates": [
131 [
132 18.7233,
133 42.4047
134 ],
135 [
136 36.286,
137 49.9248
138 ]
139 ]
140 }
141 },
142 {
143 "type": "Feature",
144 "properties": {
145 "layer": "stop",
146 "name": "HRK"
147 },
148 "geometry": {
149 "type": "Point",
150 "coordinates": [
151 36.286,
152 49.9248
153 ]
154 }
155 },
156 {
157 "type": "Feature",
158 "properties": {
159 "layer": "stop",
160 "name": "TIV"
161 },
162 "geometry": {
163 "type": "Point",
164 "coordinates": [
165 18.7233,
166 42.4047
167 ]
168 }
169 },
170 {
171 "type": "Feature",
172 "properties": {
173 "layer": "stop",
174 "name": "Tivat, ME"
175 },
176 "geometry": {
177 "type": "Point",
178 "coordinates": [
179 18.7233,
180 42.4047
181 ]
182 }
183 },
184 {
185 "type": "Feature",
186 "properties": {
187 "layer": "stop",
188 "name": "Becici, ME"
189 },
190 "geometry": {
191 "type": "Point",
192 "coordinates": [
193 18.8567,
194 42.2886
195 ]
196 }
197 },
198 {
199 "type": "Feature",
200 "properties": {
201 "layer": "stop",
202 "name": "Dubrovnik, HR"
203 },
204 "geometry": {
205 "type": "Point",
206 "coordinates": [
207 18.0944,
208 42.6507
209 ]
210 }
211 }
212 ]
213}