-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhigh_food_access_risk_counties_marker_map.html
6228 lines (3018 loc) · 252 KB
/
high_food_access_risk_counties_marker_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>
<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-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/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_e246393507a8cdf8ce925e52f41ce13c {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_e246393507a8cdf8ce925e52f41ce13c" ></div>
</body>
<script>
var map_e246393507a8cdf8ce925e52f41ce13c = L.map(
"map_e246393507a8cdf8ce925e52f41ce13c",
{
center: [37.8, -96.0],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_4517762864d90b3420d4e07dc3db71b2 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_4517762864d90b3420d4e07dc3db71b2.addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var marker_d91260092fe350761015efa0736fa2ab = L.marker(
[46.2946377, -123.4244583],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_a6504a40a32320a470f1250e51d5fd00 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_d91260092fe350761015efa0736fa2ab.setIcon(icon_a6504a40a32320a470f1250e51d5fd00);
var popup_0a6f8f91b3d003cf71a49171b61f2673 = L.popup({"maxWidth": "100%"});
var html_c3f7ca23e796045c524662b02942227f = $(`<div id="html_c3f7ca23e796045c524662b02942227f" style="width: 100.0%; height: 100.0%;">Wahkiakum, WA: High Food Access Risk</div>`)[0];
popup_0a6f8f91b3d003cf71a49171b61f2673.setContent(html_c3f7ca23e796045c524662b02942227f);
marker_d91260092fe350761015efa0736fa2ab.bindPopup(popup_0a6f8f91b3d003cf71a49171b61f2673)
;
var marker_8631192fa88b4eaf4e91f1f83f80fbda = L.marker(
[39.5769252, -120.5219926],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_4d71e19f2cf37fbb982a62319f4a1ea4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_8631192fa88b4eaf4e91f1f83f80fbda.setIcon(icon_4d71e19f2cf37fbb982a62319f4a1ea4);
var popup_d590eefb8658f9ac9414b5bb4fa9d479 = L.popup({"maxWidth": "100%"});
var html_e7e7623f968d3908cf29371088404efb = $(`<div id="html_e7e7623f968d3908cf29371088404efb" style="width: 100.0%; height: 100.0%;">Sierra, CA: High Food Access Risk</div>`)[0];
popup_d590eefb8658f9ac9414b5bb4fa9d479.setContent(html_e7e7623f968d3908cf29371088404efb);
marker_8631192fa88b4eaf4e91f1f83f80fbda.bindPopup(popup_d590eefb8658f9ac9414b5bb4fa9d479)
;
var marker_f9b1a500f3eb71a381ae7c1af37244e9 = L.marker(
[34.964179, -101.3566363],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_669295feb9108d5f3748553242988eda = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_f9b1a500f3eb71a381ae7c1af37244e9.setIcon(icon_669295feb9108d5f3748553242988eda);
var popup_b316195cb3696c4cdcb6aede8e1a6824 = L.popup({"maxWidth": "100%"});
var html_e5197400ba3d8da2e74d0ebce39c9858 = $(`<div id="html_e5197400ba3d8da2e74d0ebce39c9858" style="width: 100.0%; height: 100.0%;">Armstrong, TX: High Food Access Risk</div>`)[0];
popup_b316195cb3696c4cdcb6aede8e1a6824.setContent(html_e5197400ba3d8da2e74d0ebce39c9858);
marker_f9b1a500f3eb71a381ae7c1af37244e9.bindPopup(popup_b316195cb3696c4cdcb6aede8e1a6824)
;
var marker_94f1161d8724d994704c77457f40dda2 = L.marker(
[41.6275976, -111.2402269],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_9ea5fc6b8e615407f717df049fb913ba = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_94f1161d8724d994704c77457f40dda2.setIcon(icon_9ea5fc6b8e615407f717df049fb913ba);
var popup_9b4eed5bcac606c7a59e1976e2c29819 = L.popup({"maxWidth": "100%"});
var html_b5f9ba70657ef72e77d492bdc1c29e50 = $(`<div id="html_b5f9ba70657ef72e77d492bdc1c29e50" style="width: 100.0%; height: 100.0%;">Rich, UT: High Food Access Risk</div>`)[0];
popup_9b4eed5bcac606c7a59e1976e2c29819.setContent(html_b5f9ba70657ef72e77d492bdc1c29e50);
marker_94f1161d8724d994704c77457f40dda2.bindPopup(popup_9b4eed5bcac606c7a59e1976e2c29819)
;
var marker_2ecda66a12c5dfb52fc866737a9cbd65 = L.marker(
[33.9016208, -108.3919284],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_d77ba5583c8492e63f8698aabb345551 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_2ecda66a12c5dfb52fc866737a9cbd65.setIcon(icon_d77ba5583c8492e63f8698aabb345551);
var popup_1066dcadd04f4075b3fb235d141cdc5b = L.popup({"maxWidth": "100%"});
var html_04a3a43cba46b3759a5a4735d42372b3 = $(`<div id="html_04a3a43cba46b3759a5a4735d42372b3" style="width: 100.0%; height: 100.0%;">Catron, NM: High Food Access Risk</div>`)[0];
popup_1066dcadd04f4075b3fb235d141cdc5b.setContent(html_04a3a43cba46b3759a5a4735d42372b3);
marker_2ecda66a12c5dfb52fc866737a9cbd65.bindPopup(popup_1066dcadd04f4075b3fb235d141cdc5b)
;
var marker_7b9396923225c0dd5ffa930f33838b3e = L.marker(
[39.7885021, -95.1472253],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_b6f560b3abb60fd28d9a51c1cdc2bae4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_7b9396923225c0dd5ffa930f33838b3e.setIcon(icon_b6f560b3abb60fd28d9a51c1cdc2bae4);
var popup_c35f9e3c6269db550cf046c94784f737 = L.popup({"maxWidth": "100%"});
var html_310adb4ab945660c1675f3260071cd29 = $(`<div id="html_310adb4ab945660c1675f3260071cd29" style="width: 100.0%; height: 100.0%;">Doniphan, KS: High Food Access Risk</div>`)[0];
popup_c35f9e3c6269db550cf046c94784f737.setContent(html_310adb4ab945660c1675f3260071cd29);
marker_7b9396923225c0dd5ffa930f33838b3e.bindPopup(popup_c35f9e3c6269db550cf046c94784f737)
;
var marker_35db7f19182260c7c97898a2afa0fb89 = L.marker(
[44.0124293, -96.6760536],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_38eb94a0ec14a888fc8a8e1a0e4e09f4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_35db7f19182260c7c97898a2afa0fb89.setIcon(icon_38eb94a0ec14a888fc8a8e1a0e4e09f4);
var popup_8a21409581a4b549baeeb62656a01a6b = L.popup({"maxWidth": "100%"});
var html_cc7a623c7c7b9e9f4ac15a6462db4f36 = $(`<div id="html_cc7a623c7c7b9e9f4ac15a6462db4f36" style="width: 100.0%; height: 100.0%;">Moody, SD: High Food Access Risk</div>`)[0];
popup_8a21409581a4b549baeeb62656a01a6b.setContent(html_cc7a623c7c7b9e9f4ac15a6462db4f36);
marker_35db7f19182260c7c97898a2afa0fb89.bindPopup(popup_8a21409581a4b549baeeb62656a01a6b)
;
var marker_a9013a87a5180d52591ad13b0bbec915 = L.marker(
[42.8944477, -98.7730221],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_7b73963854579c1f2d7aba23a7c8110c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_a9013a87a5180d52591ad13b0bbec915.setIcon(icon_7b73963854579c1f2d7aba23a7c8110c);
var popup_14a773897258f355265c9e4b91886db7 = L.popup({"maxWidth": "100%"});
var html_d436a49d68b42c9bd6941d9eb7b5e7e5 = $(`<div id="html_d436a49d68b42c9bd6941d9eb7b5e7e5" style="width: 100.0%; height: 100.0%;">Boyd, NE: High Food Access Risk</div>`)[0];
popup_14a773897258f355265c9e4b91886db7.setContent(html_d436a49d68b42c9bd6941d9eb7b5e7e5);
marker_a9013a87a5180d52591ad13b0bbec915.bindPopup(popup_14a773897258f355265c9e4b91886db7)
;
var marker_144de8baf663a23d07dbf5745b3456ab = L.marker(
[43.3915064, -98.3584331],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_874cce30be552e8774dc89ef2646e1c9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_144de8baf663a23d07dbf5745b3456ab.setIcon(icon_874cce30be552e8774dc89ef2646e1c9);
var popup_73803dcdc7dc76ba9f84303dd21dfd4f = L.popup({"maxWidth": "100%"});
var html_81f753a1d127d5cf3b7bb5fa0d507bd6 = $(`<div id="html_81f753a1d127d5cf3b7bb5fa0d507bd6" style="width: 100.0%; height: 100.0%;">Douglas, SD: High Food Access Risk</div>`)[0];
popup_73803dcdc7dc76ba9f84303dd21dfd4f.setContent(html_81f753a1d127d5cf3b7bb5fa0d507bd6);
marker_144de8baf663a23d07dbf5745b3456ab.bindPopup(popup_73803dcdc7dc76ba9f84303dd21dfd4f)
;
var marker_e2292d7625343399db111621d29db137 = L.marker(
[41.8557296, -100.5247028],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_f120c4a0006961d26f2cfdee78a7093c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_e2292d7625343399db111621d29db137.setIcon(icon_f120c4a0006961d26f2cfdee78a7093c);
var popup_8cd1c839a534774701fd024f544d53c8 = L.popup({"maxWidth": "100%"});
var html_11b97a90449d7e480e86e26960cf1fd1 = $(`<div id="html_11b97a90449d7e480e86e26960cf1fd1" style="width: 100.0%; height: 100.0%;">Thomas, NE: High Food Access Risk</div>`)[0];
popup_8cd1c839a534774701fd024f544d53c8.setContent(html_11b97a90449d7e480e86e26960cf1fd1);
marker_e2292d7625343399db111621d29db137.bindPopup(popup_8cd1c839a534774701fd024f544d53c8)
;
var marker_672df755291dd00994fe80bc7394a88e = L.marker(
[46.1106181, -101.061284],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_03c01da4402bfd895ea4cdf8a65f6e1a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_672df755291dd00994fe80bc7394a88e.setIcon(icon_03c01da4402bfd895ea4cdf8a65f6e1a);
var popup_2f0dcc0a9f555a4e43169efc39da1150 = L.popup({"maxWidth": "100%"});
var html_92dc21f8b514868e69ba539417a1493a = $(`<div id="html_92dc21f8b514868e69ba539417a1493a" style="width: 100.0%; height: 100.0%;">Sioux, ND: High Food Access Risk</div>`)[0];
popup_2f0dcc0a9f555a4e43169efc39da1150.setContent(html_92dc21f8b514868e69ba539417a1493a);
marker_672df755291dd00994fe80bc7394a88e.bindPopup(popup_2f0dcc0a9f555a4e43169efc39da1150)
;
var marker_33ecf0bfcc7ffef73eba4495b55ae431 = L.marker(
[39.59818, -80.6353994],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_9bdc33b5739fa30f72e10a67ec7bd721 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_33ecf0bfcc7ffef73eba4495b55ae431.setIcon(icon_9bdc33b5739fa30f72e10a67ec7bd721);
var popup_82d8f9a77605885685f84cd0705e120e = L.popup({"maxWidth": "100%"});
var html_a3232e40ad6ae4d91290d2cd4cad6521 = $(`<div id="html_a3232e40ad6ae4d91290d2cd4cad6521" style="width: 100.0%; height: 100.0%;">Wetzel, WV: High Food Access Risk</div>`)[0];
popup_82d8f9a77605885685f84cd0705e120e.setContent(html_a3232e40ad6ae4d91290d2cd4cad6521);
marker_33ecf0bfcc7ffef73eba4495b55ae431.bindPopup(popup_82d8f9a77605885685f84cd0705e120e)
;
var marker_ac9306437c726c00b6a65eb874a06f93 = L.marker(
[47.8868343, -110.4362004],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_d00b71af35dca29ddd3afbf651b2e754 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_ac9306437c726c00b6a65eb874a06f93.setIcon(icon_d00b71af35dca29ddd3afbf651b2e754);
var popup_30e42f1a4c892679ab6e7e73c09ee62a = L.popup({"maxWidth": "100%"});
var html_3c2d60a3a114eae1ca64d293151dbe37 = $(`<div id="html_3c2d60a3a114eae1ca64d293151dbe37" style="width: 100.0%; height: 100.0%;">Chouteau, MT: High Food Access Risk</div>`)[0];
popup_30e42f1a4c892679ab6e7e73c09ee62a.setContent(html_3c2d60a3a114eae1ca64d293151dbe37);
marker_ac9306437c726c00b6a65eb874a06f93.bindPopup(popup_30e42f1a4c892679ab6e7e73c09ee62a)
;
var marker_b0a0e768e477ecf272f98135c985a692 = L.marker(
[37.9952438, -101.7936887],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_0370eda0a13721898736be94c5f18bb3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_b0a0e768e477ecf272f98135c985a692.setIcon(icon_0370eda0a13721898736be94c5f18bb3);
var popup_acf8979ae6497f018c833ea7b8e250a6 = L.popup({"maxWidth": "100%"});
var html_2c655dac64a8fc9cf7cea7f62ebb55f7 = $(`<div id="html_2c655dac64a8fc9cf7cea7f62ebb55f7" style="width: 100.0%; height: 100.0%;">Hamilton, KS: High Food Access Risk</div>`)[0];
popup_acf8979ae6497f018c833ea7b8e250a6.setContent(html_2c655dac64a8fc9cf7cea7f62ebb55f7);
marker_b0a0e768e477ecf272f98135c985a692.bindPopup(popup_acf8979ae6497f018c833ea7b8e250a6)
;
var marker_9610003f5d58d1ea4a3f97429aafaccc = L.marker(
[33.559319, -82.8752721],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_451830842c971b6a727a88889c42a65c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_9610003f5d58d1ea4a3f97429aafaccc.setIcon(icon_451830842c971b6a727a88889c42a65c);
var popup_2275058fceb88cabd85a4819bb5fe8a5 = L.popup({"maxWidth": "100%"});
var html_8381c7c09b904ca75d5757824ab0d377 = $(`<div id="html_8381c7c09b904ca75d5757824ab0d377" style="width: 100.0%; height: 100.0%;">Taliaferro, GA: High Food Access Risk</div>`)[0];
popup_2275058fceb88cabd85a4819bb5fe8a5.setContent(html_8381c7c09b904ca75d5757824ab0d377);
marker_9610003f5d58d1ea4a3f97429aafaccc.bindPopup(popup_2275058fceb88cabd85a4819bb5fe8a5)
;
var marker_9c3b7065c4bdf68d6ac7c50ae97dcb51 = L.marker(
[46.5856996, -110.9217396],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_cdd8c5e393f457e3e0124d157d09d15d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_9c3b7065c4bdf68d6ac7c50ae97dcb51.setIcon(icon_cdd8c5e393f457e3e0124d157d09d15d);
var popup_536efbc639184d68b671ed022dacf211 = L.popup({"maxWidth": "100%"});
var html_fb38a63052fde03e24fa4262d0da9f46 = $(`<div id="html_fb38a63052fde03e24fa4262d0da9f46" style="width: 100.0%; height: 100.0%;">Meagher, MT: High Food Access Risk</div>`)[0];
popup_536efbc639184d68b671ed022dacf211.setContent(html_fb38a63052fde03e24fa4262d0da9f46);
marker_9c3b7065c4bdf68d6ac7c50ae97dcb51.bindPopup(popup_536efbc639184d68b671ed022dacf211)
;
var marker_d80566b613993bb56c949d0c55fc5038 = L.marker(
[32.7501361, -88.6256306],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_9f42c5e0ad05c1c44cca27e70e2138c5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_d80566b613993bb56c949d0c55fc5038.setIcon(icon_9f42c5e0ad05c1c44cca27e70e2138c5);
var popup_f87c082252efb42ee8a9524cf31c839e = L.popup({"maxWidth": "100%"});
var html_5c48240b38e26a053c43b93865dbbc75 = $(`<div id="html_5c48240b38e26a053c43b93865dbbc75" style="width: 100.0%; height: 100.0%;">Kemper, MS: High Food Access Risk</div>`)[0];
popup_f87c082252efb42ee8a9524cf31c839e.setContent(html_5c48240b38e26a053c43b93865dbbc75);
marker_d80566b613993bb56c949d0c55fc5038.bindPopup(popup_f87c082252efb42ee8a9524cf31c839e)
;
var marker_53323b91fd4df827232b15f18990baff = L.marker(
[38.9266259, -101.7711031],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_2c3ca9ea4f01c1fe1c5d66e4d5557f75 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_53323b91fd4df827232b15f18990baff.setIcon(icon_2c3ca9ea4f01c1fe1c5d66e4d5557f75);
var popup_5178293c620dbd3e0b8a02b6ad318199 = L.popup({"maxWidth": "100%"});
var html_06d07ea0117a656b580f5668af0c419f = $(`<div id="html_06d07ea0117a656b580f5668af0c419f" style="width: 100.0%; height: 100.0%;">Wallace, KS: High Food Access Risk</div>`)[0];
popup_5178293c620dbd3e0b8a02b6ad318199.setContent(html_06d07ea0117a656b580f5668af0c419f);
marker_53323b91fd4df827232b15f18990baff.bindPopup(popup_5178293c620dbd3e0b8a02b6ad318199)
;
var marker_5b7a761f9e0cf220d9030cf92c5dc7b0 = L.marker(
[37.7810492, -107.6702567],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_47edcfe7b9b7b9bde91f831e14f2ec44 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_5b7a761f9e0cf220d9030cf92c5dc7b0.setIcon(icon_47edcfe7b9b7b9bde91f831e14f2ec44);
var popup_8c125fb955c49fe05e656f481fb7edba = L.popup({"maxWidth": "100%"});
var html_675f3c5e279c2854dcf9a8aa9c4aca92 = $(`<div id="html_675f3c5e279c2854dcf9a8aa9c4aca92" style="width: 100.0%; height: 100.0%;">San Juan, CO: High Food Access Risk</div>`)[0];
popup_8c125fb955c49fe05e656f481fb7edba.setContent(html_675f3c5e279c2854dcf9a8aa9c4aca92);
marker_5b7a761f9e0cf220d9030cf92c5dc7b0.bindPopup(popup_8c125fb955c49fe05e656f481fb7edba)
;
var marker_eea48dc60ff2bcf1f9929ee677b1d47e = L.marker(
[67.0050655, -160.0210864],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_c6b33825617f9203e98c186abc07f49b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_eea48dc60ff2bcf1f9929ee677b1d47e.setIcon(icon_c6b33825617f9203e98c186abc07f49b);
var popup_857ffca186cda8659dab7d1d3921c496 = L.popup({"maxWidth": "100%"});
var html_ea11b1c6faaf42422e0350465a6c3dd9 = $(`<div id="html_ea11b1c6faaf42422e0350465a6c3dd9" style="width: 100.0%; height: 100.0%;">Northwest Arctic, AK: High Food Access Risk</div>`)[0];
popup_857ffca186cda8659dab7d1d3921c496.setContent(html_ea11b1c6faaf42422e0350465a6c3dd9);
marker_eea48dc60ff2bcf1f9929ee677b1d47e.bindPopup(popup_857ffca186cda8659dab7d1d3921c496)
;
var marker_be24305e8af7504d501bb5c23515afca = L.marker(
[36.8003504, -99.6628052],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_f83d9ae06e339a47f6aed7db828664af = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_be24305e8af7504d501bb5c23515afca.setIcon(icon_f83d9ae06e339a47f6aed7db828664af);
var popup_375d18b2e49f858a160fedb686aa7eb4 = L.popup({"maxWidth": "100%"});
var html_442256665c2b069139d3946e612a9de6 = $(`<div id="html_442256665c2b069139d3946e612a9de6" style="width: 100.0%; height: 100.0%;">Harper, OK: High Food Access Risk</div>`)[0];
popup_375d18b2e49f858a160fedb686aa7eb4.setContent(html_442256665c2b069139d3946e612a9de6);
marker_be24305e8af7504d501bb5c23515afca.bindPopup(popup_375d18b2e49f858a160fedb686aa7eb4)
;
var marker_6f05c0979ac281519fe7492718828259 = L.marker(
[32.8444965, -87.9642005],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_e554232b3dbcd2a517c28990ca971b64 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_6f05c0979ac281519fe7492718828259.setIcon(icon_e554232b3dbcd2a517c28990ca971b64);
var popup_0689e863d82df2b0c2bb624bde073556 = L.popup({"maxWidth": "100%"});
var html_1151cbe5721aac56f2388082e7e69343 = $(`<div id="html_1151cbe5721aac56f2388082e7e69343" style="width: 100.0%; height: 100.0%;">Greene, AL: High Food Access Risk</div>`)[0];
popup_0689e863d82df2b0c2bb624bde073556.setContent(html_1151cbe5721aac56f2388082e7e69343);
marker_6f05c0979ac281519fe7492718828259.bindPopup(popup_0689e863d82df2b0c2bb624bde073556)
;
var marker_e829cdbdb7f63d7287e8d00b618f42a2 = L.marker(
[44.290218, -112.3546128],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_f67c3431ed201065687f609ddb9b2829 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_e829cdbdb7f63d7287e8d00b618f42a2.setIcon(icon_f67c3431ed201065687f609ddb9b2829);
var popup_f36c9e8f5526f4793eb76615f50eac15 = L.popup({"maxWidth": "100%"});
var html_3db7a40ab63442b73165c51da4e9d4b6 = $(`<div id="html_3db7a40ab63442b73165c51da4e9d4b6" style="width: 100.0%; height: 100.0%;">Clark, ID: High Food Access Risk</div>`)[0];
popup_f36c9e8f5526f4793eb76615f50eac15.setContent(html_3db7a40ab63442b73165c51da4e9d4b6);
marker_e829cdbdb7f63d7287e8d00b618f42a2.bindPopup(popup_f36c9e8f5526f4793eb76615f50eac15)
;
var marker_f259727eda11deb8771b96f3b83bf9f5 = L.marker(
[48.7864534, -102.5200874],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_7d1ea9277f0b2e5eee047c33015c8631 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_f259727eda11deb8771b96f3b83bf9f5.setIcon(icon_7d1ea9277f0b2e5eee047c33015c8631);
var popup_859ab29214728d3337bd8892739e3146 = L.popup({"maxWidth": "100%"});
var html_a864917c8d76050408766659f8cc6592 = $(`<div id="html_a864917c8d76050408766659f8cc6592" style="width: 100.0%; height: 100.0%;">Burke, ND: High Food Access Risk</div>`)[0];
popup_859ab29214728d3337bd8892739e3146.setContent(html_a864917c8d76050408766659f8cc6592);
marker_f259727eda11deb8771b96f3b83bf9f5.bindPopup(popup_859ab29214728d3337bd8892739e3146)
;
var marker_620b99e5dd6c34540ae7558fdb58cb96 = L.marker(
[42.8754803, -99.7183514],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_536c2773e2b675cefb54a0afa30c25ed = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_620b99e5dd6c34540ae7558fdb58cb96.setIcon(icon_536c2773e2b675cefb54a0afa30c25ed);
var popup_7a97e24ca8454ae8db1eaed61c5c6640 = L.popup({"maxWidth": "100%"});
var html_ef992b2a211524d22efc5afc797a57c5 = $(`<div id="html_ef992b2a211524d22efc5afc797a57c5" style="width: 100.0%; height: 100.0%;">Keya Paha, NE: High Food Access Risk</div>`)[0];
popup_7a97e24ca8454ae8db1eaed61c5c6640.setContent(html_ef992b2a211524d22efc5afc797a57c5);
marker_620b99e5dd6c34540ae7558fdb58cb96.bindPopup(popup_7a97e24ca8454ae8db1eaed61c5c6640)
;
var marker_743f19806500d413b68e14808ee3491f = L.marker(
[36.7297032, -98.3234449],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_c45931c032a4a650fd6f4c8471524597 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_743f19806500d413b68e14808ee3491f.setIcon(icon_c45931c032a4a650fd6f4c8471524597);
var popup_bbc203afee4be583f192bbd0f31d3058 = L.popup({"maxWidth": "100%"});
var html_49124c53c297da2ab33d828e527d2cc3 = $(`<div id="html_49124c53c297da2ab33d828e527d2cc3" style="width: 100.0%; height: 100.0%;">Alfalfa, OK: High Food Access Risk</div>`)[0];
popup_bbc203afee4be583f192bbd0f31d3058.setContent(html_49124c53c297da2ab33d828e527d2cc3);
marker_743f19806500d413b68e14808ee3491f.bindPopup(popup_bbc203afee4be583f192bbd0f31d3058)
;
var marker_e967f59a42f8d38d8d6af6c437031a54 = L.marker(
[44.7562899, -96.6902393],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_a02b324491817a540aa547a8f140c4c5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_e967f59a42f8d38d8d6af6c437031a54.setIcon(icon_a02b324491817a540aa547a8f140c4c5);
var popup_c55feb50d3b42ea871916c9170084bdb = L.popup({"maxWidth": "100%"});
var html_e323eaff56e89c9f73047c715db8c6dd = $(`<div id="html_e323eaff56e89c9f73047c715db8c6dd" style="width: 100.0%; height: 100.0%;">Deuel, SD: High Food Access Risk</div>`)[0];
popup_c55feb50d3b42ea871916c9170084bdb.setContent(html_e323eaff56e89c9f73047c715db8c6dd);
marker_e967f59a42f8d38d8d6af6c437031a54.bindPopup(popup_c55feb50d3b42ea871916c9170084bdb)
;
var marker_b4f62d503f83e3df055f5ac083fede4a = L.marker(
[41.5397495, -103.7262626],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_27cd566e3f1a11de726ce30d31638c51 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_b4f62d503f83e3df055f5ac083fede4a.setIcon(icon_27cd566e3f1a11de726ce30d31638c51);
var popup_ddaa560b50c3a87cc3a25828dbf83306 = L.popup({"maxWidth": "100%"});
var html_d183619944071525d4120b55a7e7b69d = $(`<div id="html_d183619944071525d4120b55a7e7b69d" style="width: 100.0%; height: 100.0%;">Banner, NE: High Food Access Risk</div>`)[0];
popup_ddaa560b50c3a87cc3a25828dbf83306.setContent(html_d183619944071525d4120b55a7e7b69d);
marker_b4f62d503f83e3df055f5ac083fede4a.bindPopup(popup_ddaa560b50c3a87cc3a25828dbf83306)
;
var marker_458abe346c6aa9782404f2a4efee8db2 = L.marker(
[32.7555393, -91.0035351],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_d1f71d47c0374d3130961beec8895491 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_458abe346c6aa9782404f2a4efee8db2.setIcon(icon_d1f71d47c0374d3130961beec8895491);
var popup_0912179e9b9adb8d2efe510f59a3c99b = L.popup({"maxWidth": "100%"});
var html_c63eccc903ebf4d99dab6d26feaf2fb5 = $(`<div id="html_c63eccc903ebf4d99dab6d26feaf2fb5" style="width: 100.0%; height: 100.0%;">Issaquena, MS: High Food Access Risk</div>`)[0];
popup_0912179e9b9adb8d2efe510f59a3c99b.setContent(html_c63eccc903ebf4d99dab6d26feaf2fb5);
marker_458abe346c6aa9782404f2a4efee8db2.bindPopup(popup_0912179e9b9adb8d2efe510f59a3c99b)
;
var marker_91e4f8f956ad8d2b0317ac0f60b2c833 = L.marker(
[39.2520418, -82.4859614],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_00437a48712aa504e29fe06df73107c0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_91e4f8f956ad8d2b0317ac0f60b2c833.setIcon(icon_00437a48712aa504e29fe06df73107c0);
var popup_7f192f74fb20232442db41ac481eb96c = L.popup({"maxWidth": "100%"});
var html_e96463e5a71fd778220324e0789c4083 = $(`<div id="html_e96463e5a71fd778220324e0789c4083" style="width: 100.0%; height: 100.0%;">Vinton, OH: High Food Access Risk</div>`)[0];
popup_7f192f74fb20232442db41ac481eb96c.setContent(html_e96463e5a71fd778220324e0789c4083);
marker_91e4f8f956ad8d2b0317ac0f60b2c833.bindPopup(popup_7f192f74fb20232442db41ac481eb96c)
;
var marker_f6413e0149716e383ac13ef115dff050 = L.marker(
[37.3664637, -90.9722821],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_1fc1ed2eb5af668e708a48f4106d0fa2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_f6413e0149716e383ac13ef115dff050.setIcon(icon_1fc1ed2eb5af668e708a48f4106d0fa2);
var popup_0f4133f90158046bd21d5356d642dc7d = L.popup({"maxWidth": "100%"});
var html_d2bbde979f564446a9da890cb0566b66 = $(`<div id="html_d2bbde979f564446a9da890cb0566b66" style="width: 100.0%; height: 100.0%;">Reynolds, MO: High Food Access Risk</div>`)[0];
popup_0f4133f90158046bd21d5356d642dc7d.setContent(html_d2bbde979f564446a9da890cb0566b66);
marker_f6413e0149716e383ac13ef115dff050.bindPopup(popup_0f4133f90158046bd21d5356d642dc7d)
;
var marker_b435dc19a39f2e1c92b62ea0db7cc4a3 = L.marker(
[41.5675715, -98.5305655],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_5c6ae0bad834bf4ea1a807ee695cca26 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_b435dc19a39f2e1c92b62ea0db7cc4a3.setIcon(icon_5c6ae0bad834bf4ea1a807ee695cca26);
var popup_ff106c28f2591befedd9f28eec05c2e5 = L.popup({"maxWidth": "100%"});
var html_4d481c1175122ed5d4dc63f47640a8d5 = $(`<div id="html_4d481c1175122ed5d4dc63f47640a8d5" style="width: 100.0%; height: 100.0%;">Greeley, NE: High Food Access Risk</div>`)[0];
popup_ff106c28f2591befedd9f28eec05c2e5.setContent(html_4d481c1175122ed5d4dc63f47640a8d5);
marker_b435dc19a39f2e1c92b62ea0db7cc4a3.bindPopup(popup_ff106c28f2591befedd9f28eec05c2e5)
;
var marker_221e9e929f120a8c79f9abb82b1a4750 = L.marker(
[44.7034268, -117.6919334],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_fc53e01ea830d4c7410b0ee2fefa9fd6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_221e9e929f120a8c79f9abb82b1a4750.setIcon(icon_fc53e01ea830d4c7410b0ee2fefa9fd6);
var popup_246262fe66456a5d906c1996782e2cb7 = L.popup({"maxWidth": "100%"});
var html_3bb3ccd1797eb5a5749fc10b6760403c = $(`<div id="html_3bb3ccd1797eb5a5749fc10b6760403c" style="width: 100.0%; height: 100.0%;">Baker, OR: High Food Access Risk</div>`)[0];
popup_246262fe66456a5d906c1996782e2cb7.setContent(html_3bb3ccd1797eb5a5749fc10b6760403c);
marker_221e9e929f120a8c79f9abb82b1a4750.bindPopup(popup_246262fe66456a5d906c1996782e2cb7)
;
var marker_2cbd601af0435c5dfe2416372fa6be08 = L.marker(
[38.4804041, -101.8059697],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_2122d885aeafad70bbd755da589caf59 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_2cbd601af0435c5dfe2416372fa6be08.setIcon(icon_2122d885aeafad70bbd755da589caf59);
var popup_bc9a22c6cd9b5919ec27c5cd7b3bb8cd = L.popup({"maxWidth": "100%"});
var html_2506f5101bb561ecc8ca50ced11394dc = $(`<div id="html_2506f5101bb561ecc8ca50ced11394dc" style="width: 100.0%; height: 100.0%;">Greeley, KS: High Food Access Risk</div>`)[0];
popup_bc9a22c6cd9b5919ec27c5cd7b3bb8cd.setContent(html_2506f5101bb561ecc8ca50ced11394dc);
marker_2cbd601af0435c5dfe2416372fa6be08.bindPopup(popup_bc9a22c6cd9b5919ec27c5cd7b3bb8cd)
;
var marker_2045ffb65dc5f5a5c2c5cbbf39a831b2 = L.marker(
[28.384922, -98.5788529],
{}
).addTo(map_e246393507a8cdf8ce925e52f41ce13c);
var icon_82835af8223a6648c9f1f4fd0d38046f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "exclamation-triangle", "iconColor": "white", "markerColor": "lightred", "prefix": "fa"}
);
marker_2045ffb65dc5f5a5c2c5cbbf39a831b2.setIcon(icon_82835af8223a6648c9f1f4fd0d38046f);