1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Podgorica, ME",
9 "to": "Shkoder, AL",
10 "date": "2010-10-30",
11 "mode": "bus"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 19.2636,
18 42.4304
19 ],
20 [
21 19.5126,
22 42.0693
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Shkoder, AL",
32 "to": "Tirana, AL",
33 "date": "2010-10-30",
34 "mode": "bus"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 19.5126,
41 42.0693
42 ],
43 [
44 19.8187,
45 41.3275
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "route",
54 "from": "Tirana, AL",
55 "to": "Podgorica, ME",
56 "date": "2010-10-30",
57 "mode": "bus"
58 },
59 "geometry": {
60 "type": "LineString",
61 "coordinates": [
62 [
63 19.8187,
64 41.3275
65 ],
66 [
67 19.2636,
68 42.4304
69 ]
70 ]
71 }
72 },
73 {
74 "type": "Feature",
75 "properties": {
76 "layer": "stop",
77 "name": "Podgorica, ME"
78 },
79 "geometry": {
80 "type": "Point",
81 "coordinates": [
82 19.2636,
83 42.4304
84 ]
85 }
86 },
87 {
88 "type": "Feature",
89 "properties": {
90 "layer": "stop",
91 "name": "Shkoder, AL"
92 },
93 "geometry": {
94 "type": "Point",
95 "coordinates": [
96 19.5126,
97 42.0693
98 ]
99 }
100 },
101 {
102 "type": "Feature",
103 "properties": {
104 "layer": "stop",
105 "name": "Tirana, AL"
106 },
107 "geometry": {
108 "type": "Point",
109 "coordinates": [
110 19.8187,
111 41.3275
112 ]
113 }
114 }
115 ]
116}