-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvulnerability_map.html
More file actions
2413 lines (1189 loc) · 116 KB
/
vulnerability_map.html
File metadata and controls
2413 lines (1189 loc) · 116 KB
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>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.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_f3e207946ace3de8c6c6f585435d6583 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<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>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
</head>
<body>
<div class="folium-map" id="map_f3e207946ace3de8c6c6f585435d6583" ></div>
<div style="position: fixed;
bottom: 50px; left: 50px; width: 220px; height: 110px;
border:1px solid grey; z-index:9999; font-size:14px;
background-color:rgba(10, 10, 10, 0.9);
color: #FFFFFF; padding: 10px; font-family: monospace;">
<b>Threat Level (Store Density)</b><br>
<span style="color:#FF004D;">●</span> Critical (5+ stores)<br>
<span style="color:#FF5F1F;">●</span> Elevated (2-4 stores)<br>
<span style="color:#FFC000;">●</span> Baseline (0-1 stores)<br>
</div>
</body>
<script>
var map_f3e207946ace3de8c6c6f585435d6583 = L.map(
"map_f3e207946ace3de8c6c6f585435d6583",
{
center: [39.8283, -98.5795],
crs: L.CRS.EPSG3857,
...{
"zoom": 5,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_23ddbff3d0c3ad19f18b449d29ecaccc = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png",
{
"minZoom": 0,
"maxZoom": 20,
"maxNativeZoom": 20,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e",
"subdomains": "abcd",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_23ddbff3d0c3ad19f18b449d29ecaccc.addTo(map_f3e207946ace3de8c6c6f585435d6583);
var circle_marker_ed469ce0405bc19d97c4ba902b81fb01 = L.circleMarker(
[37.3941548, -88.7675733],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_c71bf274bc8a97ccf355166278df1551 = L.popup({
"maxWidth": "100%",
});
var html_ba4240e0c9a341c4494980ab79cc7222 = $(`<div id="html_ba4240e0c9a341c4494980ab79cc7222" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 17087980000<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 15.5%</div>`)[0];
popup_c71bf274bc8a97ccf355166278df1551.setContent(html_ba4240e0c9a341c4494980ab79cc7222);
circle_marker_ed469ce0405bc19d97c4ba902b81fb01.bindPopup(popup_c71bf274bc8a97ccf355166278df1551)
;
var circle_marker_f4ecd7941d85b799a5c7b81d7eb8e0b5 = L.circleMarker(
[28.0662816, -82.4061573],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_998dc1774671d867208af1eb26eb4633 = L.popup({
"maxWidth": "100%",
});
var html_905407c8cabaec5671b8317e616bf74b = $(`<div id="html_905407c8cabaec5671b8317e616bf74b" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 12057010900<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 5 within 5km<br><b>Health Anomaly:</b> 50.7%</div>`)[0];
popup_998dc1774671d867208af1eb26eb4633.setContent(html_905407c8cabaec5671b8317e616bf74b);
circle_marker_f4ecd7941d85b799a5c7b81d7eb8e0b5.bindPopup(popup_998dc1774671d867208af1eb26eb4633)
;
var circle_marker_e599c01b7f861f48a0d55cfcdd29fea8 = L.circleMarker(
[32.4742366, -80.7129348],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_5bc592b5ac7c7855b042f931d625cfc3 = L.popup({
"maxWidth": "100%",
});
var html_418a00e5cc38b8f653a1fe7501dc07db = $(`<div id="html_418a00e5cc38b8f653a1fe7501dc07db" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 45013000400<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 9.7%</div>`)[0];
popup_5bc592b5ac7c7855b042f931d625cfc3.setContent(html_418a00e5cc38b8f653a1fe7501dc07db);
circle_marker_e599c01b7f861f48a0d55cfcdd29fea8.bindPopup(popup_5bc592b5ac7c7855b042f931d625cfc3)
;
var circle_marker_b103f1be5d79bc09fd8d4be78957511e = L.circleMarker(
[33.7737809, -84.2413121],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 20, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_c6c6558ebbfcfcdd6b0ccd88a6579b17 = L.popup({
"maxWidth": "100%",
});
var html_efc29f2d8f6718f2f394847d3f03c603 = $(`<div id="html_efc29f2d8f6718f2f394847d3f03c603" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 13089023115<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 16 within 5km<br><b>Health Anomaly:</b> 8.6%</div>`)[0];
popup_c6c6558ebbfcfcdd6b0ccd88a6579b17.setContent(html_efc29f2d8f6718f2f394847d3f03c603);
circle_marker_b103f1be5d79bc09fd8d4be78957511e.bindPopup(popup_c6c6558ebbfcfcdd6b0ccd88a6579b17)
;
var circle_marker_dd0933d929c839178abb298a1a26ce35 = L.circleMarker(
[33.7443155, -118.2203101],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_aaffc6eef9cf118ebc3c840c2a0f638d = L.popup({
"maxWidth": "100%",
});
var html_4f73a5a1dd2d999444b33094271fb3e2 = $(`<div id="html_4f73a5a1dd2d999444b33094271fb3e2" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 06037980033<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 36.8%</div>`)[0];
popup_aaffc6eef9cf118ebc3c840c2a0f638d.setContent(html_4f73a5a1dd2d999444b33094271fb3e2);
circle_marker_dd0933d929c839178abb298a1a26ce35.bindPopup(popup_aaffc6eef9cf118ebc3c840c2a0f638d)
;
var circle_marker_2c2378540059cace9999d76a1912dcd9 = L.circleMarker(
[43.6862822, -85.4805335],
{"bubblingMouseEvents": true, "color": "#FF5F1F", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF5F1F", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_5b4a13a18e21a9876f6fa88e80e10c75 = L.popup({
"maxWidth": "100%",
});
var html_7c30b4a743101da41e22f76c2ee2475a = $(`<div id="html_7c30b4a743101da41e22f76c2ee2475a" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 26107981300<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 2 within 5km<br><b>Health Anomaly:</b> 10.1%</div>`)[0];
popup_5b4a13a18e21a9876f6fa88e80e10c75.setContent(html_7c30b4a743101da41e22f76c2ee2475a);
circle_marker_2c2378540059cace9999d76a1912dcd9.bindPopup(popup_5b4a13a18e21a9876f6fa88e80e10c75)
;
var circle_marker_6992d94c9439c0a8678c90ef20359611 = L.circleMarker(
[40.8013025, -77.8565662],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_9ba2b6c912d8dcf94a35b1b13c7c2e19 = L.popup({
"maxWidth": "100%",
});
var html_d142881be16329e7f5f10b41c00fa9bb = $(`<div id="html_d142881be16329e7f5f10b41c00fa9bb" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 42027012100<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 1 within 5km<br><b>Health Anomaly:</b> 42.4%</div>`)[0];
popup_9ba2b6c912d8dcf94a35b1b13c7c2e19.setContent(html_d142881be16329e7f5f10b41c00fa9bb);
circle_marker_6992d94c9439c0a8678c90ef20359611.bindPopup(popup_9ba2b6c912d8dcf94a35b1b13c7c2e19)
;
var circle_marker_cf90a2ad805ea8d42d9083e1ec0859e5 = L.circleMarker(
[42.0268643, -93.6457802],
{"bubblingMouseEvents": true, "color": "#FF5F1F", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF5F1F", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_c988bf7b57dda96419c9fcc7d492a9f0 = L.popup({
"maxWidth": "100%",
});
var html_bfa7bdb061b0cbdc1d64b88a8830b83e = $(`<div id="html_bfa7bdb061b0cbdc1d64b88a8830b83e" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 19169000800<br><b>Poverty Rate:</b> 100.0%<br><b>Store Density:</b> 2 within 5km<br><b>Health Anomaly:</b> 73.5%</div>`)[0];
popup_c988bf7b57dda96419c9fcc7d492a9f0.setContent(html_bfa7bdb061b0cbdc1d64b88a8830b83e);
circle_marker_cf90a2ad805ea8d42d9083e1ec0859e5.bindPopup(popup_c988bf7b57dda96419c9fcc7d492a9f0)
;
var circle_marker_ef708fa2bba29a62d25b528f3d9a4ece = L.circleMarker(
[25.4932801, -80.3902202],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_0f9f97e3dce583dd52440ea73f16fd68 = L.popup({
"maxWidth": "100%",
});
var html_4a8a40a777b2c70dfcc80e17e128a6d4 = $(`<div id="html_4a8a40a777b2c70dfcc80e17e128a6d4" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 12086980700<br><b>Poverty Rate:</b> 99.5%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 19.6%</div>`)[0];
popup_0f9f97e3dce583dd52440ea73f16fd68.setContent(html_4a8a40a777b2c70dfcc80e17e128a6d4);
circle_marker_ef708fa2bba29a62d25b528f3d9a4ece.bindPopup(popup_0f9f97e3dce583dd52440ea73f16fd68)
;
var circle_marker_59157a7506db62c823c111c81398caa3 = L.circleMarker(
[34.0695655, -81.0984227],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_08797c44782957f98be6d85870e51a01 = L.popup({
"maxWidth": "100%",
});
var html_eb346e56431dfb860fe4bf539eccd6b2 = $(`<div id="html_eb346e56431dfb860fe4bf539eccd6b2" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 45079010408<br><b>Poverty Rate:</b> 94.1%<br><b>Store Density:</b> 7 within 5km<br><b>Health Anomaly:</b> 56.7%</div>`)[0];
popup_08797c44782957f98be6d85870e51a01.setContent(html_eb346e56431dfb860fe4bf539eccd6b2);
circle_marker_59157a7506db62c823c111c81398caa3.bindPopup(popup_08797c44782957f98be6d85870e51a01)
;
var circle_marker_f4a3aa2c1e46fa9842445ed4a721a5c3 = L.circleMarker(
[43.075823, -89.4094026],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_eba1842bc64d2775b0b72750edc35ecc = L.popup({
"maxWidth": "100%",
});
var html_7b62c0b9f860a344015367ea7a3856c4 = $(`<div id="html_7b62c0b9f860a344015367ea7a3856c4" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 55025001102<br><b>Poverty Rate:</b> 92.6%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 2.7%</div>`)[0];
popup_eba1842bc64d2775b0b72750edc35ecc.setContent(html_7b62c0b9f860a344015367ea7a3856c4);
circle_marker_f4a3aa2c1e46fa9842445ed4a721a5c3.bindPopup(popup_eba1842bc64d2775b0b72750edc35ecc)
;
var circle_marker_9fd52e1aa3fec69a498bcd4d0a160690 = L.circleMarker(
[40.6888726, -73.7702025],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 23, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_15ade47dd93368c71b34610fb5239b6f = L.popup({
"maxWidth": "100%",
});
var html_a54edcc0c229dc5e69bb03f3bda1fd82 = $(`<div id="html_a54edcc0c229dc5e69bb03f3bda1fd82" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 36081042600<br><b>Poverty Rate:</b> 91.6%<br><b>Store Density:</b> 19 within 5km<br><b>Health Anomaly:</b> 16.1%</div>`)[0];
popup_15ade47dd93368c71b34610fb5239b6f.setContent(html_a54edcc0c229dc5e69bb03f3bda1fd82);
circle_marker_9fd52e1aa3fec69a498bcd4d0a160690.bindPopup(popup_15ade47dd93368c71b34610fb5239b6f)
;
var circle_marker_b0ba79f78de14b6045d3e8251127357c = L.circleMarker(
[33.9481338, -83.3754635],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_db66b4cadc0eaa7dcbde2c10f34c6e62 = L.popup({
"maxWidth": "100%",
});
var html_04d2e3ec10380563487fab0475c670eb = $(`<div id="html_04d2e3ec10380563487fab0475c670eb" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 13059000402<br><b>Poverty Rate:</b> 91.2%<br><b>Store Density:</b> 7 within 5km<br><b>Health Anomaly:</b> 20.2%</div>`)[0];
popup_db66b4cadc0eaa7dcbde2c10f34c6e62.setContent(html_04d2e3ec10380563487fab0475c670eb);
circle_marker_b0ba79f78de14b6045d3e8251127357c.bindPopup(popup_db66b4cadc0eaa7dcbde2c10f34c6e62)
;
var circle_marker_5de35b9229884c018c3e2d8d3b870789 = L.circleMarker(
[38.2863382, -104.6295838],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_429d01132f39d8147d6291bc768fc510 = L.popup({
"maxWidth": "100%",
});
var html_b6da0d5fb47be744c76469bb0d62e8a6 = $(`<div id="html_b6da0d5fb47be744c76469bb0d62e8a6" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 08101000300<br><b>Poverty Rate:</b> 90.9%<br><b>Store Density:</b> 10 within 5km<br><b>Health Anomaly:</b> 7.8%</div>`)[0];
popup_429d01132f39d8147d6291bc768fc510.setContent(html_b6da0d5fb47be744c76469bb0d62e8a6);
circle_marker_5de35b9229884c018c3e2d8d3b870789.bindPopup(popup_429d01132f39d8147d6291bc768fc510)
;
var circle_marker_70bb1965b05fbfe5052c186b764ec3a6 = L.circleMarker(
[37.1971576, -86.1563291],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_45997fe1dc0c40e95e89c7ff3e8fc5c3 = L.popup({
"maxWidth": "100%",
});
var html_3bbc14ad31dec12532158805f530ca37 = $(`<div id="html_3bbc14ad31dec12532158805f530ca37" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 21061980100<br><b>Poverty Rate:</b> 90.7%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 43.8%</div>`)[0];
popup_45997fe1dc0c40e95e89c7ff3e8fc5c3.setContent(html_3bbc14ad31dec12532158805f530ca37);
circle_marker_70bb1965b05fbfe5052c186b764ec3a6.bindPopup(popup_45997fe1dc0c40e95e89c7ff3e8fc5c3)
;
var circle_marker_f66fc8862f49fa9c97041266d2837633 = L.circleMarker(
[40.6075717, -79.1706076],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_a60bc3b33d8fc0b6bf09c04204c93a59 = L.popup({
"maxWidth": "100%",
});
var html_426fff77e93b617ffcfe16f42245386f = $(`<div id="html_426fff77e93b617ffcfe16f42245386f" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 42063961102<br><b>Poverty Rate:</b> 90.5%<br><b>Store Density:</b> 1 within 5km<br><b>Health Anomaly:</b> 72.2%</div>`)[0];
popup_a60bc3b33d8fc0b6bf09c04204c93a59.setContent(html_426fff77e93b617ffcfe16f42245386f);
circle_marker_f66fc8862f49fa9c97041266d2837633.bindPopup(popup_a60bc3b33d8fc0b6bf09c04204c93a59)
;
var circle_marker_0336c878af16bb3a2f819dfdd404209a = L.circleMarker(
[40.1069888, -88.2323402],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_306937d22c4ff7b10139a6eb9b8b3df9 = L.popup({
"maxWidth": "100%",
});
var html_58c30c7c58a2bffd944111beb417c67c = $(`<div id="html_58c30c7c58a2bffd944111beb417c67c" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 17019000401<br><b>Poverty Rate:</b> 90.3%<br><b>Store Density:</b> 6 within 5km<br><b>Health Anomaly:</b> 0.7%</div>`)[0];
popup_306937d22c4ff7b10139a6eb9b8b3df9.setContent(html_58c30c7c58a2bffd944111beb417c67c);
circle_marker_0336c878af16bb3a2f819dfdd404209a.bindPopup(popup_306937d22c4ff7b10139a6eb9b8b3df9)
;
var circle_marker_e6a534353227ba07eb84f73c94b2b9e3 = L.circleMarker(
[40.5106925, -88.9939789],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_cc0273efb2cdf6be3da746096e460552 = L.popup({
"maxWidth": "100%",
});
var html_8207e77b1a5d85b11035b19528b69004 = $(`<div id="html_8207e77b1a5d85b11035b19528b69004" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 17113000200<br><b>Poverty Rate:</b> 90.1%<br><b>Store Density:</b> 7 within 5km<br><b>Health Anomaly:</b> 53.8%</div>`)[0];
popup_cc0273efb2cdf6be3da746096e460552.setContent(html_8207e77b1a5d85b11035b19528b69004);
circle_marker_e6a534353227ba07eb84f73c94b2b9e3.bindPopup(popup_cc0273efb2cdf6be3da746096e460552)
;
var circle_marker_f523d5d7dae9dfa4e02946243e08b049 = L.circleMarker(
[40.1066171, -88.2388973],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_b4c7a3fea176ab4c9e437543fdccaf3b = L.popup({
"maxWidth": "100%",
});
var html_cdd200b7eaee93b37651f7d2ce665049 = $(`<div id="html_cdd200b7eaee93b37651f7d2ce665049" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 17019000402<br><b>Poverty Rate:</b> 88.9%<br><b>Store Density:</b> 6 within 5km<br><b>Health Anomaly:</b> 27.3%</div>`)[0];
popup_b4c7a3fea176ab4c9e437543fdccaf3b.setContent(html_cdd200b7eaee93b37651f7d2ce665049);
circle_marker_f523d5d7dae9dfa4e02946243e08b049.bindPopup(popup_b4c7a3fea176ab4c9e437543fdccaf3b)
;
var circle_marker_5df13f50245c5bcc406583f193613871 = L.circleMarker(
[34.1394113, -117.2196639],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_beb33aebeaf4415aeb4d195382c216e6 = L.popup({
"maxWidth": "100%",
});
var html_8c26411be87888c9e926f349b28bebd1 = $(`<div id="html_8c26411be87888c9e926f349b28bebd1" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 06071012300<br><b>Poverty Rate:</b> 88.5%<br><b>Store Density:</b> 1 within 5km<br><b>Health Anomaly:</b> 73.4%</div>`)[0];
popup_beb33aebeaf4415aeb4d195382c216e6.setContent(html_8c26411be87888c9e926f349b28bebd1);
circle_marker_5df13f50245c5bcc406583f193613871.bindPopup(popup_beb33aebeaf4415aeb4d195382c216e6)
;
var circle_marker_5775a1bc0180ad8068b6f70fcd5d12b9 = L.circleMarker(
[39.3912441, -76.6191961],
{"bubblingMouseEvents": true, "color": "#FF5F1F", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF5F1F", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_032782054a583830d906dfd7b87b0572 = L.popup({
"maxWidth": "100%",
});
var html_99d301ec6692ba9f90dcd8fca9a1a328 = $(`<div id="html_99d301ec6692ba9f90dcd8fca9a1a328" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 24005490605<br><b>Poverty Rate:</b> 88.0%<br><b>Store Density:</b> 4 within 5km<br><b>Health Anomaly:</b> 32.2%</div>`)[0];
popup_032782054a583830d906dfd7b87b0572.setContent(html_99d301ec6692ba9f90dcd8fca9a1a328);
circle_marker_5775a1bc0180ad8068b6f70fcd5d12b9.bindPopup(popup_032782054a583830d906dfd7b87b0572)
;
var circle_marker_b02958be7852fe0a3cf1bdc738569b62 = L.circleMarker(
[38.3080395, -104.5763649],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_1b4cfa00d12c848bdef678a5799e78ac = L.popup({
"maxWidth": "100%",
});
var html_bfd88f6730dcac8c28637a8bc985aa67 = $(`<div id="html_bfd88f6730dcac8c28637a8bc985aa67" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 08101000903<br><b>Poverty Rate:</b> 87.8%<br><b>Store Density:</b> 6 within 5km<br><b>Health Anomaly:</b> 5.5%</div>`)[0];
popup_1b4cfa00d12c848bdef678a5799e78ac.setContent(html_bfd88f6730dcac8c28637a8bc985aa67);
circle_marker_b02958be7852fe0a3cf1bdc738569b62.bindPopup(popup_1b4cfa00d12c848bdef678a5799e78ac)
;
var circle_marker_8ac2b794873c2882d77200571ab3e347 = L.circleMarker(
[39.5070402, -84.7345237],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_8fa7582fd9199617f66f0218daa34f15 = L.popup({
"maxWidth": "100%",
});
var html_be73c61e2a79db873a7ea1e2c48d02c1 = $(`<div id="html_be73c61e2a79db873a7ea1e2c48d02c1" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 39017010104<br><b>Poverty Rate:</b> 87.3%<br><b>Store Density:</b> 1 within 5km<br><b>Health Anomaly:</b> 6.7%</div>`)[0];
popup_8fa7582fd9199617f66f0218daa34f15.setContent(html_be73c61e2a79db873a7ea1e2c48d02c1);
circle_marker_8ac2b794873c2882d77200571ab3e347.bindPopup(popup_8fa7582fd9199617f66f0218daa34f15)
;
var circle_marker_451a03aaa4597a92caa3e42f84f50d77 = L.circleMarker(
[30.1998047, -97.6449201],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_cb3ee8a16e4ac114ad700916fb97ab98 = L.popup({
"maxWidth": "100%",
});
var html_2eabd36899c6000536c745fabf3b2ab5 = $(`<div id="html_2eabd36899c6000536c745fabf3b2ab5" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 48453002319<br><b>Poverty Rate:</b> 87.1%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 15.3%</div>`)[0];
popup_cb3ee8a16e4ac114ad700916fb97ab98.setContent(html_2eabd36899c6000536c745fabf3b2ab5);
circle_marker_451a03aaa4597a92caa3e42f84f50d77.bindPopup(popup_cb3ee8a16e4ac114ad700916fb97ab98)
;
var circle_marker_123014b87dc04fe6bb034ccc400b03a6 = L.circleMarker(
[40.7888821, -73.9219304],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_c1aa43c13a5e0ae6716428706bb22f55 = L.popup({
"maxWidth": "100%",
});
var html_699c8e844a726d3d9abc29927db672af = $(`<div id="html_699c8e844a726d3d9abc29927db672af" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 36061024000<br><b>Poverty Rate:</b> 86.0%<br><b>Store Density:</b> 10 within 5km<br><b>Health Anomaly:</b> 66.3%</div>`)[0];
popup_c1aa43c13a5e0ae6716428706bb22f55.setContent(html_699c8e844a726d3d9abc29927db672af);
circle_marker_123014b87dc04fe6bb034ccc400b03a6.bindPopup(popup_c1aa43c13a5e0ae6716428706bb22f55)
;
var circle_marker_936dcffa706505a10aa5b3ad7a03c1c9 = L.circleMarker(
[43.0734025, -89.3954294],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_d2ff7dcbd685533b118749d16715ec59 = L.popup({
"maxWidth": "100%",
});
var html_84151f60aa45a55c77abd9d3d124b19c = $(`<div id="html_84151f60aa45a55c77abd9d3d124b19c" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 55025001603<br><b>Poverty Rate:</b> 86.0%<br><b>Store Density:</b> 1 within 5km<br><b>Health Anomaly:</b> 65.0%</div>`)[0];
popup_d2ff7dcbd685533b118749d16715ec59.setContent(html_84151f60aa45a55c77abd9d3d124b19c);
circle_marker_936dcffa706505a10aa5b3ad7a03c1c9.bindPopup(popup_d2ff7dcbd685533b118749d16715ec59)
;
var circle_marker_d9c4bb6adf9140583e38e79921d3ac77 = L.circleMarker(
[34.0911354, -80.9836595],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_d6bba7c0cfaea8a513a1171318a27044 = L.popup({
"maxWidth": "100%",
});
var html_3472e08a73b29415e2619d3c7f87ca5c = $(`<div id="html_3472e08a73b29415e2619d3c7f87ca5c" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 45079010806<br><b>Poverty Rate:</b> 85.2%<br><b>Store Density:</b> 6 within 5km<br><b>Health Anomaly:</b> 14.9%</div>`)[0];
popup_d6bba7c0cfaea8a513a1171318a27044.setContent(html_3472e08a73b29415e2619d3c7f87ca5c);
circle_marker_d9c4bb6adf9140583e38e79921d3ac77.bindPopup(popup_d6bba7c0cfaea8a513a1171318a27044)
;
var circle_marker_842d1bde3cae8be5a7c819389a1ab1fb = L.circleMarker(
[33.9601681, -83.3742173],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_134107c20413b12230dd7ff336571ed5 = L.popup({
"maxWidth": "100%",
});
var html_819276819d6b798d50a87958a547cc63 = $(`<div id="html_819276819d6b798d50a87958a547cc63" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 13059000100<br><b>Poverty Rate:</b> 84.9%<br><b>Store Density:</b> 5 within 5km<br><b>Health Anomaly:</b> 23.0%</div>`)[0];
popup_134107c20413b12230dd7ff336571ed5.setContent(html_819276819d6b798d50a87958a547cc63);
circle_marker_842d1bde3cae8be5a7c819389a1ab1fb.bindPopup(popup_134107c20413b12230dd7ff336571ed5)
;
var circle_marker_541621ef564c41066d59e3168f33ad7c = L.circleMarker(
[29.9596622, -90.0737231],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_4f62e3d8a8fa68e78b931e75bd5eb642 = L.popup({
"maxWidth": "100%",
});
var html_df5fc7a414bad80ca70d9773f7a2c1b9 = $(`<div id="html_df5fc7a414bad80ca70d9773f7a2c1b9" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 22071004800<br><b>Poverty Rate:</b> 84.4%<br><b>Store Density:</b> 9 within 5km<br><b>Health Anomaly:</b> 48.2%</div>`)[0];
popup_4f62e3d8a8fa68e78b931e75bd5eb642.setContent(html_df5fc7a414bad80ca70d9773f7a2c1b9);
circle_marker_541621ef564c41066d59e3168f33ad7c.bindPopup(popup_4f62e3d8a8fa68e78b931e75bd5eb642)
;
var circle_marker_1c60537519ffabd46b63bef76b5c6225 = L.circleMarker(
[32.5955157, -85.4933037],
{"bubblingMouseEvents": true, "color": "#FF5F1F", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF5F1F", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_c830d19d55b5789d1743c70c5a3e6523 = L.popup({
"maxWidth": "100%",
});
var html_169fdbc2b6fccb6661ca7287372e557c = $(`<div id="html_169fdbc2b6fccb6661ca7287372e557c" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 01081040700<br><b>Poverty Rate:</b> 84.3%<br><b>Store Density:</b> 2 within 5km<br><b>Health Anomaly:</b> 32.2%</div>`)[0];
popup_c830d19d55b5789d1743c70c5a3e6523.setContent(html_169fdbc2b6fccb6661ca7287372e557c);
circle_marker_1c60537519ffabd46b63bef76b5c6225.bindPopup(popup_c830d19d55b5789d1743c70c5a3e6523)
;
var circle_marker_f8787901292625f467863055827abca4 = L.circleMarker(
[36.0014213, -78.9405675],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_4ca25f5919eb44a18d165d34321f4a62 = L.popup({
"maxWidth": "100%",
});
var html_d5c9810a57a098924b7181ae2db00592 = $(`<div id="html_d5c9810a57a098924b7181ae2db00592" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 37063001501<br><b>Poverty Rate:</b> 83.7%<br><b>Store Density:</b> 5 within 5km<br><b>Health Anomaly:</b> 66.0%</div>`)[0];
popup_4ca25f5919eb44a18d165d34321f4a62.setContent(html_d5c9810a57a098924b7181ae2db00592);
circle_marker_f8787901292625f467863055827abca4.bindPopup(popup_4ca25f5919eb44a18d165d34321f4a62)
;
var circle_marker_08827ca59a3fd099deb699f10916c6bf = L.circleMarker(
[41.4891647, -81.6632156],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_bd7840b9daa58d219b6c73f1ffee810d = L.popup({
"maxWidth": "100%",
});
var html_493a1d9c8b09c09a1a451d38a509aa95 = $(`<div id="html_493a1d9c8b09c09a1a451d38a509aa95" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 39035109701<br><b>Poverty Rate:</b> 83.1%<br><b>Store Density:</b> 12 within 5km<br><b>Health Anomaly:</b> 16.1%</div>`)[0];
popup_bd7840b9daa58d219b6c73f1ffee810d.setContent(html_493a1d9c8b09c09a1a451d38a509aa95);
circle_marker_08827ca59a3fd099deb699f10916c6bf.bindPopup(popup_bd7840b9daa58d219b6c73f1ffee810d)
;
var circle_marker_ebb8aeeb8d83883738bfade6e9c8aada = L.circleMarker(
[40.1108444, -88.2362187],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_8d37a73b0b94939a9ad6d5f5181999a8 = L.popup({
"maxWidth": "100%",
});
var html_846d410e8d656bc2ee34c47779d4be23 = $(`<div id="html_846d410e8d656bc2ee34c47779d4be23" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 17019000301<br><b>Poverty Rate:</b> 82.8%<br><b>Store Density:</b> 6 within 5km<br><b>Health Anomaly:</b> 5.3%</div>`)[0];
popup_8d37a73b0b94939a9ad6d5f5181999a8.setContent(html_846d410e8d656bc2ee34c47779d4be23);
circle_marker_ebb8aeeb8d83883738bfade6e9c8aada.bindPopup(popup_8d37a73b0b94939a9ad6d5f5181999a8)
;
var circle_marker_118bfa54d484624d0dbf4aee76c9a00c = L.circleMarker(
[36.8569038, -76.2829062],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 21, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_e1f60f7389c8419ce11be30e06eefd45 = L.popup({
"maxWidth": "100%",
});
var html_49fb01971e66e3cbd75117dd5a1ff732 = $(`<div id="html_49fb01971e66e3cbd75117dd5a1ff732" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 51710004100<br><b>Poverty Rate:</b> 82.8%<br><b>Store Density:</b> 17 within 5km<br><b>Health Anomaly:</b> 42.9%</div>`)[0];
popup_e1f60f7389c8419ce11be30e06eefd45.setContent(html_49fb01971e66e3cbd75117dd5a1ff732);
circle_marker_118bfa54d484624d0dbf4aee76c9a00c.bindPopup(popup_e1f60f7389c8419ce11be30e06eefd45)
;
var circle_marker_8833a69ee38d3397ebd066ca88893ca7 = L.circleMarker(
[41.4874246, -81.6552835],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 19, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_1ec56c1897ad11d626f680311206de8e = L.popup({
"maxWidth": "100%",
});
var html_a6523b908bf302dc96304409e170a000 = $(`<div id="html_a6523b908bf302dc96304409e170a000" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 39035109801<br><b>Poverty Rate:</b> 82.7%<br><b>Store Density:</b> 15 within 5km<br><b>Health Anomaly:</b> 48.5%</div>`)[0];
popup_1ec56c1897ad11d626f680311206de8e.setContent(html_a6523b908bf302dc96304409e170a000);
circle_marker_8833a69ee38d3397ebd066ca88893ca7.bindPopup(popup_1ec56c1897ad11d626f680311206de8e)
;
var circle_marker_da38702f8ace7e1313e3cea564ee4ff4 = L.circleMarker(
[34.0209296, -118.2856599],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_585b0d4e7dfda360f459fcb0d39d3792 = L.popup({
"maxWidth": "100%",
});
var html_2b9cded4081bdf333f74fcb21fc7e9a5 = $(`<div id="html_2b9cded4081bdf333f74fcb21fc7e9a5" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 06037222700<br><b>Poverty Rate:</b> 82.4%<br><b>Store Density:</b> 5 within 5km<br><b>Health Anomaly:</b> 2.1%</div>`)[0];
popup_585b0d4e7dfda360f459fcb0d39d3792.setContent(html_2b9cded4081bdf333f74fcb21fc7e9a5);
circle_marker_da38702f8ace7e1313e3cea564ee4ff4.bindPopup(popup_585b0d4e7dfda360f459fcb0d39d3792)
;
var circle_marker_0afeed4b32c364ec641f369da00601fe = L.circleMarker(
[43.0705626, -89.4073908],
{"bubblingMouseEvents": true, "color": "#FFC000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FFC000", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_f7375e68e339b8c781929578ce1372f6 = L.popup({
"maxWidth": "100%",
});
var html_8a1d5073cb65b7a71d08648e841eb430 = $(`<div id="html_8a1d5073cb65b7a71d08648e841eb430" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 55025001101<br><b>Poverty Rate:</b> 82.1%<br><b>Store Density:</b> 0 within 5km<br><b>Health Anomaly:</b> 46.5%</div>`)[0];
popup_f7375e68e339b8c781929578ce1372f6.setContent(html_8a1d5073cb65b7a71d08648e841eb430);
circle_marker_0afeed4b32c364ec641f369da00601fe.bindPopup(popup_f7375e68e339b8c781929578ce1372f6)
;
var circle_marker_361c78a39006e273ed3ec611c941fa21 = L.circleMarker(
[40.0360901, -75.0053457],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_9362f24396172b9963ffcf61f61e1d21 = L.popup({
"maxWidth": "100%",
});
var html_1dce6d949dee1596d32336c9084d8289 = $(`<div id="html_1dce6d949dee1596d32336c9084d8289" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 42101989100<br><b>Poverty Rate:</b> 82.0%<br><b>Store Density:</b> 14 within 5km<br><b>Health Anomaly:</b> 69.5%</div>`)[0];
popup_9362f24396172b9963ffcf61f61e1d21.setContent(html_1dce6d949dee1596d32336c9084d8289);
circle_marker_361c78a39006e273ed3ec611c941fa21.bindPopup(popup_9362f24396172b9963ffcf61f61e1d21)
;
var circle_marker_14e868e7d2b360b42ad02265473ebecc = L.circleMarker(
[36.8188106, -119.74232],
{"bubblingMouseEvents": true, "color": "#FF004D", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#FF004D", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11, "stroke": true, "weight": 3}
).addTo(map_f3e207946ace3de8c6c6f585435d6583);
var popup_6127386cef71cf03f1d4a851cec54d0b = L.popup({
"maxWidth": "100%",
});
var html_4f665b4656decca8a7d00dda1a96a3c7 = $(`<div id="html_4f665b4656decca8a7d00dda1a96a3c7" style="width: 100.0%; height: 100.0%;"><b>Tract FIPS:</b> 06019005408<br><b>Poverty Rate:</b> 81.8%<br><b>Store Density:</b> 7 within 5km<br><b>Health Anomaly:</b> 3.0%</div>`)[0];
popup_6127386cef71cf03f1d4a851cec54d0b.setContent(html_4f665b4656decca8a7d00dda1a96a3c7);