-
Notifications
You must be signed in to change notification settings - Fork 0
/
houses_on_map.html
9749 lines (4661 loc) · 524 KB
/
houses_on_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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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>
<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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_2dce5757fdaa44aa9d87f553cb4d4b66 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_2dce5757fdaa44aa9d87f553cb4d4b66" ></div>
</body>
<script>
var map_2dce5757fdaa44aa9d87f553cb4d4b66 = L.map(
"map_2dce5757fdaa44aa9d87f553cb4d4b66",
{
center: [42.2, -70.955],
crs: L.CRS.EPSG3857,
zoom: 6,
zoomControl: true,
preferCanvas: false,
}
);
L.control.scale().addTo(map_2dce5757fdaa44aa9d87f553cb4d4b66);
var tile_layer_92414d7f1f4a4033b1f85555b4263b21 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_2dce5757fdaa44aa9d87f553cb4d4b66);
var feature_group_460aa8e3c52d454d84add37005a835af = L.featureGroup(
{}
).addTo(map_2dce5757fdaa44aa9d87f553cb4d4b66);
var circle_ca532b42bd0b4e78a4d3483bd63c05db = L.circle(
[42.425972285, -70.9280378],
{"bubblingMouseEvents": true, "color": "#ff6600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_e9e1042dda894754a651926f4dbe1ef7 = L.popup({"maxWidth": "100%"});
var html_a54ee99ade5b41fe9d0bc9586a9709aa = $(`<div id="html_a54ee99ade5b41fe9d0bc9586a9709aa" style="width: 100.0%; height: 100.0%;">CMEDV: 24.0 Town: Nahant</div>`)[0];
popup_e9e1042dda894754a651926f4dbe1ef7.setContent(html_a54ee99ade5b41fe9d0bc9586a9709aa);
circle_ca532b42bd0b4e78a4d3483bd63c05db.bindPopup(popup_e9e1042dda894754a651926f4dbe1ef7)
;
var circle_13fc7caa42f142e991b014802a05f431 = L.circle(
[42.481427262500006, -70.92000200000001],
{"bubblingMouseEvents": true, "color": "#ff2800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_095fcf33c0e542ca862bb77dfeab10e6 = L.popup({"maxWidth": "100%"});
var html_a53f5e87aab64824bb2876270b87acda = $(`<div id="html_a53f5e87aab64824bb2876270b87acda" style="width: 100.0%; height: 100.0%;">CMEDV: 21.6 Town: Swampscott</div>`)[0];
popup_095fcf33c0e542ca862bb77dfeab10e6.setContent(html_a53f5e87aab64824bb2876270b87acda);
circle_13fc7caa42f142e991b014802a05f431.bindPopup(popup_095fcf33c0e542ca862bb77dfeab10e6)
;
var circle_7d5d425accab48c1ae8962575afb9d70 = L.circle(
[42.473748881000006, -70.89750176000001],
{"bubblingMouseEvents": true, "color": "#87c400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#87c400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_15cf5696fa38496d8fb876d410be15bf = L.popup({"maxWidth": "100%"});
var html_82a8d7c10a224a68aa44b10259b54cb7 = $(`<div id="html_82a8d7c10a224a68aa44b10259b54cb7" style="width: 100.0%; height: 100.0%;">CMEDV: 34.7 Town: Swampscott</div>`)[0];
popup_15cf5696fa38496d8fb876d410be15bf.setContent(html_82a8d7c10a224a68aa44b10259b54cb7);
circle_7d5d425accab48c1ae8962575afb9d70.bindPopup(popup_15cf5696fa38496d8fb876d410be15bf)
;
var circle_cdb6606b693c4a0d86335aa56ebdb1a4 = L.circle(
[42.490811951, -70.88464447999999],
{"bubblingMouseEvents": true, "color": "#a8d400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#a8d400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_9b02eaeab0b0432f86407525550a7a1b = L.popup({"maxWidth": "100%"});
var html_d86e51f2bda24602a31de37b6f8b997c = $(`<div id="html_d86e51f2bda24602a31de37b6f8b997c" style="width: 100.0%; height: 100.0%;">CMEDV: 33.4 Town: Marblehead</div>`)[0];
popup_9b02eaeab0b0432f86407525550a7a1b.setContent(html_d86e51f2bda24602a31de37b6f8b997c);
circle_cdb6606b693c4a0d86335aa56ebdb1a4.bindPopup(popup_9b02eaeab0b0432f86407525550a7a1b)
;
var circle_372d7cee168342be8d37b25f6a99e534 = L.circle(
[42.499343486, -70.87500151999998],
{"bubblingMouseEvents": true, "color": "#61b000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#61b000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_1af14e3b35a242419f235714a4071d23 = L.popup({"maxWidth": "100%"});
var html_d9bb2373a9aa4531b34634846224fe70 = $(`<div id="html_d9bb2373a9aa4531b34634846224fe70" style="width: 100.0%; height: 100.0%;">CMEDV: 36.2 Town: Marblehead</div>`)[0];
popup_1af14e3b35a242419f235714a4071d23.setContent(html_d9bb2373a9aa4531b34634846224fe70);
circle_372d7cee168342be8d37b25f6a99e534.bindPopup(popup_1af14e3b35a242419f235714a4071d23)
;
var circle_0a8821f97a62421c913553fe21b933d8 = L.circle(
[42.509581327999996, -70.86616214],
{"bubblingMouseEvents": true, "color": "#ffde00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffde00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_228a94d3e9464e2d97a65e9936ed7af7 = L.popup({"maxWidth": "100%"});
var html_2f31c0edf7aa483c9537daaa78c00020 = $(`<div id="html_2f31c0edf7aa483c9537daaa78c00020" style="width: 100.0%; height: 100.0%;">CMEDV: 28.7 Town: Marblehead</div>`)[0];
popup_228a94d3e9464e2d97a65e9936ed7af7.setContent(html_2f31c0edf7aa483c9537daaa78c00020);
circle_0a8821f97a62421c913553fe21b933d8.bindPopup(popup_228a94d3e9464e2d97a65e9936ed7af7)
;
var circle_8574a71a802540808b339f0839955be4 = L.circle(
[42.497637178999994, -70.89750176000001],
{"bubblingMouseEvents": true, "color": "#ff4a00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff4a00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_d5e1d0c402a04d98b852cef30a7357c9 = L.popup({"maxWidth": "100%"});
var html_d890b88c86bc4e5aa5e42bcffa827c10 = $(`<div id="html_d890b88c86bc4e5aa5e42bcffa827c10" style="width: 100.0%; height: 100.0%;">CMEDV: 22.9 Town: Salem</div>`)[0];
popup_d5e1d0c402a04d98b852cef30a7357c9.setContent(html_d890b88c86bc4e5aa5e42bcffa827c10);
circle_8574a71a802540808b339f0839955be4.bindPopup(popup_d5e1d0c402a04d98b852cef30a7357c9)
;
var circle_8880368dabcf49bf81872886fbc00c50 = L.circle(
[42.519819170000005, -70.8999125],
{"bubblingMouseEvents": true, "color": "#ff3500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff3500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_1fea4e38de204114b774aab16b3e2e4b = L.popup({"maxWidth": "100%"});
var html_ee3c9195edcf4efe8a6e8cdb645cfe4a = $(`<div id="html_ee3c9195edcf4efe8a6e8cdb645cfe4a" style="width: 100.0%; height: 100.0%;">CMEDV: 22.1 Town: Salem</div>`)[0];
popup_1fea4e38de204114b774aab16b3e2e4b.setContent(html_ee3c9195edcf4efe8a6e8cdb645cfe4a);
circle_8880368dabcf49bf81872886fbc00c50.bindPopup(popup_1fea4e38de204114b774aab16b3e2e4b)
;
var circle_6a1aa3c9157a4adc840d219851715dac = L.circle(
[42.52323178399999, -70.89268028000001],
{"bubblingMouseEvents": true, "color": "#d70000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d70000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_22647896a34d4206a3b047faee42ad73 = L.popup({"maxWidth": "100%"});
var html_405c1d6e43b443f598c1418c6871b562 = $(`<div id="html_405c1d6e43b443f598c1418c6871b562" style="width: 100.0%; height: 100.0%;">CMEDV: 16.5 Town: Salem</div>`)[0];
popup_22647896a34d4206a3b047faee42ad73.setContent(html_405c1d6e43b443f598c1418c6871b562);
circle_6a1aa3c9157a4adc840d219851715dac.bindPopup(popup_22647896a34d4206a3b047faee42ad73)
;
var circle_2ca99bd861b84ca1b5d5a56ff1af01d3 = L.circle(
[42.530057012, -70.88625164000001],
{"bubblingMouseEvents": true, "color": "#f30000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f30000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_f61c6210eb4c4f9fad05864550a95edb = L.popup({"maxWidth": "100%"});
var html_1f247db400d14572b95dfcbcf0f17429 = $(`<div id="html_1f247db400d14572b95dfcbcf0f17429" style="width: 100.0%; height: 100.0%;">CMEDV: 18.9 Town: Salem</div>`)[0];
popup_f61c6210eb4c4f9fad05864550a95edb.setContent(html_1f247db400d14572b95dfcbcf0f17429);
circle_2ca99bd861b84ca1b5d5a56ff1af01d3.bindPopup(popup_f61c6210eb4c4f9fad05864550a95edb)
;
var circle_2ae4b9177f7a41bcbc79d900645ad700 = L.circle(
[42.530057012, -70.89589459999999],
{"bubblingMouseEvents": true, "color": "#c50000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c50000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_a913bdb0f93f47a78b2e1518de2caeb2 = L.popup({"maxWidth": "100%"});
var html_6a60a4f872a940708366d07394435811 = $(`<div id="html_6a60a4f872a940708366d07394435811" style="width: 100.0%; height: 100.0%;">CMEDV: 15.0 Town: Salem</div>`)[0];
popup_a913bdb0f93f47a78b2e1518de2caeb2.setContent(html_6a60a4f872a940708366d07394435811);
circle_2ae4b9177f7a41bcbc79d900645ad700.bindPopup(popup_a913bdb0f93f47a78b2e1518de2caeb2)
;
var circle_2e7c72fa6d5547da8324b88d72ea6dae = L.circle(
[42.53176331899999, -70.91035904],
{"bubblingMouseEvents": true, "color": "#f30000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f30000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_9a4776a036f64f75b8da18bc0896bd30 = L.popup({"maxWidth": "100%"});
var html_7cd7120ce5d34c5dbcb8ca68257ae990 = $(`<div id="html_7cd7120ce5d34c5dbcb8ca68257ae990" style="width: 100.0%; height: 100.0%;">CMEDV: 18.9 Town: Salem</div>`)[0];
popup_9a4776a036f64f75b8da18bc0896bd30.setContent(html_7cd7120ce5d34c5dbcb8ca68257ae990);
circle_2e7c72fa6d5547da8324b88d72ea6dae.bindPopup(popup_9a4776a036f64f75b8da18bc0896bd30)
;
var circle_5432bc82c86346528665ff34590bf63f = L.circle(
[42.512993941999994, -70.92160915999997],
{"bubblingMouseEvents": true, "color": "#ff2b00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff2b00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_45be417cdcc84547b925971ce1144cbe = L.popup({"maxWidth": "100%"});
var html_781b0b184f134b0da1f0185e7d730e52 = $(`<div id="html_781b0b184f134b0da1f0185e7d730e52" style="width: 100.0%; height: 100.0%;">CMEDV: 21.7 Town: Salem</div>`)[0];
popup_45be417cdcc84547b925971ce1144cbe.setContent(html_781b0b184f134b0da1f0185e7d730e52);
circle_5432bc82c86346528665ff34590bf63f.bindPopup(popup_45be417cdcc84547b925971ce1144cbe)
;
var circle_b21a52b1a917440682d85de227b5af6a = L.circle(
[42.489105644000006, -70.94330582],
{"bubblingMouseEvents": true, "color": "#ff0a00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0a00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_ee1399bfd9e048f6beaf3d8cc25b8e46 = L.popup({"maxWidth": "100%"});
var html_3f2880d0d800444cb9f27aab8308238b = $(`<div id="html_3f2880d0d800444cb9f27aab8308238b" style="width: 100.0%; height: 100.0%;">CMEDV: 20.4 Town: Lynn</div>`)[0];
popup_ee1399bfd9e048f6beaf3d8cc25b8e46.setContent(html_3f2880d0d800444cb9f27aab8308238b);
circle_b21a52b1a917440682d85de227b5af6a.bindPopup(popup_ee1399bfd9e048f6beaf3d8cc25b8e46)
;
var circle_944dfed196d24e01a360f333979c945f = L.circle(
[42.480574109, -70.95535952],
{"bubblingMouseEvents": true, "color": "#eb0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eb0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_5a036e35c94547d1bf079d38f8ddf4a3 = L.popup({"maxWidth": "100%"});
var html_e69d162f710b4dd3bf290d6817f0cfcb = $(`<div id="html_e69d162f710b4dd3bf290d6817f0cfcb" style="width: 100.0%; height: 100.0%;">CMEDV: 18.2 Town: Lynn</div>`)[0];
popup_5a036e35c94547d1bf079d38f8ddf4a3.setContent(html_e69d162f710b4dd3bf290d6817f0cfcb);
circle_944dfed196d24e01a360f333979c945f.bindPopup(popup_5a036e35c94547d1bf079d38f8ddf4a3)
;
var circle_dd79ab5809e1425a9d618d8b96902eac = L.circle(
[42.49251825799999, -70.96259174],
{"bubblingMouseEvents": true, "color": "#fe0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fe0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_da682d5a6fd542fcbc11b7a22df609f7 = L.popup({"maxWidth": "100%"});
var html_08887952b8a944608f4b9522be4be3ce = $(`<div id="html_08887952b8a944608f4b9522be4be3ce" style="width: 100.0%; height: 100.0%;">CMEDV: 19.9 Town: Lynn</div>`)[0];
popup_da682d5a6fd542fcbc11b7a22df609f7.setContent(html_08887952b8a944608f4b9522be4be3ce);
circle_dd79ab5809e1425a9d618d8b96902eac.bindPopup(popup_da682d5a6fd542fcbc11b7a22df609f7)
;
var circle_53f2cd544f924fc6b4a5df422a3dab60 = L.circle(
[42.50019663949999, -70.97946692],
{"bubblingMouseEvents": true, "color": "#ff4f00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff4f00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_2d99026548894920ad5b3b605916dff4 = L.popup({"maxWidth": "100%"});
var html_4dada6051edb4cacba64b1367848c52b = $(`<div id="html_4dada6051edb4cacba64b1367848c52b" style="width: 100.0%; height: 100.0%;">CMEDV: 23.1 Town: Lynn</div>`)[0];
popup_2d99026548894920ad5b3b605916dff4.setContent(html_4dada6051edb4cacba64b1367848c52b);
circle_53f2cd544f924fc6b4a5df422a3dab60.bindPopup(popup_2d99026548894920ad5b3b605916dff4)
;
var circle_fabbf5168ead463a901476077cf0f33b = L.circle(
[42.47716149499999, -70.96500247999998],
{"bubblingMouseEvents": true, "color": "#e20000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e20000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_83a007ddb6ed47b1813d654f9412acd1 = L.popup({"maxWidth": "100%"});
var html_d86bb79b103847d9a3c61f0d0b07ed2e = $(`<div id="html_d86bb79b103847d9a3c61f0d0b07ed2e" style="width: 100.0%; height: 100.0%;">CMEDV: 17.5 Town: Lynn</div>`)[0];
popup_83a007ddb6ed47b1813d654f9412acd1.setContent(html_d86bb79b103847d9a3c61f0d0b07ed2e);
circle_fabbf5168ead463a901476077cf0f33b.bindPopup(popup_83a007ddb6ed47b1813d654f9412acd1)
;
var circle_ed6dda1e40d241b7a9bc7c9906dccd13 = L.circle(
[42.4728957275, -70.9883063],
{"bubblingMouseEvents": true, "color": "#ff0500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_019a2947c5314f26aa47bf9601788a74 = L.popup({"maxWidth": "100%"});
var html_7fd132fa42e745fea204adad5b175466 = $(`<div id="html_7fd132fa42e745fea204adad5b175466" style="width: 100.0%; height: 100.0%;">CMEDV: 20.2 Town: Lynn</div>`)[0];
popup_019a2947c5314f26aa47bf9601788a74.setContent(html_7fd132fa42e745fea204adad5b175466);
circle_ed6dda1e40d241b7a9bc7c9906dccd13.bindPopup(popup_019a2947c5314f26aa47bf9601788a74)
;
var circle_faac6ec9956e474f9f2ebed9dbfb7f29 = L.circle(
[42.4645348232, -70.98107407999998],
{"bubblingMouseEvents": true, "color": "#eb0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#eb0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_d87daa0257d049bf960851d79130d18a = L.popup({"maxWidth": "100%"});
var html_a64d2fc9473a425eb2cc4f1d661e6131 = $(`<div id="html_a64d2fc9473a425eb2cc4f1d661e6131" style="width: 100.0%; height: 100.0%;">CMEDV: 18.2 Town: Lynn</div>`)[0];
popup_d87daa0257d049bf960851d79130d18a.setContent(html_a64d2fc9473a425eb2cc4f1d661e6131);
circle_faac6ec9956e474f9f2ebed9dbfb7f29.bindPopup(popup_d87daa0257d049bf960851d79130d18a)
;
var circle_5b1a1f3d94224f939df44f3913219ccb = L.circle(
[42.463511039, -70.97384186000002],
{"bubblingMouseEvents": true, "color": "#b50000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b50000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_d720843713404bb5a3bc3b752f5137fe = L.popup({"maxWidth": "100%"});
var html_51929eaf26fb4fb59e7214566b880abd = $(`<div id="html_51929eaf26fb4fb59e7214566b880abd" style="width: 100.0%; height: 100.0%;">CMEDV: 13.6 Town: Lynn</div>`)[0];
popup_d720843713404bb5a3bc3b752f5137fe.setContent(html_51929eaf26fb4fb59e7214566b880abd);
circle_5b1a1f3d94224f939df44f3913219ccb.bindPopup(popup_d720843713404bb5a3bc3b752f5137fe)
;
var circle_f6da2bcfb4b842d5bb8a6d300330b43b = L.circle(
[42.47033626699999, -70.97143112],
{"bubblingMouseEvents": true, "color": "#fb0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fb0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_5f8bb5c922b14314b323692f87708531 = L.popup({"maxWidth": "100%"});
var html_2d225326c9304a26ae481aa4daadd468 = $(`<div id="html_2d225326c9304a26ae481aa4daadd468" style="width: 100.0%; height: 100.0%;">CMEDV: 19.6 Town: Lynn</div>`)[0];
popup_5f8bb5c922b14314b323692f87708531.setContent(html_2d225326c9304a26ae481aa4daadd468);
circle_f6da2bcfb4b842d5bb8a6d300330b43b.bindPopup(popup_5f8bb5c922b14314b323692f87708531)
;
var circle_4cc62d3b32074f94a419d3e499ee4045 = L.circle(
[42.46692365300001, -70.96419890000001],
{"bubblingMouseEvents": true, "color": "#c80000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c80000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_9fd6740f0b674a158a5007bce5afaa99 = L.popup({"maxWidth": "100%"});
var html_7c8d466ebf7d40f69a08711dea71250d = $(`<div id="html_7c8d466ebf7d40f69a08711dea71250d" style="width: 100.0%; height: 100.0%;">CMEDV: 15.2 Town: Lynn</div>`)[0];
popup_9fd6740f0b674a158a5007bce5afaa99.setContent(html_7c8d466ebf7d40f69a08711dea71250d);
circle_4cc62d3b32074f94a419d3e499ee4045.bindPopup(popup_9fd6740f0b674a158a5007bce5afaa99)
;
var circle_a753f7e0baa24b1d9e5b7ca89f06454f = L.circle(
[42.46692365300001, -70.95696668],
{"bubblingMouseEvents": true, "color": "#bf0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bf0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_1defe637ac9d4e6d94fd318799a6ae2a = L.popup({"maxWidth": "100%"});
var html_cd1590bdeb5848ca93a6449545a7a987 = $(`<div id="html_cd1590bdeb5848ca93a6449545a7a987" style="width: 100.0%; height: 100.0%;">CMEDV: 14.5 Town: Lynn</div>`)[0];
popup_1defe637ac9d4e6d94fd318799a6ae2a.setContent(html_cd1590bdeb5848ca93a6449545a7a987);
circle_a753f7e0baa24b1d9e5b7ca89f06454f.bindPopup(popup_1defe637ac9d4e6d94fd318799a6ae2a)
;
var circle_4e574eac96934a5c8894763c5a4a5043 = L.circle(
[42.471360051199994, -70.951020188],
{"bubblingMouseEvents": true, "color": "#cc0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#cc0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_1a0c2831102f4b3d8a04fbc2e1b59aa0 = L.popup({"maxWidth": "100%"});
var html_833bf38a677c41318c10bccf8399ee0c = $(`<div id="html_833bf38a677c41318c10bccf8399ee0c" style="width: 100.0%; height: 100.0%;">CMEDV: 15.6 Town: Lynn</div>`)[0];
popup_1a0c2831102f4b3d8a04fbc2e1b59aa0.setContent(html_833bf38a677c41318c10bccf8399ee0c);
circle_4e574eac96934a5c8894763c5a4a5043.bindPopup(popup_1a0c2831102f4b3d8a04fbc2e1b59aa0)
;
var circle_cc369dc803a5418ea5ecf73c9f215181 = L.circle(
[42.475455188, -70.94250223999998],
{"bubblingMouseEvents": true, "color": "#b80000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b80000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_1d0d2727a7ed403ca30e7f49cc30523d = L.popup({"maxWidth": "100%"});
var html_c2f77cc1258d4c8c8ba4d9c26e8fa0e5 = $(`<div id="html_c2f77cc1258d4c8c8ba4d9c26e8fa0e5" style="width: 100.0%; height: 100.0%;">CMEDV: 13.9 Town: Lynn</div>`)[0];
popup_1d0d2727a7ed403ca30e7f49cc30523d.setContent(html_c2f77cc1258d4c8c8ba4d9c26e8fa0e5);
circle_cc369dc803a5418ea5ecf73c9f215181.bindPopup(popup_1d0d2727a7ed403ca30e7f49cc30523d)
;
var circle_cd1244ef63974e0c9a76cca04cecd7ff = L.circle(
[42.480574109, -70.93559145199998],
{"bubblingMouseEvents": true, "color": "#d80000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d80000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_5edf622921cf44cf910e103898bd0aa3 = L.popup({"maxWidth": "100%"});
var html_f5d1ed52f1704d35ba958d7a9b2693b1 = $(`<div id="html_f5d1ed52f1704d35ba958d7a9b2693b1" style="width: 100.0%; height: 100.0%;">CMEDV: 16.6 Town: Lynn</div>`)[0];
popup_5edf622921cf44cf910e103898bd0aa3.setContent(html_f5d1ed52f1704d35ba958d7a9b2693b1);
circle_cd1244ef63974e0c9a76cca04cecd7ff.bindPopup(popup_5edf622921cf44cf910e103898bd0aa3)
;
var circle_453e9ba2cd294e7e820250c957949b60 = L.circle(
[42.4728957275, -70.93559145199998],
{"bubblingMouseEvents": true, "color": "#c30000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#c30000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_7a215e47f50444bc982b82daedf827d5 = L.popup({"maxWidth": "100%"});
var html_00b1292a8a7e44079f1bd10e3f8f5329 = $(`<div id="html_00b1292a8a7e44079f1bd10e3f8f5329" style="width: 100.0%; height: 100.0%;">CMEDV: 14.8 Town: Lynn</div>`)[0];
popup_7a215e47f50444bc982b82daedf827d5.setContent(html_00b1292a8a7e44079f1bd10e3f8f5329);
circle_453e9ba2cd294e7e820250c957949b60.bindPopup(popup_7a215e47f50444bc982b82daedf827d5)
;
var circle_58c7fbe2119b466da91be95c4e6e2e99 = L.circle(
[42.46862996, -70.93125211999998],
{"bubblingMouseEvents": true, "color": "#ed0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ed0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_42e5590f2faf4ebd9027e5775679c971 = L.popup({"maxWidth": "100%"});
var html_99bcefa79de34ab4904364a29dc7d03f = $(`<div id="html_99bcefa79de34ab4904364a29dc7d03f" style="width: 100.0%; height: 100.0%;">CMEDV: 18.4 Town: Lynn</div>`)[0];
popup_42e5590f2faf4ebd9027e5775679c971.setContent(html_99bcefa79de34ab4904364a29dc7d03f);
circle_58c7fbe2119b466da91be95c4e6e2e99.bindPopup(popup_42e5590f2faf4ebd9027e5775679c971)
;
var circle_52a74a3d9152460ca0484352c184d423 = L.circle(
[42.465217346, -70.92160915999997],
{"bubblingMouseEvents": true, "color": "#ff1900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff1900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_41302bc9adae4053a789b12f6b138656 = L.popup({"maxWidth": "100%"});
var html_870bead8991147d2963e8f0b5a85a12e = $(`<div id="html_870bead8991147d2963e8f0b5a85a12e" style="width: 100.0%; height: 100.0%;">CMEDV: 21.0 Town: Lynn</div>`)[0];
popup_41302bc9adae4053a789b12f6b138656.setContent(html_870bead8991147d2963e8f0b5a85a12e);
circle_52a74a3d9152460ca0484352c184d423.bindPopup(popup_41302bc9adae4053a789b12f6b138656)
;
var circle_2b702b799b04472aa169c7a8bbe0d385 = L.circle(
[42.46692365300001, -70.94732371999999],
{"bubblingMouseEvents": true, "color": "#aa0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#aa0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_0f0dff4136c343d696f6e3a393922cb0 = L.popup({"maxWidth": "100%"});
var html_30ba216243624f608e46b34801168d00 = $(`<div id="html_30ba216243624f608e46b34801168d00" style="width: 100.0%; height: 100.0%;">CMEDV: 12.7 Town: Lynn</div>`)[0];
popup_0f0dff4136c343d696f6e3a393922cb0.setContent(html_30ba216243624f608e46b34801168d00);
circle_2b702b799b04472aa169c7a8bbe0d385.bindPopup(popup_0f0dff4136c343d696f6e3a393922cb0)
;
var circle_08c91451431547c8844e7a768e3d3a49 = L.circle(
[42.46265788549999, -70.94250223999998],
{"bubblingMouseEvents": true, "color": "#bf0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bf0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_167ccaf9aade435ba5598c2b9537faff = L.popup({"maxWidth": "100%"});
var html_4b964b6c06554cf88fe51c6b0e650c7e = $(`<div id="html_4b964b6c06554cf88fe51c6b0e650c7e" style="width: 100.0%; height: 100.0%;">CMEDV: 14.5 Town: Lynn</div>`)[0];
popup_167ccaf9aade435ba5598c2b9537faff.setContent(html_4b964b6c06554cf88fe51c6b0e650c7e);
circle_08c91451431547c8844e7a768e3d3a49.bindPopup(popup_167ccaf9aade435ba5598c2b9537faff)
;
var circle_8e0d51f050194b3dbaefdb8727992a7b = L.circle(
[42.46265788549999, -70.95535952],
{"bubblingMouseEvents": true, "color": "#b00000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b00000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_9f660fe960094839a08bf02037c2d132 = L.popup({"maxWidth": "100%"});
var html_d9001db10070465b89e1f1905f9f7a17 = $(`<div id="html_d9001db10070465b89e1f1905f9f7a17" style="width: 100.0%; height: 100.0%;">CMEDV: 13.2 Town: Lynn</div>`)[0];
popup_9f660fe960094839a08bf02037c2d132.setContent(html_d9001db10070465b89e1f1905f9f7a17);
circle_8e0d51f050194b3dbaefdb8727992a7b.bindPopup(popup_9f660fe960094839a08bf02037c2d132)
;
var circle_232ebfb7f0a24956851e09cf494ff4f3 = L.circle(
[42.461804732000004, -70.96741322],
{"bubblingMouseEvents": true, "color": "#af0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#af0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_bd452ca7f2fa455ea0caf653532b6a75 = L.popup({"maxWidth": "100%"});
var html_ed0055fe387b4957bf0299867a44c888 = $(`<div id="html_ed0055fe387b4957bf0299867a44c888" style="width: 100.0%; height: 100.0%;">CMEDV: 13.1 Town: Lynn</div>`)[0];
popup_bd452ca7f2fa455ea0caf653532b6a75.setContent(html_ed0055fe387b4957bf0299867a44c888);
circle_232ebfb7f0a24956851e09cf494ff4f3.bindPopup(popup_bd452ca7f2fa455ea0caf653532b6a75)
;
var circle_9907ee820c2f44868b1cf2b8bbfa5600 = L.circle(
[42.45497950399999, -70.96419890000001],
{"bubblingMouseEvents": true, "color": "#b40000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#b40000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_ca184f6258c548b689b53eccc43c2b09 = L.popup({"maxWidth": "100%"});
var html_e0eff6a90df44d45bdb5cabfc47060a8 = $(`<div id="html_e0eff6a90df44d45bdb5cabfc47060a8" style="width: 100.0%; height: 100.0%;">CMEDV: 13.5 Town: Lynn</div>`)[0];
popup_ca184f6258c548b689b53eccc43c2b09.setContent(html_e0eff6a90df44d45bdb5cabfc47060a8);
circle_9907ee820c2f44868b1cf2b8bbfa5600.bindPopup(popup_ca184f6258c548b689b53eccc43c2b09)
;
var circle_b2eddaafbb0948a0bccb9fd8ca792988 = L.circle(
[42.45156689000001, -71.00036],
{"bubblingMouseEvents": true, "color": "#f30000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f30000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_f9aa1ca87c394c609dd1581951f41691 = L.popup({"maxWidth": "100%"});
var html_102bcf5b15fa4084a653268581301dd2 = $(`<div id="html_102bcf5b15fa4084a653268581301dd2" style="width: 100.0%; height: 100.0%;">CMEDV: 18.9 Town: Sargus</div>`)[0];
popup_f9aa1ca87c394c609dd1581951f41691.setContent(html_102bcf5b15fa4084a653268581301dd2);
circle_b2eddaafbb0948a0bccb9fd8ca792988.bindPopup(popup_f9aa1ca87c394c609dd1581951f41691)
;
var circle_db5482a79d714650aa321aa0f9eef136 = L.circle(
[42.45924527150001, -71.01321727999999],
{"bubblingMouseEvents": true, "color": "#ff0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_85ff9b9ef790439183c4d62f5c0ca2ae = L.popup({"maxWidth": "100%"});
var html_12db8ca212de427b8b9c8059830a461b = $(`<div id="html_12db8ca212de427b8b9c8059830a461b" style="width: 100.0%; height: 100.0%;">CMEDV: 20.0 Town: Sargus</div>`)[0];
popup_85ff9b9ef790439183c4d62f5c0ca2ae.setContent(html_12db8ca212de427b8b9c8059830a461b);
circle_db5482a79d714650aa321aa0f9eef136.bindPopup(popup_85ff9b9ef790439183c4d62f5c0ca2ae)
;
var circle_9d8ae8e1df184302a0a64ed60b43fe2a = L.circle(
[42.4797209555, -71.00678864],
{"bubblingMouseEvents": true, "color": "#ff1900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff1900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_d48db3f3fc89437ba87f8e5e734dfc32 = L.popup({"maxWidth": "100%"});
var html_f2960c9b899e4c7ca666eecfaca46155 = $(`<div id="html_f2960c9b899e4c7ca666eecfaca46155" style="width: 100.0%; height: 100.0%;">CMEDV: 21.0 Town: Sargus</div>`)[0];
popup_d48db3f3fc89437ba87f8e5e734dfc32.setContent(html_f2960c9b899e4c7ca666eecfaca46155);
circle_9d8ae8e1df184302a0a64ed60b43fe2a.bindPopup(popup_d48db3f3fc89437ba87f8e5e734dfc32)
;
var circle_49ed94273bbd447abc152130b23920c8 = L.circle(
[42.481427262500006, -71.03250319999998],
{"bubblingMouseEvents": true, "color": "#ff6b00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff6b00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_0275f496dd544a158eed0f60b06c4667 = L.popup({"maxWidth": "100%"});
var html_a0d74f0bf21e48fd87cb88abf028dcf8 = $(`<div id="html_a0d74f0bf21e48fd87cb88abf028dcf8" style="width: 100.0%; height: 100.0%;">CMEDV: 24.2 Town: Sargus</div>`)[0];
popup_0275f496dd544a158eed0f60b06c4667.setContent(html_a0d74f0bf21e48fd87cb88abf028dcf8);
circle_49ed94273bbd447abc152130b23920c8.bindPopup(popup_0275f496dd544a158eed0f60b06c4667)
;
var circle_9cf204ce0bf74ff3897c9b5073765685 = L.circle(
[42.52493809100001, -71.02125308000001],
{"bubblingMouseEvents": true, "color": "#ebf500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ebf500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_ea21ee4fd83f4549bdf572b8be10da34 = L.popup({"maxWidth": "100%"});
var html_d867d4858237403d84ea08e709a8abe4 = $(`<div id="html_d867d4858237403d84ea08e709a8abe4" style="width: 100.0%; height: 100.0%;">CMEDV: 30.8 Town: Lynnfield</div>`)[0];
popup_ea21ee4fd83f4549bdf572b8be10da34.setContent(html_d867d4858237403d84ea08e709a8abe4);
circle_9cf204ce0bf74ff3897c9b5073765685.bindPopup(popup_ea21ee4fd83f4549bdf572b8be10da34)
;
var circle_f53e3c24317048b7b4cd0d85e077da9a = L.circle(
[42.543707467999994, -71.04857480000001],
{"bubblingMouseEvents": true, "color": "#82c100ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#82c100ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_5848f0b1b45241ba93f71344975a905e = L.popup({"maxWidth": "100%"});
var html_a49afef2ea5c4962b50a0f92f69cf595 = $(`<div id="html_a49afef2ea5c4962b50a0f92f69cf595" style="width: 100.0%; height: 100.0%;">CMEDV: 34.9 Town: Lynnfield</div>`)[0];
popup_5848f0b1b45241ba93f71344975a905e.setContent(html_a49afef2ea5c4962b50a0f92f69cf595);
circle_f53e3c24317048b7b4cd0d85e077da9a.bindPopup(popup_5848f0b1b45241ba93f71344975a905e)
;
var circle_33ed630f6abd471d970ceb69fb8d27a3 = L.circle(
[42.562476845000006, -71.00678864],
{"bubblingMouseEvents": true, "color": "#ffa800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffa800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_3e6bfd9f56694ddbade8cc1d47876db4 = L.popup({"maxWidth": "100%"});
var html_d8e9dbd9a41243ddabb1084eaeb4d263 = $(`<div id="html_d8e9dbd9a41243ddabb1084eaeb4d263" style="width: 100.0%; height: 100.0%;">CMEDV: 26.6 Town: Peabody</div>`)[0];
popup_3e6bfd9f56694ddbade8cc1d47876db4.setContent(html_d8e9dbd9a41243ddabb1084eaeb4d263);
circle_33ed630f6abd471d970ceb69fb8d27a3.bindPopup(popup_3e6bfd9f56694ddbade8cc1d47876db4)
;
var circle_1a123de4ab7145b6b2098ca7c0af8350 = L.circle(
[42.542854314500005, -71.00518148],
{"bubblingMouseEvents": true, "color": "#ff8700ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff8700ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_cfc02d983c5342828027f123fcf16408 = L.popup({"maxWidth": "100%"});
var html_988797a1a4f24f69b314f2e572b1eafd = $(`<div id="html_988797a1a4f24f69b314f2e572b1eafd" style="width: 100.0%; height: 100.0%;">CMEDV: 25.3 Town: Peabody</div>`)[0];
popup_cfc02d983c5342828027f123fcf16408.setContent(html_988797a1a4f24f69b314f2e572b1eafd);
circle_1a123de4ab7145b6b2098ca7c0af8350.bindPopup(popup_cfc02d983c5342828027f123fcf16408)
;
var circle_53aad2790542489897072898de4e0a64 = L.circle(
[42.5431955759, -70.96419890000001],
{"bubblingMouseEvents": true, "color": "#ff7800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff7800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_996f1eef27314614a725801fd53295cf = L.popup({"maxWidth": "100%"});
var html_d473400d89fb4e75b1e2296337d83e9c = $(`<div id="html_d473400d89fb4e75b1e2296337d83e9c" style="width: 100.0%; height: 100.0%;">CMEDV: 24.7 Town: Peabody</div>`)[0];
popup_996f1eef27314614a725801fd53295cf.setContent(html_d473400d89fb4e75b1e2296337d83e9c);
circle_53aad2790542489897072898de4e0a64.bindPopup(popup_996f1eef27314614a725801fd53295cf)
;
var circle_1c582bd694374d3fb5201a826b791345 = L.circle(
[42.53176331899999, -70.94812730000001],
{"bubblingMouseEvents": true, "color": "#ff1e00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff1e00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_9a37d38493784e1abb211394853bcaa6 = L.popup({"maxWidth": "100%"});
var html_710e8adc07de4fdf90e8bca037a79c0c = $(`<div id="html_710e8adc07de4fdf90e8bca037a79c0c" style="width: 100.0%; height: 100.0%;">CMEDV: 21.2 Town: Peabody</div>`)[0];
popup_9a37d38493784e1abb211394853bcaa6.setContent(html_710e8adc07de4fdf90e8bca037a79c0c);
circle_1c582bd694374d3fb5201a826b791345.bindPopup(popup_9a37d38493784e1abb211394853bcaa6)
;
var circle_03d1049fafae42fc8b4fd57ea4f6555e = L.circle(
[42.51555340249999, -70.9561631],
{"bubblingMouseEvents": true, "color": "#f70000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f70000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_0502e6258c3e4c4b948b33d5ca316556 = L.popup({"maxWidth": "100%"});
var html_618688c070d744358755594dd1c4db02 = $(`<div id="html_618688c070d744358755594dd1c4db02" style="width: 100.0%; height: 100.0%;">CMEDV: 19.3 Town: Peabody</div>`)[0];
popup_0502e6258c3e4c4b948b33d5ca316556.setContent(html_618688c070d744358755594dd1c4db02);
circle_03d1049fafae42fc8b4fd57ea4f6555e.bindPopup(popup_0502e6258c3e4c4b948b33d5ca316556)
;
var circle_b75422c7d5ec45cf80886a83841d0541 = L.circle(
[42.51555340249999, -70.9441094],
{"bubblingMouseEvents": true, "color": "#ff0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ff0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_26ac4e47c1df4e49a1d2ae1e1d17f0ee = L.popup({"maxWidth": "100%"});
var html_0d06532e3655466b9bad007219865daa = $(`<div id="html_0d06532e3655466b9bad007219865daa" style="width: 100.0%; height: 100.0%;">CMEDV: 20.0 Town: Peabody</div>`)[0];
popup_26ac4e47c1df4e49a1d2ae1e1d17f0ee.setContent(html_0d06532e3655466b9bad007219865daa);
circle_b75422c7d5ec45cf80886a83841d0541.bindPopup(popup_26ac4e47c1df4e49a1d2ae1e1d17f0ee)
;
var circle_ab706a8f18df4fb691107815bb78f2e5 = L.circle(
[42.52408493749999, -70.92964495999999],
{"bubblingMouseEvents": true, "color": "#d80000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#d80000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_c02dfe861e6e4a7a8ed7f86411db90a9 = L.popup({"maxWidth": "100%"});
var html_dc3546140bdf4dc2823a03e3f8070622 = $(`<div id="html_dc3546140bdf4dc2823a03e3f8070622" style="width: 100.0%; height: 100.0%;">CMEDV: 16.6 Town: Peabody</div>`)[0];
popup_c02dfe861e6e4a7a8ed7f86411db90a9.setContent(html_dc3546140bdf4dc2823a03e3f8070622);
circle_ab706a8f18df4fb691107815bb78f2e5.bindPopup(popup_c02dfe861e6e4a7a8ed7f86411db90a9)
;
var circle_53eecca9f76b4c8a8ab5ef66d2dc16d5 = L.circle(
[42.53091016549999, -70.9280378],
{"bubblingMouseEvents": true, "color": "#be0000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#be0000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 50, "stroke": true, "weight": 3}
).addTo(feature_group_460aa8e3c52d454d84add37005a835af);
var popup_4e8ae52b17fe4f22b6698d7133b65708 = L.popup({"maxWidth": "100%"});
var html_e3968b6ae52b4aa990e1956e7162e475 = $(`<div id="html_e3968b6ae52b4aa990e1956e7162e475" style="width: 100.0%; height: 100.0%;">CMEDV: 14.4 Town: Peabody</div>`)[0];
popup_4e8ae52b17fe4f22b6698d7133b65708.setContent(html_e3968b6ae52b4aa990e1956e7162e475);
circle_53eecca9f76b4c8a8ab5ef66d2dc16d5.bindPopup(popup_4e8ae52b17fe4f22b6698d7133b65708)
;