-
Notifications
You must be signed in to change notification settings - Fork 0
/
geojson.js
executable file
·132 lines (130 loc) · 3.9 KB
/
geojson.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
var converted_json = {
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "Name": "Start point", "Description": "" }, "geometry": { "type": "Point", "coordinates": [ -0.111494, 51.510986, 0.000000 ] } }
,
{ "type": "Feature", "properties": { "Name": "route", "Description": "" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.116810, 51.510391 ], [ -0.120160, 51.509270 ], [ -0.122300, 51.506710 ], [ -0.124110, 51.500992 ], [ -0.126420, 51.501099 ], [ -0.126340, 51.504471 ], [ -0.126980, 51.506020 ], [ -0.127970, 51.507462 ], [ -0.129170, 51.507519 ], [ -0.130950, 51.507702 ], [ -0.132690, 51.507240 ], [ -0.133710, 51.508530 ], [ -0.134960, 51.509731 ], [ -0.141700, 51.507561 ], [ -0.145910, 51.505421 ], [ -0.150290, 51.503448 ], [ -0.151490, 51.503712 ], [ -0.160589, 51.508743 ] ] } }
]
} ;
var fsWifi = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.087, 51.520]} //this is staburcks near FS
},{
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.125321, 51.508805]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.139195, 51.508304]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.12532, 51.508805]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.09619, 51.51461]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.088094, 51.512622]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.089882,51.504657]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.098723,51.506692]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.117878,51.502352]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.113865,51.51834]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.118861,51.519988]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.097647,51.522516]
}
}, {
"type": "Feature",
"properties": {
"popupContent": "wifi"
},
"geometry": {
"type": "Point",
"coordinates": [-0.087879,51.526342]
}
}
]
};