-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneighborhood_map.html
585 lines (316 loc) · 54 KB
/
neighborhood_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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
<!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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.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/[email protected]/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_8bfe93dcdf82472bb4829b3ad96739d0 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_8bfe93dcdf82472bb4829b3ad96739d0" ></div>
</body>
<script>
var bounds = null;
var map_8bfe93dcdf82472bb4829b3ad96739d0 = L.map(
'map_8bfe93dcdf82472bb4829b3ad96739d0', {
center: [42.32, -71.0589],
zoom: 12,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_79e4611219744994a720fd7d388a46f2 = L.tileLayer(
'https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0);
var geo_json_b9f998680057481a876214401989563c = L.geoJson(
{"bbox": [-71.14769838566339, 42.26761612506219, -71.0996148752563, 42.298389489304874], "features": [{"bbox": [-71.14769838566339, 42.26761612506219, -71.0996148752563, 42.298389489304874], "geometry": {"coordinates": [[[[-71.12592717485386, 42.272013107957406], [-71.12214745279846, 42.26937277217365], [-71.12015740628365, 42.2725982173891], [-71.11749551199352, 42.273227912547505], [-71.11493981616013, 42.27772475105028], [-71.10919611109482, 42.27434410708507], [-71.10595739608952, 42.280218517491534], [-71.0996148752563, 42.282328086334175], [-71.10797519876428, 42.288627938430714], [-71.11183627732026, 42.28659057851314], [-71.11956431046106, 42.286361344021294], [-71.11733529402827, 42.29552069525102], [-71.12108859992077, 42.295057384222595], [-71.12606545507704, 42.29001277885252], [-71.13053838048765, 42.29367256284703], [-71.12994188018446, 42.298389489304874], [-71.14293775786858, 42.288779218283025], [-71.14769838566339, 42.28697337865599], [-71.14702893244441, 42.28326687273848], [-71.14020879199718, 42.275444207566444], [-71.13910539975907, 42.26761612506219], [-71.13641277190978, 42.26994537854314], [-71.13788376344769, 42.27080639663381], [-71.1335126839648, 42.2744388088614], [-71.13095873237285, 42.27284114652241], [-71.13190829637314, 42.27118557106212], [-71.13016005034856, 42.270012663808565], [-71.12592717485386, 42.272013107957406]]], [[[-71.12583076676759, 42.272212845889705], [-71.12588130976181, 42.27211361071484], [-71.1257672032289, 42.27231595853639], [-71.12583076676759, 42.272212845889705]]], [[[-71.1257672032289, 42.27231595853639], [-71.12574794796014, 42.27234719484869], [-71.12571586827931, 42.27240699201178], [-71.1257672032289, 42.27231595853639]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_b9f998680057481a876214401989563c.setStyle(function(feature) {return feature.properties.style;});
var popup_81c75b7e670542fdba0893063e226a71 = L.popup({maxWidth: '100%'
});
geo_json_b9f998680057481a876214401989563c.bindPopup(popup_81c75b7e670542fdba0893063e226a71)
;
var geo_json_ed38e87624af4805825dc44def8c1401 = L.geoJson(
{"bbox": [-71.1401708881805, 42.286361344021294, -71.0951088142526, 42.33007648918584], "features": [{"bbox": [-71.1401708881805, 42.286361344021294, -71.0951088142526, 42.33007648918584], "geometry": {"coordinates": [[[-71.10499218689807, 42.326101682808066], [-71.11128728756152, 42.33007648918584], [-71.11403970466345, 42.32947618812428], [-71.11667414595476, 42.323833661042464], [-71.12371258965979, 42.32272500332099], [-71.1401708881805, 42.30208763282804], [-71.12807095746216, 42.30014461249942], [-71.12994188018446, 42.298389489304874], [-71.13060878117449, 42.29400102404569], [-71.12606545507704, 42.29001277885252], [-71.12108859992077, 42.295057384222595], [-71.11733529402827, 42.29552069525102], [-71.11956431046106, 42.286361344021294], [-71.11055918587998, 42.286914103686065], [-71.10174524656085, 42.2931370589567], [-71.09645963695638, 42.29323314655063], [-71.10329160162101, 42.29981466033245], [-71.10684483030775, 42.30099065741282], [-71.0951088142526, 42.31334045697708], [-71.09823398563022, 42.31554725270344], [-71.09830616717154, 42.32631298689437], [-71.10499218689807, 42.326101682808066]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_ed38e87624af4805825dc44def8c1401.setStyle(function(feature) {return feature.properties.style;});
var popup_32035cd3168f43a2b4ea05cf67707fd7 = L.popup({maxWidth: '100%'
});
geo_json_ed38e87624af4805825dc44def8c1401.bindPopup(popup_32035cd3168f43a2b4ea05cf67707fd7)
;
var geo_json_36e6329560ef4db093f84546c99ea6d6 = L.geoJson(
{"bbox": [-71.11403948459015, 42.32614889907239, -71.0904343142608, 42.33770013109809], "features": [{"bbox": [-71.11403948459015, 42.32614889907239, -71.0904343142608, 42.33770013109809], "geometry": {"coordinates": [[[-71.0904343142608, 42.33576996328494], [-71.09559882865167, 42.33770013109809], [-71.10464437091089, 42.33421806509895], [-71.10745273200757, 42.33583927610448], [-71.10898141841227, 42.334572138754645], [-71.11050112869864, 42.33539680534552], [-71.11403948459015, 42.32947666184014], [-71.11128728756152, 42.33007648918584], [-71.10556906439709, 42.32614889907239], [-71.09830616717154, 42.32631298689437], [-71.09586787168821, 42.33084094243058], [-71.0904343142608, 42.33576996328494]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_36e6329560ef4db093f84546c99ea6d6.setStyle(function(feature) {return feature.properties.style;});
var popup_1f12bb558f824c9ca7afa22105477e5c = L.popup({maxWidth: '100%'
});
geo_json_36e6329560ef4db093f84546c99ea6d6.bindPopup(popup_1f12bb558f824c9ca7afa22105477e5c)
;
var geo_json_09f54619aa624bf6beb854a18769fea1 = L.geoJson(
{"bbox": [-71.11156017987172, 42.33421144550619, -71.0972164020167, 42.343882291460304], "features": [{"bbox": [-71.11156017987172, 42.33421144550619, -71.0972164020167, 42.343882291460304], "geometry": {"coordinates": [[[-71.09810894210769, 42.33673037764089], [-71.0972164020167, 42.33840878517882], [-71.10554754411062, 42.343882291460304], [-71.11017842927212, 42.34096808065602], [-71.11156017987172, 42.337390230181114], [-71.10898141841227, 42.334572138754645], [-71.10745273200757, 42.33583927610448], [-71.10479212337219, 42.33421144550619], [-71.09810894210769, 42.33673037764089]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_09f54619aa624bf6beb854a18769fea1.setStyle(function(feature) {return feature.properties.style;});
var popup_9a17d8c243f74e7b9b82a624e2ee5092 = L.popup({maxWidth: '100%'
});
geo_json_09f54619aa624bf6beb854a18769fea1.bindPopup(popup_9a17d8c243f74e7b9b82a624e2ee5092)
;
var geo_json_7aa316d397b24312bd1d1ef78fcad990 = L.geoJson(
{"bbox": [-71.0728110373023, 42.34775054070596, -71.06662924918761, 42.35095494601621], "features": [{"bbox": [-71.0728110373023, 42.34775054070596, -71.06662924918761, 42.35095494601621], "geometry": {"coordinates": [[[-71.06662924918761, 42.34878268384542], [-71.06685663760202, 42.35095494601621], [-71.0728110373023, 42.34783057347198], [-71.06834052286473, 42.34775054070596], [-71.06662924918761, 42.34878268384542]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_7aa316d397b24312bd1d1ef78fcad990.setStyle(function(feature) {return feature.properties.style;});
var popup_e0f1c6ba867c431dac8ddbd113454188 = L.popup({maxWidth: '100%'
});
geo_json_7aa316d397b24312bd1d1ef78fcad990.bindPopup(popup_e0f1c6ba867c431dac8ddbd113454188)
;
var geo_json_d1fd67db309448508b620b3e7b8f24a8 = L.geoJson(
{"bbox": [-71.0597200642494, 42.34953239180165, -71.05588086560697, 42.35193398017888], "features": [{"bbox": [-71.0597200642494, 42.34953239180165, -71.05588086560697, 42.35193398017888], "geometry": {"coordinates": [[[-71.05837839326242, 42.349831092881075], [-71.05705702030028, 42.34953239180165], [-71.05588086560697, 42.3518472355392], [-71.05879816987498, 42.35193398017888], [-71.0597200642494, 42.35014625705468], [-71.05837839326242, 42.349831092881075]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_d1fd67db309448508b620b3e7b8f24a8.setStyle(function(feature) {return feature.properties.style;});
var popup_173d5e0e8cb245e29472ab1acd8f43b0 = L.popup({maxWidth: '100%'
});
geo_json_d1fd67db309448508b620b3e7b8f24a8.bindPopup(popup_173d5e0e8cb245e29472ab1acd8f43b0)
;
var geo_json_488808a088034d0eb450772523376834 = L.geoJson(
{"bbox": [-71.06834146247407, 42.34642829415862, -71.05741384133351, 42.352381198962334], "features": [{"bbox": [-71.06834146247407, 42.34642829415862, -71.05741384133351, 42.352381198962334], "geometry": {"coordinates": [[[-71.0579055147603, 42.35237863170756], [-71.06260956379353, 42.352381198962334], [-71.0640601118597, 42.34842840988999], [-71.06834146247407, 42.34774979609028], [-71.05924195762474, 42.34642829415862], [-71.05741384133351, 42.348168440234424], [-71.0597200642494, 42.35014625705468], [-71.0579055147603, 42.35237863170756]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_488808a088034d0eb450772523376834.setStyle(function(feature) {return feature.properties.style;});
var popup_91c3f2016a44489aaac6bc014a0b8554 = L.popup({maxWidth: '100%'
});
geo_json_488808a088034d0eb450772523376834.bindPopup(popup_91c3f2016a44489aaac6bc014a0b8554)
;
var geo_json_cdf64cbc57964924806cec055961f603 = L.geoJson(
{"bbox": [-71.05902195285647, 42.36094299705367, -71.04829759875973, 42.368835995505535], "features": [{"bbox": [-71.05902195285647, 42.36094299705367, -71.04829759875973, 42.368835995505535], "geometry": {"coordinates": [[[-71.05199523849357, 42.368835995505535], [-71.05902195285647, 42.36759362275255], [-71.05832872352863, 42.3644116939777], [-71.0527551802294, 42.36094299705367], [-71.04829759875973, 42.36319834746225], [-71.05086515977536, 42.364866381222114], [-71.04879122767021, 42.3649065609601], [-71.04982038764045, 42.36785527375915], [-71.05133541031908, 42.36753519672496], [-71.05001106650583, 42.368724799932956], [-71.05199523849357, 42.368835995505535]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_cdf64cbc57964924806cec055961f603.setStyle(function(feature) {return feature.properties.style;});
var popup_8287b62ebd5f4f3db20e7e4c4a25cedf = L.popup({maxWidth: '100%'
});
geo_json_cdf64cbc57964924806cec055961f603.bindPopup(popup_8287b62ebd5f4f3db20e7e4c4a25cedf)
;
var geo_json_947b2c2633e544d4b0902ba100d5e750 = L.geoJson(
{"bbox": [-71.10684165420648, 42.29198165947743, -71.0664059032492, 42.34166071278526], "features": [{"bbox": [-71.10684165420648, 42.29198165947743, -71.0664059032492, 42.34166071278526], "geometry": {"coordinates": [[[-71.09645963695638, 42.29323314655063], [-71.09575959903594, 42.29198165947743], [-71.09143759831589, 42.29687366014103], [-71.0869925960813, 42.29815066109293], [-71.08429959583184, 42.307023662208415], [-71.07882359463028, 42.314616664374846], [-71.07317159248713, 42.31223066416745], [-71.0730115927255, 42.317043664545594], [-71.06969859202388, 42.31895566487361], [-71.07220459324887, 42.32136766547786], [-71.06806159102332, 42.321289665721125], [-71.0664059032492, 42.32626201199095], [-71.08330701010372, 42.34166071278526], [-71.09681302992628, 42.32945476587974], [-71.09864814852577, 42.324821264328115], [-71.09823398563022, 42.31554725270344], [-71.0951088142526, 42.31334045697708], [-71.10684165420648, 42.301025789731426], [-71.10329160162101, 42.29981466033245], [-71.09645963695638, 42.29323314655063]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_947b2c2633e544d4b0902ba100d5e750.setStyle(function(feature) {return feature.properties.style;});
var popup_71aa21d1a2d34822972ccc2d3f087d15 = L.popup({maxWidth: '100%'
});
geo_json_947b2c2633e544d4b0902ba100d5e750.bindPopup(popup_71aa21d1a2d34822972ccc2d3f087d15)
;
var geo_json_4c52ba9d42104c1c85d56ae9db6ab918 = L.geoJson(
{"bbox": [-71.08314179914366, 42.33258162383592, -71.0607649026084, 42.34775054070596], "features": [{"bbox": [-71.08314179914366, 42.33258162383592, -71.0607649026084, 42.34775054070596], "geometry": {"coordinates": [[[-71.06834052286473, 42.34775054070596], [-71.07632425330031, 42.34697340083902], [-71.08314179914366, 42.34153670446942], [-71.0720785173581, 42.33258162383592], [-71.06520114058061, 42.33538538367475], [-71.0607649026084, 42.346277900287966], [-71.06834052286473, 42.34775054070596]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_4c52ba9d42104c1c85d56ae9db6ab918.setStyle(function(feature) {return feature.properties.style;});
var popup_72c2bbdf4d1e4e9f9c49fdac7a0565c6 = L.popup({maxWidth: '100%'
});
geo_json_4c52ba9d42104c1c85d56ae9db6ab918.bindPopup(popup_72c2bbdf4d1e4e9f9c49fdac7a0565c6)
;
var geo_json_5de286fe0a3d4ba9a5f0ce5ee81fe52d = L.geoJson(
{"bbox": [-71.09166864457927, 42.34153670446942, -71.06989898167916, 42.35691673111654], "features": [{"bbox": [-71.09166864457927, 42.34153670446942, -71.06989898167916, 42.35691673111654], "geometry": {"coordinates": [[[-71.07568860290958, 42.35691673111654], [-71.09011153062839, 42.35212391550838], [-71.08948541159342, 42.350844627107094], [-71.09166864457927, 42.35024293962601], [-71.0916603757011, 42.34797080106222], [-71.0881401504145, 42.34808036083564], [-71.08314179914366, 42.34153670446942], [-71.06989898167916, 42.35015655747429], [-71.07251064823936, 42.35546777062896], [-71.07504675925554, 42.35533772138644], [-71.07568860290958, 42.35691673111654]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_5de286fe0a3d4ba9a5f0ce5ee81fe52d.setStyle(function(feature) {return feature.properties.style;});
var popup_82a042c654194f9b8eea6f30ee408d3b = L.popup({maxWidth: '100%'
});
geo_json_5de286fe0a3d4ba9a5f0ce5ee81fe52d.bindPopup(popup_82a042c654194f9b8eea6f30ee408d3b)
;
var geo_json_9f30a24d88284a9194244598bb70c67a = L.geoJson(
{"bbox": [-71.04571829759932, 42.346707491246846, -70.98632207983228, 42.39693807368885], "features": [{"bbox": [-71.04571829759932, 42.346707491246846, -70.98632207983228, 42.39693807368885], "geometry": {"coordinates": [[[-70.99546284753855, 42.39393892574709], [-70.99830677332125, 42.39693807368885], [-71.00586248987344, 42.393900796984404], [-71.01181037362159, 42.39575578630247], [-71.01569275877871, 42.39390866462655], [-71.01484237130377, 42.39208026800104], [-71.01955216875731, 42.38649387843186], [-71.0271992650266, 42.382727196900376], [-71.0326812894765, 42.38283164323912], [-71.0335242846959, 42.384410440576005], [-71.03732340983436, 42.385224034574705], [-71.03731887395828, 42.38402293313445], [-71.04221407657545, 42.38217132570217], [-71.04179477030337, 42.380529520750265], [-71.0431260104769, 42.38038773156118], [-71.04177487271468, 42.379955378714065], [-71.04316657179841, 42.37979352569687], [-71.04150519777684, 42.37937448137537], [-71.04320695915021, 42.37917269845064], [-71.0412705715426, 42.37906428739623], [-71.04323596059248, 42.37864183484734], [-71.0415727569994, 42.37730488746873], [-71.04328879233887, 42.377015079777095], [-71.04132973816145, 42.37703033390085], [-71.04303987141756, 42.37668617221928], [-71.04114990861416, 42.37646378663758], [-71.04233241887145, 42.375792354692784], [-71.04117521550349, 42.374148979771896], [-71.04571829759932, 42.37153049281713], [-71.04205752994118, 42.368623983205936], [-71.04301496932877, 42.36732738372858], [-71.04064922898212, 42.36580622637569], [-71.04181658824557, 42.36438971831529], [-71.03894439694301, 42.365157013734354], [-71.03893535230728, 42.36307565561975], [-71.0375101869829, 42.36490590579881], [-71.03643710527817, 42.36444472164617], [-71.03727243601006, 42.362801629641645], [-71.03440352322542, 42.36408114559583], [-71.03571795539432, 42.36144554480498], [-71.03367133157475, 42.363316420452534], [-71.03396267772166, 42.36048487291961], [-71.03167720748829, 42.36392738526127], [-71.0313853401198, 42.36246771094517], [-71.02681206914573, 42.36477625367448], [-71.02628011381503, 42.36233538649911], [-71.0282185388135, 42.35807985416891], [-71.00773372496339, 42.346707491246846], [-71.00478917493568, 42.34707984560554], [-71.00335790123685, 42.354953647411655], [-71.00570614356174, 42.354097728050284], [-71.00596517392455, 42.355701944331855], [-70.99907508480582, 42.35696488613681], [-70.99717632065311, 42.355988206836784], [-70.99847482356932, 42.35525681099038], [-70.99174195739376, 42.353838184388614], [-70.98632207983228, 42.35765008621628], [-70.9870833398649, 42.36095738595281], [-70.9893111708103, 42.36210143931602], [-70.99806400499526, 42.36101104810432], [-71.00180477485065, 42.36364326463463], [-71.0015767669466, 42.36462433704898], [-71.00062023289723, 42.364588981107005], [-71.00069453156999, 42.36471011037672], [-71.01036066088027, 42.36504773355119], [-71.0061240633502, 42.37606101003022], [-71.00008516657425, 42.37777753234912], [-71.00655681788042, 42.37884297322093], [-71.01189849343382, 42.37157389095016], [-71.0196133318177, 42.377517410507615], [-71.01625436947761, 42.380358831444376], [-71.01509791178121, 42.3791298274822], [-71.01321756381557, 42.380835292323084], [-71.01117362845919, 42.380466602185884], [-71.00889908311737, 42.38444160323367], [-70.99692693579107, 42.38116090875549], [-70.99484224073811, 42.38201314342112], [-70.99574667594663, 42.38370472440609], [-70.99453777795817, 42.38597591332837], [-70.98666615643577, 42.38719758205836], [-70.98746362511962, 42.39229498253706], [-70.99439036185107, 42.39251524117525], [-70.99546284753855, 42.39393892574709]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_9f30a24d88284a9194244598bb70c67a.setStyle(function(feature) {return feature.properties.style;});
var popup_25fe849f173e4fbd98d9dcd374a9819a = L.popup({maxWidth: '100%'
});
geo_json_9f30a24d88284a9194244598bb70c67a.bindPopup(popup_25fe849f173e4fbd98d9dcd374a9819a)
;
var geo_json_d38eeda4e797485fa7bdfddc470ac862 = L.geoJson(
{"bbox": [-71.08097168944772, 42.36850982791025, -71.04732896736574, 42.39530986350596], "features": [{"bbox": [-71.08097168944772, 42.36850982791025, -71.04732896736574, 42.39530986350596], "geometry": {"coordinates": [[[[-71.07416011681322, 42.390511676363914], [-71.08097168944772, 42.38233200929673], [-71.08070224918599, 42.38104865826909], [-71.0756577366867, 42.380204215709036], [-71.07246637301566, 42.37266703237265], [-71.06711582654845, 42.3718243832646], [-71.06187431217079, 42.36850982791025], [-71.05964030849222, 42.37136455711696], [-71.05609149679552, 42.37139838715089], [-71.05689560496116, 42.372725509684045], [-71.05418155968484, 42.37182127463781], [-71.05574714670924, 42.3737429753403], [-71.05345151016276, 42.371912017079204], [-71.05462741796043, 42.3744068293232], [-71.05072033925495, 42.371241975828625], [-71.05209637222015, 42.37273985188935], [-71.04963178836871, 42.371891634689355], [-71.05118516559364, 42.37327249397569], [-71.04921468914615, 42.37257080808748], [-71.05057213605905, 42.3744953350327], [-71.04867533728915, 42.3734223799848], [-71.05070777136068, 42.375198896978226], [-71.0487197859368, 42.37523200293478], [-71.0499700521498, 42.3760496968336], [-71.04808842137605, 42.376836185223155], [-71.04915514727045, 42.37806807198209], [-71.04749771182169, 42.37694417456828], [-71.0481530683759, 42.379235864385294], [-71.05214749262844, 42.379787950018155], [-71.04767216364763, 42.37992630616193], [-71.04732896736574, 42.38118119684459], [-71.04976721820671, 42.38156313305752], [-71.04752313387095, 42.381770839089555], [-71.04799119558938, 42.38319027005954], [-71.05880902065822, 42.384909165297536], [-71.06145703729139, 42.383309340080146], [-71.06045587138603, 42.385058984817384], [-71.06209747170985, 42.385219460635795], [-71.06392484402065, 42.38361617982963], [-71.06356653859062, 42.38538804184508], [-71.06982609278134, 42.38571977392668], [-71.07416011681322, 42.390511676363914]]], [[[-71.06741038731782, 42.39348492950665], [-71.06736589874501, 42.39530986350596], [-71.07134836860297, 42.39180302252465], [-71.07115361453184, 42.38984385620711], [-71.06741038731782, 42.39348492950665]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_d38eeda4e797485fa7bdfddc470ac862.setStyle(function(feature) {return feature.properties.style;});
var popup_ff45f764a5e94652925bdd893f716450 = L.popup({maxWidth: '100%'
});
geo_json_d38eeda4e797485fa7bdfddc470ac862.bindPopup(popup_ff45f764a5e94652925bdd893f716450)
;
var geo_json_af99e81d67324054bc046f95dd3c77ce = L.geoJson(
{"bbox": [-71.07308728268919, 42.36123709873701, -71.05781111616413, 42.36901553524206], "features": [{"bbox": [-71.07308728268919, 42.36123709873701, -71.05781111616413, 42.36901553524206], "geometry": {"coordinates": [[[[-71.06477655608991, 42.36882359933619], [-71.07257965327994, 42.36437891943371], [-71.07308728268919, 42.36134721751495], [-71.06285421771584, 42.36123709873701], [-71.05781111616413, 42.36396920604085], [-71.06058272802231, 42.36872121520215], [-71.06477655608991, 42.36882359933619]]], [[[-71.06914349019324, 42.36733392852842], [-71.07055587520317, 42.36804197996134], [-71.07135771997498, 42.36728820207842], [-71.07016492380001, 42.36621934694453], [-71.06914349019324, 42.36733392852842]]], [[[-71.06892511256518, 42.36815822549098], [-71.06866076794866, 42.36823744118773], [-71.06757749115415, 42.36901553524206], [-71.06996354443113, 42.36859858123406], [-71.06892511256518, 42.36815822549098]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_af99e81d67324054bc046f95dd3c77ce.setStyle(function(feature) {return feature.properties.style;});
var popup_370620ee3ce74f70aeaa6f48ecb04944 = L.popup({maxWidth: '100%'
});
geo_json_af99e81d67324054bc046f95dd3c77ce.bindPopup(popup_370620ee3ce74f70aeaa6f48ecb04944)
;
var geo_json_169419ca37fc4a8d8aa8d15497119596 = L.geoJson(
{"bbox": [-71.07564985423706, 42.35190145596163, -71.0620213181599, 42.36134721751495], "features": [{"bbox": [-71.07564985423706, 42.35190145596163, -71.0620213181599, 42.36134721751495], "geometry": {"coordinates": [[[-71.07140935443657, 42.36118675555607], [-71.07308728268919, 42.36134721751495], [-71.07346128811028, 42.35796971691802], [-71.07564985423706, 42.356808901733466], [-71.07504675925554, 42.35533772138644], [-71.07251064823936, 42.35546777062896], [-71.07068199131366, 42.35190145596163], [-71.06454397658086, 42.352376432326274], [-71.0620213181599, 42.35654318499201], [-71.06285421771584, 42.36123709873701], [-71.07140935443657, 42.36118675555607]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_169419ca37fc4a8d8aa8d15497119596.setStyle(function(feature) {return feature.properties.style;});
var popup_12efcab8a3594afaa7aaa89837aafd85 = L.popup({maxWidth: '100%'
});
geo_json_169419ca37fc4a8d8aa8d15497119596.bindPopup(popup_12efcab8a3594afaa7aaa89837aafd85)
;
var geo_json_1873c87f34d8462a84659e0b91de91e7 = L.geoJson(
{"bbox": [-71.07068199131366, 42.34474417409119, -71.04765562539413, 42.36396920604085], "features": [{"bbox": [-71.07068199131366, 42.34474417409119, -71.04765562539413, 42.36396920604085], "geometry": {"coordinates": [[[-71.05341835721063, 42.361295952726586], [-71.05781111616413, 42.36396920604085], [-71.06219559211988, 42.362266673257984], [-71.06320242689434, 42.35771754647043], [-71.0620213181599, 42.35654318499201], [-71.06454397658086, 42.352376432326274], [-71.07068199131366, 42.35190145596163], [-71.06989898167916, 42.35015655747429], [-71.06685663760202, 42.35095494601621], [-71.06662924918761, 42.34878268384542], [-71.0640601118597, 42.34842840988999], [-71.06260956379353, 42.352381198962334], [-71.05588086560697, 42.3518472355392], [-71.05874144237293, 42.34899920819603], [-71.05776757377038, 42.34752219348025], [-71.06094491062002, 42.34570720862758], [-71.0596444882277, 42.34474417409119], [-71.05624700774683, 42.34615340125804], [-71.04895320685004, 42.35718833883317], [-71.0503230623974, 42.35882945880516], [-71.04845813655974, 42.35957705049014], [-71.05072204056972, 42.359645466432774], [-71.04765562539413, 42.36004066903075], [-71.05078016713601, 42.36063027140422], [-71.05082753625015, 42.36187956648419], [-71.0494264347657, 42.3613930463486], [-71.04796239516803, 42.36220970710701], [-71.05066301989547, 42.36251904749246], [-71.05341835721063, 42.361295952726586]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_1873c87f34d8462a84659e0b91de91e7.setStyle(function(feature) {return feature.properties.style;});
var popup_e4a880d8eca549f398b0cf4c047c5ed9 = L.popup({maxWidth: '100%'
});
geo_json_1873c87f34d8462a84659e0b91de91e7.bindPopup(popup_e4a880d8eca549f398b0cf4c047c5ed9)
;
var geo_json_2199a8ed3daf42108dc671e664a5788e = L.geoJson(
{"bbox": [-71.11097789228229, 42.33574719553284, -71.08330701010372, 42.35212391550838], "features": [{"bbox": [-71.11097789228229, 42.33574719553284, -71.08330701010372, 42.35212391550838], "geometry": {"coordinates": [[[-71.11010882253603, 42.3520801889803], [-71.11097789228229, 42.3503325183653], [-71.10655097601935, 42.34979955944787], [-71.10714275631993, 42.34705494654087], [-71.10554754411062, 42.343882291460304], [-71.0972164020167, 42.33840878517882], [-71.09810894210769, 42.33673037764089], [-71.09559882865167, 42.33770013109809], [-71.09050097161946, 42.33574719553284], [-71.08330701010372, 42.34166071278526], [-71.0881401504145, 42.34808036083564], [-71.0916603757011, 42.34797080106222], [-71.09166864457927, 42.35024293962601], [-71.08948541159342, 42.350844627107094], [-71.09011153062839, 42.35212391550838], [-71.09718540256058, 42.35101895975919], [-71.11010882253603, 42.3520801889803]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_2199a8ed3daf42108dc671e664a5788e.setStyle(function(feature) {return feature.properties.style;});
var popup_ba678cca65664f1c85b827ffd37fabf7 = L.popup({maxWidth: '100%'
});
geo_json_2199a8ed3daf42108dc671e664a5788e.bindPopup(popup_ba678cca65664f1c85b827ffd37fabf7)
;
var geo_json_7791348938b74a7c950fe353ac2addf5 = L.geoJson(
{"bbox": [-71.17485015973585, 42.330249184442415, -71.1351744804853, 42.36676385385794], "features": [{"bbox": [-71.17485015973585, 42.330249184442415, -71.1351744804853, 42.36676385385794], "geometry": {"coordinates": [[[-71.1351744804853, 42.34601463922568], [-71.14045459888932, 42.34747624303766], [-71.14003800975148, 42.350346622806626], [-71.14136114103842, 42.34919961944103], [-71.14721275521954, 42.350133694039926], [-71.14298801699275, 42.35164252563265], [-71.14422035341383, 42.354926067475844], [-71.13883323074796, 42.354537728111524], [-71.13530833005278, 42.363176491755546], [-71.13568708109968, 42.36676385385794], [-71.13909340403379, 42.36429312231996], [-71.14408918943408, 42.3645396490176], [-71.14847491294941, 42.360822565796575], [-71.1624723456965, 42.35812636602562], [-71.16843856857045, 42.359150630331825], [-71.1739168189311, 42.353473679435524], [-71.17485015973585, 42.35034596362063], [-71.16668398605124, 42.340112728327924], [-71.16921740560073, 42.338076731209256], [-71.1675287987481, 42.3333685533772], [-71.16140599324186, 42.333733505428256], [-71.15688733157046, 42.330249184442415], [-71.1351744804853, 42.34601463922568]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_7791348938b74a7c950fe353ac2addf5.setStyle(function(feature) {return feature.properties.style;});
var popup_5031526deb334120b55db14f95860c7f = L.popup({maxWidth: '100%'
});
geo_json_7791348938b74a7c950fe353ac2addf5.bindPopup(popup_5031526deb334120b55db14f95860c7f)
;
var geo_json_45f4e689091e4d96b83dcc85775f99ac = L.geoJson(
{"bbox": [-71.19113201024874, 42.25301478232573, -71.12807095746216, 42.3038390588406], "features": [{"bbox": [-71.19113201024874, 42.25301478232573, -71.12807095746216, 42.3038390588406], "geometry": {"coordinates": [[[-71.16470288562053, 42.3038390588406], [-71.17861219006105, 42.294618923249516], [-71.19113201024874, 42.282373178064645], [-71.18535841574146, 42.27959990949184], [-71.18304833073424, 42.275862078327705], [-71.17746206430729, 42.276876767851014], [-71.17476494195039, 42.27585084091885], [-71.17295405261339, 42.2703062255721], [-71.17431714500192, 42.267187237139595], [-71.15859405195108, 42.25515681808126], [-71.15231299249064, 42.25834501708494], [-71.14664336022236, 42.25576445962801], [-71.14610229544165, 42.25301478232573], [-71.14037892173258, 42.25867188445642], [-71.14150505902197, 42.26392508110621], [-71.14488372520634, 42.266498039945596], [-71.14546681887175, 42.26955373153514], [-71.14064707243575, 42.275683396372585], [-71.14702893244441, 42.28326687273848], [-71.14770695538537, 42.28696078273059], [-71.14290678682642, 42.28879928153184], [-71.12807095746216, 42.30014461249942], [-71.14009661258577, 42.30218244282245], [-71.15211401122151, 42.2945966973652], [-71.16470288562053, 42.3038390588406]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_45f4e689091e4d96b83dcc85775f99ac.setStyle(function(feature) {return feature.properties.style;});
var popup_4aff2297473848edb9241c11c169b12a = L.popup({maxWidth: '100%'
});
geo_json_45f4e689091e4d96b83dcc85775f99ac.bindPopup(popup_4aff2297473848edb9241c11c169b12a)
;
var geo_json_df2691bea55444ad82a636f843cad5e9 = L.geoJson(
{"bbox": [-71.14613473272588, 42.227919776914206, -71.09788693205735, 42.27772475105028], "features": [{"bbox": [-71.14613473272588, 42.227919776914206, -71.09788693205735, 42.27772475105028], "geometry": {"coordinates": [[[-71.12588130976181, 42.27211361071484], [-71.13016005034856, 42.270012663808565], [-71.13190829637314, 42.27118557106212], [-71.13095873237285, 42.27284114652241], [-71.1335126839648, 42.2744388088614], [-71.13788376344769, 42.27080639663381], [-71.13641277190978, 42.26994537854314], [-71.13910539975907, 42.26761612506219], [-71.14020879199718, 42.275444207566444], [-71.14545634622145, 42.269736230288935], [-71.14488372520634, 42.266498039945596], [-71.14150505902197, 42.26392508110621], [-71.14037000004512, 42.25897453468076], [-71.14613473272588, 42.253011388217395], [-71.14267720335947, 42.23598768603181], [-71.13074966894622, 42.227919776914206], [-71.12260457041253, 42.23444546623863], [-71.1263773012471, 42.23917057147474], [-71.1093479154555, 42.24799892212968], [-71.10954501277567, 42.255420929017376], [-71.11332361355497, 42.25907952291451], [-71.11192628128936, 42.260643999846636], [-71.10325406997678, 42.25982290714097], [-71.09788693205735, 42.26294866256701], [-71.10936027676225, 42.27450145352678], [-71.11493981616013, 42.27772475105028], [-71.11749551199352, 42.273227912547505], [-71.12015740628365, 42.2725982173891], [-71.12214745279846, 42.26937277217365], [-71.12588130976181, 42.27211361071484]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_df2691bea55444ad82a636f843cad5e9.setStyle(function(feature) {return feature.properties.style;});
var popup_a28a69064dc44ad485125c4a2bca9092 = L.popup({maxWidth: '100%'
});
geo_json_df2691bea55444ad82a636f843cad5e9.bindPopup(popup_a28a69064dc44ad485125c4a2bca9092)
;
var geo_json_5ae31d33b30249159d8b13f03d586805 = L.geoJson(
{"bbox": [-71.10919611109482, 42.262923504355314, -71.06592058823719, 42.29316465925814], "features": [{"bbox": [-71.10919611109482, 42.262923504355314, -71.06592058823719, 42.29316465925814], "geometry": {"coordinates": [[[-71.09633059883687, 42.29316465925814], [-71.10174524656085, 42.2931370589567], [-71.10797519876428, 42.288627938430714], [-71.0996148752563, 42.282328086334175], [-71.10595739608952, 42.280218517491534], [-71.10919611109482, 42.27434410708507], [-71.09794194293717, 42.262923504355314], [-71.09417339887452, 42.26720012341931], [-71.09024889317398, 42.266714653041156], [-71.08955301879126, 42.26975619493404], [-71.0829685930445, 42.26850465560156], [-71.06813958865773, 42.27101165569656], [-71.06592058823719, 42.27993665750366], [-71.07452659077613, 42.27811965714964], [-71.08654159584479, 42.28126465768854], [-71.09286459720381, 42.284959658270864], [-71.09633059883687, 42.29316465925814]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_5ae31d33b30249159d8b13f03d586805.setStyle(function(feature) {return feature.properties.style;});
var popup_295005d5e1574e97919010faed05341d = L.popup({maxWidth: '100%'
});
geo_json_5ae31d33b30249159d8b13f03d586805.bindPopup(popup_295005d5e1574e97919010faed05341d)
;
var geo_json_bcd65befca7046d6835467ffd26fa401 = L.geoJson(
{"bbox": [-71.09575959903594, 42.26755646710015, -71.03266453859756, 42.33081027607339], "features": [{"bbox": [-71.09575959903594, 42.26755646710015, -71.03266453859756, 42.33081027607339], "geometry": {"coordinates": [[[[-71.05895516529861, 42.32875808156115], [-71.06357257941558, 42.33081027607339], [-71.06806159102332, 42.321289665721125], [-71.07220459324887, 42.32136766547786], [-71.06969859202388, 42.31895566487361], [-71.0730115927255, 42.317043664545594], [-71.07317159248713, 42.31223066416745], [-71.07882359463028, 42.314616664374846], [-71.08429959583184, 42.307023662208415], [-71.0869925960813, 42.29815066109293], [-71.09143759831589, 42.29687366014103], [-71.09575959903594, 42.29198165947743], [-71.09286459720381, 42.284959658270864], [-71.08654159584479, 42.28126465768854], [-71.07452659077613, 42.27811965714964], [-71.06592058823719, 42.27993665750366], [-71.06820456599434, 42.270955878427046], [-71.06449292359076, 42.2706038404329], [-71.06470130259974, 42.26904541005567], [-71.06239871106595, 42.26755646710015], [-71.05431696444049, 42.27230595859948], [-71.05533283744298, 42.272863940898084], [-71.05636760493022, 42.272572946183146], [-71.05759950259439, 42.272623250054586], [-71.05784912949846, 42.272803404868675], [-71.05833046161978, 42.27276683722018], [-71.0585036418195, 42.272888796041364], [-71.05471156376976, 42.272991603869414], [-71.0543376226431, 42.27278352032153], [-71.05690005600454, 42.274683325143236], [-71.05494753202657, 42.277323870941174], [-71.05006582018274, 42.27862615468914], [-71.04337811792625, 42.27755369499517], [-71.04184154391427, 42.27915317433963], [-71.04412796717538, 42.28092922227952], [-71.04170493095997, 42.280669315630846], [-71.04154926649497, 42.283592024887206], [-71.0373586154603, 42.28838514923161], [-71.04076764404425, 42.2937367153406], [-71.04221853507917, 42.29325514860944], [-71.04158218731162, 42.29129768929287], [-71.04189988638977, 42.289378064540465], [-71.04600231564038, 42.29628651212649], [-71.04666579982657, 42.29835162041152], [-71.0447345558194, 42.296020252663375], [-71.04646765992402, 42.298869478697014], [-71.04343746170375, 42.29982423197377], [-71.04367898794187, 42.3024197647425], [-71.0477764842579, 42.30214207146206], [-71.04839507222489, 42.30341777824643], [-71.04942370859604, 42.30193285366963], [-71.05287246852662, 42.30509959932383], [-71.05331106003538, 42.30759351972543], [-71.04790945474707, 42.30754138471025], [-71.04746788044443, 42.30420169476045], [-71.04494110428753, 42.308889380654996], [-71.04241990419892, 42.31009364495632], [-71.04503143811039, 42.31015752425462], [-71.04398313152085, 42.31136325284392], [-71.04602904939235, 42.313490363262865], [-71.0442154803145, 42.31426717995106], [-71.0374615905304, 42.31031527723967], [-71.03266453859756, 42.313378069583635], [-71.03307996816993, 42.316455370852786], [-71.03705032933453, 42.31761545654626], [-71.03662413549593, 42.318758857445694], [-71.04542771526314, 42.32319200961315], [-71.05154323788686, 42.322153996899935], [-71.05895516529861, 42.32875808156115]]], [[[-71.07316346670673, 42.27032997729943], [-71.07326459010879, 42.27032565619642], [-71.073387087053, 42.27031338366793], [-71.07315868466632, 42.27031305806956], [-71.07316346670673, 42.27032997729943]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_bcd65befca7046d6835467ffd26fa401.setStyle(function(feature) {return feature.properties.style;});
var popup_114dad20c5ab4bdf83f7dc33d78e22ba = L.popup({maxWidth: '100%'
});
geo_json_bcd65befca7046d6835467ffd26fa401.bindPopup(popup_114dad20c5ab4bdf83f7dc33d78e22ba)
;
var geo_json_617218cbb72d4774b80eb6c6480d8f95 = L.geoJson(
{"bbox": [-71.05726322719951, 42.33799981614319, -71.02186368711976, 42.35496853216687], "features": [{"bbox": [-71.05726322719951, 42.33799981614319, -71.02186368711976, 42.35496853216687], "geometry": {"coordinates": [[[-71.0434770481401, 42.352935336279586], [-71.04433181122249, 42.35496853216687], [-71.04810675079075, 42.35443351408697], [-71.05476207445653, 42.34586934957631], [-71.05706900966015, 42.345580358582126], [-71.05726322719951, 42.343543435100116], [-71.05223537123148, 42.343031107870445], [-71.0444036654097, 42.33799981614319], [-71.04251142740176, 42.33801985286431], [-71.03872046368355, 42.3436514443006], [-71.02186368711976, 42.34357736688139], [-71.02651647836697, 42.34504358869483], [-71.02321922528269, 42.345709953106336], [-71.02324744323813, 42.346923514109726], [-71.03219805296685, 42.350337992779636], [-71.03384066095778, 42.34817161027176], [-71.03414332314141, 42.35112823172173], [-71.03725317809842, 42.34833768956946], [-71.03880845035951, 42.34919049596605], [-71.0368113284942, 42.35189555832347], [-71.03991319726914, 42.34942926525716], [-71.04087365125355, 42.34982413673686], [-71.03875502936671, 42.35271233029762], [-71.04004887304991, 42.35320760866622], [-71.04217786454761, 42.35036306575533], [-71.04305546235716, 42.351067949670714], [-71.04099249415437, 42.353636440528746], [-71.0434770481401, 42.352935336279586]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_617218cbb72d4774b80eb6c6480d8f95.setStyle(function(feature) {return feature.properties.style;});
var popup_4573fb8493164e22a2dbdebb1c44d0bd = L.popup({maxWidth: '100%'
});
geo_json_617218cbb72d4774b80eb6c6480d8f95.bindPopup(popup_4573fb8493164e22a2dbdebb1c44d0bd)
;
var geo_json_d86e5d3c275c4bf09d0e764d1c5a6ac6 = L.geoJson(
{"bbox": [-71.0720785173581, 42.32192127673197, -71.00943583883524, 42.34570720862758], "features": [{"bbox": [-71.0720785173581, 42.32192127673197, -71.00943583883524, 42.34570720862758], "geometry": {"coordinates": [[[-71.06103625402734, 42.34282996194205], [-71.06053925846514, 42.34393174154925], [-71.0596444882277, 42.34474417409119], [-71.06094491062002, 42.34570720862758], [-71.06520114058061, 42.33538538367475], [-71.0720785173581, 42.33258162383592], [-71.0664059032492, 42.32626201199095], [-71.06357257941558, 42.33081027607339], [-71.05934170406438, 42.32996560473867], [-71.05070565694771, 42.32192127673197], [-71.0459625917321, 42.32324193766036], [-71.04747963253625, 42.323712432707346], [-71.04773237126913, 42.326275881596196], [-71.0449969939668, 42.329302817434844], [-71.03609484073523, 42.328418756888624], [-71.0245734838857, 42.33281275758098], [-71.01522223244002, 42.330466725750185], [-71.00943583883524, 42.336914451138576], [-71.00953076137885, 42.33893589479282], [-71.01419243185136, 42.34200741198692], [-71.02902371012625, 42.34176973958459], [-71.03040783828114, 42.34022662756279], [-71.03055050577615, 42.34153806886037], [-71.03505605599095, 42.340346227615285], [-71.0351649912163, 42.34167975554105], [-71.03893571793685, 42.341611068748044], [-71.03990169453452, 42.338445669594975], [-71.04031593779085, 42.33961906051781], [-71.0444036654097, 42.33799981614319], [-71.05223537123148, 42.343031107870445], [-71.05726322719951, 42.343543435100116], [-71.05706900966015, 42.345580358582126], [-71.06103625402734, 42.34282996194205]], [[-71.02242457995878, 42.3337107807375], [-71.02291411750409, 42.33632959811735], [-71.02030697264244, 42.33818117969074], [-71.0135081273886, 42.33820612042252], [-71.01219716597528, 42.33659114223438], [-71.01529121649595, 42.33087589092033], [-71.02242457995878, 42.3337107807375]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_d86e5d3c275c4bf09d0e764d1c5a6ac6.setStyle(function(feature) {return feature.properties.style;});
var popup_6213df4ce77f499bb348a874f83cc7eb = L.popup({maxWidth: '100%'
});
geo_json_d86e5d3c275c4bf09d0e764d1c5a6ac6.bindPopup(popup_6213df4ce77f499bb348a874f83cc7eb)
;
var geo_json_ffa1c5673c28424f9f1dc8af862d7479 = L.geoJson(
{"bbox": [-71.14721275521954, 42.34601463922568, -71.1106526396089, 42.373556919868456], "features": [{"bbox": [-71.14721275521954, 42.34601463922568, -71.1106526396089, 42.373556919868456], "geometry": {"coordinates": [[[-71.1351744804853, 42.34601463922568], [-71.12406776793887, 42.35156094354049], [-71.110944592447, 42.35042314500537], [-71.1106526396089, 42.35221700649782], [-71.11787299075719, 42.35517939777115], [-71.11844023268343, 42.368120308226274], [-71.12493289737266, 42.36902365409207], [-71.12925320301639, 42.373556919868456], [-71.13250158574728, 42.3728634885672], [-71.1311948758439, 42.36927394657821], [-71.1356863661143, 42.3668165353867], [-71.13530833005278, 42.363176491755546], [-71.13883323074796, 42.354537728111524], [-71.14422035341383, 42.354926067475844], [-71.14298801699275, 42.35164252563265], [-71.14721275521954, 42.350133694039926], [-71.14136114103842, 42.34919961944103], [-71.14003800975148, 42.350346622806626], [-71.14045459888932, 42.34747624303766], [-71.1351744804853, 42.34601463922568]]], "type": "Polygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_ffa1c5673c28424f9f1dc8af862d7479.setStyle(function(feature) {return feature.properties.style;});
var popup_529e1db7cfd64d7788a2906812491bae = L.popup({maxWidth: '100%'
});
geo_json_ffa1c5673c28424f9f1dc8af862d7479.bindPopup(popup_529e1db7cfd64d7788a2906812491bae)
;
var geo_json_ce0294f367454e5cbc09079a164acbbb = L.geoJson(
{"bbox": [-71.01745089662809, 42.308954333293144, -70.92278042484764, 42.35694511295436], "features": [{"bbox": [-71.01745089662809, 42.308954333293144, -70.92278042484764, 42.35694511295436], "geometry": {"coordinates": [[[[-70.96717806244645, 42.31377200821954], [-70.95991692229218, 42.32616162541016], [-70.95467201027584, 42.330621318401484], [-70.95834622264452, 42.33077659798948], [-70.96135817938493, 42.327130923710214], [-70.96534130104827, 42.32541192618862], [-70.97291040876954, 42.313059721582164], [-70.9771472669736, 42.3104879835302], [-70.96717806244645, 42.31377200821954]]], [[[-70.96473746923002, 42.355793500607845], [-70.967411048337, 42.35694511295436], [-70.96867146664493, 42.3548219430968], [-70.9593496829882, 42.34858228552232], [-70.9559725144298, 42.34392452369136], [-70.95297082159765, 42.34435196907244], [-70.95337191983582, 42.34986971177646], [-70.95586745223096, 42.3536205887137], [-70.95985049212753, 42.355936943677534], [-70.96473746923002, 42.355793500607845]]], [[[-70.99968741870613, 42.319958230616706], [-71.00208896878019, 42.32142743595735], [-71.00693581217102, 42.32069177672655], [-71.01716806355918, 42.31372096171899], [-71.01745089662809, 42.31158831584882], [-71.01562341893204, 42.309601564644346], [-71.01385766299649, 42.31037645972429], [-71.01175831750317, 42.308954333293144], [-71.00452445747096, 42.31876381340846], [-70.99968741870613, 42.319958230616706]]], [[[-70.98511351657136, 42.32339647087432], [-70.98533104888993, 42.32647690187428], [-70.98384028055314, 42.32789222265582], [-70.98839810659844, 42.328367025274794], [-70.99137092905714, 42.326773807448035], [-70.98840392109835, 42.32453652967482], [-70.98817718636127, 42.32017774164157], [-70.98655585981702, 42.319090526972424], [-70.98457150843062, 42.3213858895888], [-70.98511351657136, 42.32339647087432]]], [[[-70.925164055915, 42.3287387784023], [-70.92987501891561, 42.33361598900761], [-70.93208020818172, 42.33279245050948], [-70.93183487596487, 42.328864232185055], [-70.928271177194, 42.328058788756195], [-70.92632415805413, 42.325576066625075], [-70.92432015486395, 42.32514121563368], [-70.92278042484764, 42.32664149962206], [-70.925164055915, 42.3287387784023]]], [[[-70.93043871263373, 42.32190021463266], [-70.92913018502888, 42.317590805411164], [-70.92611814948152, 42.31795731174764], [-70.92618176426609, 42.32143676281984], [-70.93043871263373, 42.32190021463266]]], [[[-70.9407026365676, 42.327760950289935], [-70.94171950350704, 42.326402911274585], [-70.93990032431444, 42.324250354050584], [-70.9331483110565, 42.325940221114635], [-70.9407026365676, 42.327760950289935]]], [[[-70.95226426560988, 42.31330257975421], [-70.95456541455448, 42.31166351805187], [-70.95782468246537, 42.31125387329959], [-70.95490704923624, 42.309767953976554], [-70.95391450483226, 42.31155861929865], [-70.94934510168872, 42.31199107282644], [-70.95226426560988, 42.31330257975421]]], [[[-70.95338208097493, 42.35014016305593], [-70.95359996167387, 42.35048696553804], [-70.95373250722467, 42.35059695546943], [-70.95344469616458, 42.3501401527847], [-70.95338208097493, 42.35014016305593]]], [[[-70.96030048738604, 42.34909468891701], [-70.96028670760761, 42.34909788242128], [-70.96038639202628, 42.34910883243754], [-70.96033045266182, 42.34909482955574], [-70.96030048738604, 42.34909468891701]]], [[[-70.94182320707094, 42.3266211012774], [-70.9418199463735, 42.32660094743768], [-70.94181533045233, 42.326589735140935], [-70.94182320707094, 42.3266211012774]]]], "type": "MultiPolygon"}, "id": "0", "properties": {"highlight": {}, "style": {"fillColor": "orange"}}, "type": "Feature"}], "type": "FeatureCollection"},
{
}
).addTo(map_8bfe93dcdf82472bb4829b3ad96739d0 );
geo_json_ce0294f367454e5cbc09079a164acbbb.setStyle(function(feature) {return feature.properties.style;});
var popup_dcd85fce5f824c0096575ff5cbadd563 = L.popup({maxWidth: '100%'
});
geo_json_ce0294f367454e5cbc09079a164acbbb.bindPopup(popup_dcd85fce5f824c0096575ff5cbadd563)
;
</script>