1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "Kharkiv, UA",
9 "to": "Kyiv, UA",
10 "date": "2014-01-09",
11 "mode": "train"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 36.2304,
18 49.9935
19 ],
20 [
21 30.5234,
22 50.4501
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Kyiv, UA",
32 "to": "Kharkiv, UA",
33 "date": "2014-01-11",
34 "mode": "train"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 30.5234,
41 50.4501
42 ],
43 [
44 36.2304,
45 49.9935
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "Kharkiv, UA"
55 },
56 "geometry": {
57 "type": "Point",
58 "coordinates": [
59 36.2304,
60 49.9935
61 ]
62 }
63 },
64 {
65 "type": "Feature",
66 "properties": {
67 "layer": "stop",
68 "name": "Kyiv, UA"
69 },
70 "geometry": {
71 "type": "Point",
72 "coordinates": [
73 30.5234,
74 50.4501
75 ]
76 }
77 }
78 ]
79}