forked from ojimenez2517/COGS_108_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
388 lines (294 loc) · 13.9 KB
/
map.html
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.3.4/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.3.4/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>#map_76a6e90cfded469a81e2791ad89d88d2 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_76a6e90cfded469a81e2791ad89d88d2" ></div>
</body>
<script>
var bounds = null;
var map_76a6e90cfded469a81e2791ad89d88d2 = L.map(
'map_76a6e90cfded469a81e2791ad89d88d2', {
center: [36, -119],
zoom: 10,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_2b3a7aa88e4c4339934e5dd0be83a44b = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var marker_a34e6cdf94b142d887d4df34eb92b9ff = L.marker(
[38.963719, -120.943531],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_18301207e33543899f029326da0d9f13 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a34e6cdf94b142d887d4df34eb92b9ff.setIcon(icon_18301207e33543899f029326da0d9f13);
var marker_10dfb68503604eeca7b83391f1cfd3e8 = L.marker(
[41.81666666, -122.48333333],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_bc4f8be6cba24bf08203f300e2f5ae69 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_10dfb68503604eeca7b83391f1cfd3e8.setIcon(icon_bc4f8be6cba24bf08203f300e2f5ae69);
var marker_bf86d7009ff548ecbf428b323d8106bc = L.marker(
[40.294469, -122.114011],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_b2fdc83b57cc401c868ef89fbf607666 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bf86d7009ff548ecbf428b323d8106bc.setIcon(icon_b2fdc83b57cc401c868ef89fbf607666);
var marker_2e1a0e6d10d143c1b8aabd6b89e0674f = L.marker(
[37.078663, -120.989141],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_be720578f6c240a89d1306e1a1740f96 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2e1a0e6d10d143c1b8aabd6b89e0674f.setIcon(icon_be720578f6c240a89d1306e1a1740f96);
var marker_cd241f3c77b340039709a5690356d52f = L.marker(
[38.2108, -120.7905],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_f28c50d0e50d46c6b2c9c53cc45045a5 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cd241f3c77b340039709a5690356d52f.setIcon(icon_f28c50d0e50d46c6b2c9c53cc45045a5);
var marker_88d9c7d488014f50a23315b411fb97be = L.marker(
[35.46861111, -118.75083333],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_2175744fb213448a89801b46a0a52b05 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_88d9c7d488014f50a23315b411fb97be.setIcon(icon_2175744fb213448a89801b46a0a52b05);
var marker_7690d1c1ca6f432e87851d14fc012547 = L.marker(
[36.24565, -120.346289],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_87a67005768d437493a93a894df76040 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_7690d1c1ca6f432e87851d14fc012547.setIcon(icon_87a67005768d437493a93a894df76040);
var marker_af4fc1f720e34676b30dd3ebb4c89795 = L.marker(
[35.88484386, -119.3129557],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_af0ba6eacdd5408691560af03f61dac9 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_af4fc1f720e34676b30dd3ebb4c89795.setIcon(icon_af0ba6eacdd5408691560af03f61dac9);
var marker_099615344f0e4372a33c503092ac0084 = L.marker(
[38.658169, -122.34485],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_bed355d9ff424ce3acf3d05a395f0145 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_099615344f0e4372a33c503092ac0084.setIcon(icon_bed355d9ff424ce3acf3d05a395f0145);
var marker_123103d8d9974094b0b85f18855fbbe9 = L.marker(
[35.972222, -119.077778],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_3a36164e8f024eaa822a2b9fec3dc9a7 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_123103d8d9974094b0b85f18855fbbe9.setIcon(icon_3a36164e8f024eaa822a2b9fec3dc9a7);
var marker_158bc51a67cb46d595fff3eb43f9527e = L.marker(
[39.90527778, -122.02055556],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_1c1d8c0314a64cce94355a66b52a3901 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_158bc51a67cb46d595fff3eb43f9527e.setIcon(icon_1c1d8c0314a64cce94355a66b52a3901);
var marker_6268df0ae7c44898917e52dcacc24be0 = L.marker(
[36.0153, -118.8244],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_3465710dfc5a4be4b7b77f7218fdf979 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6268df0ae7c44898917e52dcacc24be0.setIcon(icon_3465710dfc5a4be4b7b77f7218fdf979);
var marker_dcb7345f70524558baf776303c61214a = L.marker(
[35.9163, -119.5201],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_64a368350fdb446f887dd08116517016 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_dcb7345f70524558baf776303c61214a.setIcon(icon_64a368350fdb446f887dd08116517016);
var marker_ce8a0e696a774521b6479480445b5d08 = L.marker(
[35.9163, -119.5201],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_66abab9e9b09465488d6b53cd8fb9549 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_ce8a0e696a774521b6479480445b5d08.setIcon(icon_66abab9e9b09465488d6b53cd8fb9549);
var marker_8bec912a5cc147699bbf95260ed5d5a7 = L.marker(
[36.406331, -119.054],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_21d2c5ff82f247a090823b2061f2257c = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8bec912a5cc147699bbf95260ed5d5a7.setIcon(icon_21d2c5ff82f247a090823b2061f2257c);
var marker_5d78c942fe47441d8f14edeaa312cdd6 = L.marker(
[37.233333, -121.766667],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_8ee1af7cdb7749229dda4858841d692a = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5d78c942fe47441d8f14edeaa312cdd6.setIcon(icon_8ee1af7cdb7749229dda4858841d692a);
var marker_3f4909327a2245598dd6bd60e2f06ad5 = L.marker(
[41.851719, -122.469589],
{
icon: new L.Icon.Default()
}
).addTo(map_76a6e90cfded469a81e2791ad89d88d2);
var icon_1814fd93d0904717b7433201d6e111f7 = L.AwesomeMarkers.icon({
icon: 'fire',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3f4909327a2245598dd6bd60e2f06ad5.setIcon(icon_1814fd93d0904717b7433201d6e111f7);
</script>