Apr 18, 2026 1.4 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Podgorica, ME",
9 "to": "Belgrade, RS",
10 "date": "2011-12-20",
11 "mode": "bus"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 19.2636,
18 42.4304
19 ],
20 [
21 20.4568,
22 44.7866
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Belgrade, RS",
32 "to": "Podgorica, ME",
33 "date": "2011-12-24",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 20.4568,
41 44.7866
42 ],
43 [
44 19.2636,
45 42.4304
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "Podgorica, ME"
55 },
56 "geometry": {
57 "type": "Point",
58 "coordinates": [
59 19.2636,
60 42.4304
61 ]
62 }
63 },
64 {
65 "type": "Feature",
66 "properties": {
67 "layer": "stop",
68 "name": "Belgrade, RS"
69 },
70 "geometry": {
71 "type": "Point",
72 "coordinates": [
73 20.4568,
74 44.7866
75 ]
76 }
77 }
78 ]
79}