Apr 18, 2026 1.5 KB of v3
1{
2 "type": "FeatureCollection",
3 "features": [
4 {
5 "type": "Feature",
6 "properties": {
7 "layer": "route",
8 "from": "New York, US",
9 "to": "Brookfield, CT, US",
10 "date": "2021-08-06",
11 "mode": "car"
12 },
13 "geometry": {
14 "type": "LineString",
15 "coordinates": [
16 [
17 -74.006,
18 40.7128
19 ],
20 [
21 -73.4068,
22 41.4645
23 ]
24 ]
25 }
26 },
27 {
28 "type": "Feature",
29 "properties": {
30 "layer": "route",
31 "from": "Brookfield, CT, US",
32 "to": "New York, US",
33 "date": "2021-08-09",
34 "mode": "car"
35 },
36 "geometry": {
37 "type": "LineString",
38 "coordinates": [
39 [
40 -73.4068,
41 41.4645
42 ],
43 [
44 -74.006,
45 40.7128
46 ]
47 ]
48 }
49 },
50 {
51 "type": "Feature",
52 "properties": {
53 "layer": "stop",
54 "name": "New York, US",
55 "transit": false
56 },
57 "geometry": {
58 "type": "Point",
59 "coordinates": [
60 -74.006,
61 40.7128
62 ]
63 }
64 },
65 {
66 "type": "Feature",
67 "properties": {
68 "layer": "stop",
69 "name": "Brookfield, CT, US",
70 "transit": false
71 },
72 "geometry": {
73 "type": "Point",
74 "coordinates": [
75 -73.4068,
76 41.4645
77 ]
78 }
79 }
80 ]
81}