-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbiodiversity_prediction_map.html
12343 lines (5328 loc) · 601 KB
/
biodiversity_prediction_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/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_e351eb034b551d8c16f02be3022189ee {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div style="position: fixed;
top: 10px;
left: 50px;
width: 300px;
height: 30px;
z-index:9999;
background-color: white;
font-size:16px;
font-weight: bold;
padding: 5px;
border-radius: 5px;
border: 2px solid gray;">
Current vs Predicted Biodiversity (5 years ahead)
</div>
<div class="folium-map" id="map_e351eb034b551d8c16f02be3022189ee" ></div>
</body>
<script>
var map_e351eb034b551d8c16f02be3022189ee = L.map(
"map_e351eb034b551d8c16f02be3022189ee",
{
center: [39.07981680278885, -96.58108145418326],
crs: L.CRS.EPSG3857,
zoom: 4,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_28c8e305f5e2983fe834c0b9ffda2e9a = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{"attribution": "CartoDB", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
tile_layer_28c8e305f5e2983fe834c0b9ffda2e9a.addTo(map_e351eb034b551d8c16f02be3022189ee);
var feature_group_3535537618d40d0bfaccb08e90317683 = L.featureGroup(
{}
);
var circle_marker_a1f0a408e7ec73688bf70802bbadd177 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_aa0ad5b4106123a6f7eac6e8dd36b67a = L.popup({"maxWidth": "100%"});
var html_34890e025a23181a4d627f4c4ef2b2d4 = $(`<div id="html_34890e025a23181a4d627f4c4ef2b2d4" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_aa0ad5b4106123a6f7eac6e8dd36b67a.setContent(html_34890e025a23181a4d627f4c4ef2b2d4);
circle_marker_a1f0a408e7ec73688bf70802bbadd177.bindPopup(popup_aa0ad5b4106123a6f7eac6e8dd36b67a)
;
var circle_marker_6575725bd0f42a81629f8edc51eb6538 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_1ccbfee514906b76ee4620cce0b8efdf = L.popup({"maxWidth": "100%"});
var html_f4d7cc46a140c1ed74ad2954c9651dfa = $(`<div id="html_f4d7cc46a140c1ed74ad2954c9651dfa" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_1ccbfee514906b76ee4620cce0b8efdf.setContent(html_f4d7cc46a140c1ed74ad2954c9651dfa);
circle_marker_6575725bd0f42a81629f8edc51eb6538.bindPopup(popup_1ccbfee514906b76ee4620cce0b8efdf)
;
var circle_marker_c2d865cc124e39967fc0f0795275a78b = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_08f318b8e7024dcdad9a89f4e6a3459a = L.popup({"maxWidth": "100%"});
var html_09b9eb3a9f777c782c15740e94584193 = $(`<div id="html_09b9eb3a9f777c782c15740e94584193" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_08f318b8e7024dcdad9a89f4e6a3459a.setContent(html_09b9eb3a9f777c782c15740e94584193);
circle_marker_c2d865cc124e39967fc0f0795275a78b.bindPopup(popup_08f318b8e7024dcdad9a89f4e6a3459a)
;
var circle_marker_a9770e6dc36b05d49428cf088b5efa42 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.0615528128088303, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_469d94dd11b48734b474622834b62969 = L.popup({"maxWidth": "100%"});
var html_50616f2578a35be81d936c7d3c597a4d = $(`<div id="html_50616f2578a35be81d936c7d3c597a4d" style="width: 100.0%; height: 100.0%;">Current Abundance: 17.00</div>`)[0];
popup_469d94dd11b48734b474622834b62969.setContent(html_50616f2578a35be81d936c7d3c597a4d);
circle_marker_a9770e6dc36b05d49428cf088b5efa42.bindPopup(popup_469d94dd11b48734b474622834b62969)
;
var circle_marker_058c6d6003a32fd05726824096d28e07 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_4b4d35f9404f38af76a27cbbe7acc7e1 = L.popup({"maxWidth": "100%"});
var html_0f52d04ac7b2ab5a2a411042df9c45f3 = $(`<div id="html_0f52d04ac7b2ab5a2a411042df9c45f3" style="width: 100.0%; height: 100.0%;">Current Abundance: 49.00</div>`)[0];
popup_4b4d35f9404f38af76a27cbbe7acc7e1.setContent(html_0f52d04ac7b2ab5a2a411042df9c45f3);
circle_marker_058c6d6003a32fd05726824096d28e07.bindPopup(popup_4b4d35f9404f38af76a27cbbe7acc7e1)
;
var circle_marker_a2f76dbe933f5b322dadce39caa23d14 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_92fd9b9cebf2b5d46b49e058be87c342 = L.popup({"maxWidth": "100%"});
var html_af5a71819115c4bdf3aa9e033bf19157 = $(`<div id="html_af5a71819115c4bdf3aa9e033bf19157" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_92fd9b9cebf2b5d46b49e058be87c342.setContent(html_af5a71819115c4bdf3aa9e033bf19157);
circle_marker_a2f76dbe933f5b322dadce39caa23d14.bindPopup(popup_92fd9b9cebf2b5d46b49e058be87c342)
;
var circle_marker_adabee6d1223f530e67ed80f8ba814c3 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_cdbe55ca91fbd1208714991c44d2caab = L.popup({"maxWidth": "100%"});
var html_97cb8f24c758680fb7173c4cfe430d9e = $(`<div id="html_97cb8f24c758680fb7173c4cfe430d9e" style="width: 100.0%; height: 100.0%;">Current Abundance: 4.00</div>`)[0];
popup_cdbe55ca91fbd1208714991c44d2caab.setContent(html_97cb8f24c758680fb7173c4cfe430d9e);
circle_marker_adabee6d1223f530e67ed80f8ba814c3.bindPopup(popup_cdbe55ca91fbd1208714991c44d2caab)
;
var circle_marker_903d5d23566755d81f55640dfbdf9e5e = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_9cf443625eb104ceb2e56ca829a2acbd = L.popup({"maxWidth": "100%"});
var html_7aae68b5537dcd92b23a92c317ba041f = $(`<div id="html_7aae68b5537dcd92b23a92c317ba041f" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_9cf443625eb104ceb2e56ca829a2acbd.setContent(html_7aae68b5537dcd92b23a92c317ba041f);
circle_marker_903d5d23566755d81f55640dfbdf9e5e.bindPopup(popup_9cf443625eb104ceb2e56ca829a2acbd)
;
var circle_marker_bd36ea932ccb0f0c558b9362be0f520e = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_e3017845b3463a8ac79d0e6ab91b1212 = L.popup({"maxWidth": "100%"});
var html_dcfd49f081a72e41f3ef02b5ea29e862 = $(`<div id="html_dcfd49f081a72e41f3ef02b5ea29e862" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_e3017845b3463a8ac79d0e6ab91b1212.setContent(html_dcfd49f081a72e41f3ef02b5ea29e862);
circle_marker_bd36ea932ccb0f0c558b9362be0f520e.bindPopup(popup_e3017845b3463a8ac79d0e6ab91b1212)
;
var circle_marker_94362ba89dbda3e9344670459691786e = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.3228756555322954, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_c3c81f5a0d3b93e78d45bd820f627417 = L.popup({"maxWidth": "100%"});
var html_12223f57e513b4bd79431305b88bb5e7 = $(`<div id="html_12223f57e513b4bd79431305b88bb5e7" style="width: 100.0%; height: 100.0%;">Current Abundance: 7.00</div>`)[0];
popup_c3c81f5a0d3b93e78d45bd820f627417.setContent(html_12223f57e513b4bd79431305b88bb5e7);
circle_marker_94362ba89dbda3e9344670459691786e.bindPopup(popup_c3c81f5a0d3b93e78d45bd820f627417)
;
var circle_marker_5f13a23f7d9c558b97198d6df5d1ef03 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_0b9039fbb5096c873e6d99755f18c641 = L.popup({"maxWidth": "100%"});
var html_d7f049eed0bf822ec7d6319f362e2121 = $(`<div id="html_d7f049eed0bf822ec7d6319f362e2121" style="width: 100.0%; height: 100.0%;">Current Abundance: 4.00</div>`)[0];
popup_0b9039fbb5096c873e6d99755f18c641.setContent(html_d7f049eed0bf822ec7d6319f362e2121);
circle_marker_5f13a23f7d9c558b97198d6df5d1ef03.bindPopup(popup_0b9039fbb5096c873e6d99755f18c641)
;
var circle_marker_9f7b2d24e15a20be64364b3ae8b7fc61 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_5a1571bf83ae053d7d0f5af7e2bac846 = L.popup({"maxWidth": "100%"});
var html_f2f4911cde00a6678cfa27ae7aad4463 = $(`<div id="html_f2f4911cde00a6678cfa27ae7aad4463" style="width: 100.0%; height: 100.0%;">Current Abundance: 9.00</div>`)[0];
popup_5a1571bf83ae053d7d0f5af7e2bac846.setContent(html_f2f4911cde00a6678cfa27ae7aad4463);
circle_marker_9f7b2d24e15a20be64364b3ae8b7fc61.bindPopup(popup_5a1571bf83ae053d7d0f5af7e2bac846)
;
var circle_marker_3c288bf212d7b99363b956266f48a9f5 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.774917217635375, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_e101b3a71c08b05fd41da6651bdd69dd = L.popup({"maxWidth": "100%"});
var html_6ba3afee4880fd228d5cf276427c4735 = $(`<div id="html_6ba3afee4880fd228d5cf276427c4735" style="width: 100.0%; height: 100.0%;">Current Abundance: 57.00</div>`)[0];
popup_e101b3a71c08b05fd41da6651bdd69dd.setContent(html_6ba3afee4880fd228d5cf276427c4735);
circle_marker_3c288bf212d7b99363b956266f48a9f5.bindPopup(popup_e101b3a71c08b05fd41da6651bdd69dd)
;
var circle_marker_433d0991ce5c9f4bba66ae583e293f59 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_11e7c2d09b65dd4d9d7c5b2096539057 = L.popup({"maxWidth": "100%"});
var html_0ea9b2b44cdb80f9c5d7e0f0af1e2434 = $(`<div id="html_0ea9b2b44cdb80f9c5d7e0f0af1e2434" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_11e7c2d09b65dd4d9d7c5b2096539057.setContent(html_0ea9b2b44cdb80f9c5d7e0f0af1e2434);
circle_marker_433d0991ce5c9f4bba66ae583e293f59.bindPopup(popup_11e7c2d09b65dd4d9d7c5b2096539057)
;
var circle_marker_fac6cf397ffaeb660ac2a192b34adc45 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_2df1106c195349adf2fdc94a51840b40 = L.popup({"maxWidth": "100%"});
var html_4204ef70782127109a6c59fe2e438f57 = $(`<div id="html_4204ef70782127109a6c59fe2e438f57" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_2df1106c195349adf2fdc94a51840b40.setContent(html_4204ef70782127109a6c59fe2e438f57);
circle_marker_fac6cf397ffaeb660ac2a192b34adc45.bindPopup(popup_2df1106c195349adf2fdc94a51840b40)
;
var circle_marker_ed7a3fa5b066291dc5ea8ab1d70ae39d = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_2da9a71beed3d56bcf9fae6c13ca2da8 = L.popup({"maxWidth": "100%"});
var html_d3c6fc7f86070f3b82d44fafaa57249f = $(`<div id="html_d3c6fc7f86070f3b82d44fafaa57249f" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_2da9a71beed3d56bcf9fae6c13ca2da8.setContent(html_d3c6fc7f86070f3b82d44fafaa57249f);
circle_marker_ed7a3fa5b066291dc5ea8ab1d70ae39d.bindPopup(popup_2da9a71beed3d56bcf9fae6c13ca2da8)
;
var circle_marker_bcc2b813e4043814edcbf4a8adec5e40 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_730a17e2864bbc33fdfdd6e452b7742e = L.popup({"maxWidth": "100%"});
var html_ad7dfbe2a8384824246bc123126e34d4 = $(`<div id="html_ad7dfbe2a8384824246bc123126e34d4" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_730a17e2864bbc33fdfdd6e452b7742e.setContent(html_ad7dfbe2a8384824246bc123126e34d4);
circle_marker_bcc2b813e4043814edcbf4a8adec5e40.bindPopup(popup_730a17e2864bbc33fdfdd6e452b7742e)
;
var circle_marker_436d548eae524919bef73bf2a50fc4a9 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_d2bbcfbb636e8d933c2f6105ce27c6fa = L.popup({"maxWidth": "100%"});
var html_62a2dcc58cd2a60a1a440847a9535e8c = $(`<div id="html_62a2dcc58cd2a60a1a440847a9535e8c" style="width: 100.0%; height: 100.0%;">Current Abundance: 9.00</div>`)[0];
popup_d2bbcfbb636e8d933c2f6105ce27c6fa.setContent(html_62a2dcc58cd2a60a1a440847a9535e8c);
circle_marker_436d548eae524919bef73bf2a50fc4a9.bindPopup(popup_d2bbcfbb636e8d933c2f6105ce27c6fa)
;
var circle_marker_05118196f8cba4dba331e9a1fac031e7 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.598076211353316, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_370d2665fb893e3162f06f220080daa3 = L.popup({"maxWidth": "100%"});
var html_cbe23b8d764128807e393c26bd577577 = $(`<div id="html_cbe23b8d764128807e393c26bd577577" style="width: 100.0%; height: 100.0%;">Current Abundance: 27.00</div>`)[0];
popup_370d2665fb893e3162f06f220080daa3.setContent(html_cbe23b8d764128807e393c26bd577577);
circle_marker_05118196f8cba4dba331e9a1fac031e7.bindPopup(popup_370d2665fb893e3162f06f220080daa3)
;
var circle_marker_69f8f1646f8a9df57b226319495fe685 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_5c462ba2aaa1308bd74afd112c43ca37 = L.popup({"maxWidth": "100%"});
var html_c913146dc2ebdd3e77b083430be02525 = $(`<div id="html_c913146dc2ebdd3e77b083430be02525" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_5c462ba2aaa1308bd74afd112c43ca37.setContent(html_c913146dc2ebdd3e77b083430be02525);
circle_marker_69f8f1646f8a9df57b226319495fe685.bindPopup(popup_5c462ba2aaa1308bd74afd112c43ca37)
;
var circle_marker_475f459a6832879f994dc90779017d3a = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_9e857c27b51af021a184b6c7bdb61d19 = L.popup({"maxWidth": "100%"});
var html_fad8a0b4035f1492769d5499a24fd34e = $(`<div id="html_fad8a0b4035f1492769d5499a24fd34e" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_9e857c27b51af021a184b6c7bdb61d19.setContent(html_fad8a0b4035f1492769d5499a24fd34e);
circle_marker_475f459a6832879f994dc90779017d3a.bindPopup(popup_9e857c27b51af021a184b6c7bdb61d19)
;
var circle_marker_e96e1f3e205181f7632feec31851bf45 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_6e97948e609f623a12662cc5bbedfb10 = L.popup({"maxWidth": "100%"});
var html_d84531a4629f58785a2c6becfa373559 = $(`<div id="html_d84531a4629f58785a2c6becfa373559" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_6e97948e609f623a12662cc5bbedfb10.setContent(html_d84531a4629f58785a2c6becfa373559);
circle_marker_e96e1f3e205181f7632feec31851bf45.bindPopup(popup_6e97948e609f623a12662cc5bbedfb10)
;
var circle_marker_2946ea2b3a497db00dbddfaa4d918bfa = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_3ea7b40f17e8ece22f6d93b61cf55a71 = L.popup({"maxWidth": "100%"});
var html_1f55e9c6e0826653f9da2230f96fe547 = $(`<div id="html_1f55e9c6e0826653f9da2230f96fe547" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_3ea7b40f17e8ece22f6d93b61cf55a71.setContent(html_1f55e9c6e0826653f9da2230f96fe547);
circle_marker_2946ea2b3a497db00dbddfaa4d918bfa.bindPopup(popup_3ea7b40f17e8ece22f6d93b61cf55a71)
;
var circle_marker_4e96339803181f45419a4d1d8fdaec47 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_3f2416be4ec86e67ec8f886fb15f3b60 = L.popup({"maxWidth": "100%"});
var html_52040a37f6a4e9ac67a36989fd689e73 = $(`<div id="html_52040a37f6a4e9ac67a36989fd689e73" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_3f2416be4ec86e67ec8f886fb15f3b60.setContent(html_52040a37f6a4e9ac67a36989fd689e73);
circle_marker_4e96339803181f45419a4d1d8fdaec47.bindPopup(popup_3f2416be4ec86e67ec8f886fb15f3b60)
;
var circle_marker_ee14c500ee0df75e1924216d6c710c9d = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_f30b3f27bc12255ee1ace8db1e145157 = L.popup({"maxWidth": "100%"});
var html_e848ddb6adb871e4c656f88da20b8f61 = $(`<div id="html_e848ddb6adb871e4c656f88da20b8f61" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_f30b3f27bc12255ee1ace8db1e145157.setContent(html_e848ddb6adb871e4c656f88da20b8f61);
circle_marker_ee14c500ee0df75e1924216d6c710c9d.bindPopup(popup_f30b3f27bc12255ee1ace8db1e145157)
;
var circle_marker_a2fb434ec7a0999947cc0ef72d634ccb = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_e6cd7d82c6b523379d4d0531314b9127 = L.popup({"maxWidth": "100%"});
var html_b52d27531e85ec9efbe31e3602071533 = $(`<div id="html_b52d27531e85ec9efbe31e3602071533" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_e6cd7d82c6b523379d4d0531314b9127.setContent(html_b52d27531e85ec9efbe31e3602071533);
circle_marker_a2fb434ec7a0999947cc0ef72d634ccb.bindPopup(popup_e6cd7d82c6b523379d4d0531314b9127)
;
var circle_marker_dd5280d4d8ccc3434ac057e834984b23 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.5811388300841898, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_29bcd919bd35566ca2d429f239e897ce = L.popup({"maxWidth": "100%"});
var html_6a69a3cecbd3175d6b8cbca8317d2f67 = $(`<div id="html_6a69a3cecbd3175d6b8cbca8317d2f67" style="width: 100.0%; height: 100.0%;">Current Abundance: 10.00</div>`)[0];
popup_29bcd919bd35566ca2d429f239e897ce.setContent(html_6a69a3cecbd3175d6b8cbca8317d2f67);
circle_marker_dd5280d4d8ccc3434ac057e834984b23.bindPopup(popup_29bcd919bd35566ca2d429f239e897ce)
;
var circle_marker_10e89df83316f3778558925ab0342baa = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.0, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_6a02b2947d1de37881b3224f8cd06c2f = L.popup({"maxWidth": "100%"});
var html_4273cec270ec626435cc131d4d27ce8a = $(`<div id="html_4273cec270ec626435cc131d4d27ce8a" style="width: 100.0%; height: 100.0%;">Current Abundance: 36.00</div>`)[0];
popup_6a02b2947d1de37881b3224f8cd06c2f.setContent(html_4273cec270ec626435cc131d4d27ce8a);
circle_marker_10e89df83316f3778558925ab0342baa.bindPopup(popup_6a02b2947d1de37881b3224f8cd06c2f)
;
var circle_marker_25c0d4db706990c019bcf5d4588fc320 = L.circleMarker(
[39.0786, -96.557],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.118033988749895, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_0cb46f8963bb29af22ae43a03d42f51f = L.popup({"maxWidth": "100%"});
var html_d337cf19a1124b794259b1fa640ad7eb = $(`<div id="html_d337cf19a1124b794259b1fa640ad7eb" style="width: 100.0%; height: 100.0%;">Current Abundance: 5.00</div>`)[0];
popup_0cb46f8963bb29af22ae43a03d42f51f.setContent(html_d337cf19a1124b794259b1fa640ad7eb);
circle_marker_25c0d4db706990c019bcf5d4588fc320.bindPopup(popup_0cb46f8963bb29af22ae43a03d42f51f)
;
var circle_marker_7509d8a4ede5070fc36931d7d5b9f379 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_5fd48a5524f808d83140b577e1f9a1d2 = L.popup({"maxWidth": "100%"});
var html_8168ed332b6ec073d2e2354f406f49c7 = $(`<div id="html_8168ed332b6ec073d2e2354f406f49c7" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_5fd48a5524f808d83140b577e1f9a1d2.setContent(html_8168ed332b6ec073d2e2354f406f49c7);
circle_marker_7509d8a4ede5070fc36931d7d5b9f379.bindPopup(popup_5fd48a5524f808d83140b577e1f9a1d2)
;
var circle_marker_6e68499d4c735bcd4d32c7945ee58afc = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_816f4d2cc98fe5642a247fa859d6f8c8 = L.popup({"maxWidth": "100%"});
var html_fff79f806ae30d4599d0cb20abfff834 = $(`<div id="html_fff79f806ae30d4599d0cb20abfff834" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_816f4d2cc98fe5642a247fa859d6f8c8.setContent(html_fff79f806ae30d4599d0cb20abfff834);
circle_marker_6e68499d4c735bcd4d32c7945ee58afc.bindPopup(popup_816f4d2cc98fe5642a247fa859d6f8c8)
;
var circle_marker_24a830921672d8224f492a384fef3bea = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.4142135623730951, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_c9aab7bb8afe049b0597289907d967d0 = L.popup({"maxWidth": "100%"});
var html_e1574c02563c6be6e834c421bb9b4062 = $(`<div id="html_e1574c02563c6be6e834c421bb9b4062" style="width: 100.0%; height: 100.0%;">Current Abundance: 8.00</div>`)[0];
popup_c9aab7bb8afe049b0597289907d967d0.setContent(html_e1574c02563c6be6e834c421bb9b4062);
circle_marker_24a830921672d8224f492a384fef3bea.bindPopup(popup_c9aab7bb8afe049b0597289907d967d0)
;
var circle_marker_9fb42c799899a4e57403d424c4477632 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.7071067811865476, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_ad6632d4845a188c368125db1c043f7c = L.popup({"maxWidth": "100%"});
var html_d47615d412ce879b4791ddf18bde5b5a = $(`<div id="html_d47615d412ce879b4791ddf18bde5b5a" style="width: 100.0%; height: 100.0%;">Current Abundance: 2.00</div>`)[0];
popup_ad6632d4845a188c368125db1c043f7c.setContent(html_d47615d412ce879b4791ddf18bde5b5a);
circle_marker_9fb42c799899a4e57403d424c4477632.bindPopup(popup_ad6632d4845a188c368125db1c043f7c)
;
var circle_marker_44d0a68619628da03aa556c24f715932 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_77ad10c1ec1d259bd9c693d5c8db0ccd = L.popup({"maxWidth": "100%"});
var html_d4d76f993ed58e2663a55d9c6ef6ae00 = $(`<div id="html_d4d76f993ed58e2663a55d9c6ef6ae00" style="width: 100.0%; height: 100.0%;">Current Abundance: 4.00</div>`)[0];
popup_77ad10c1ec1d259bd9c693d5c8db0ccd.setContent(html_d4d76f993ed58e2663a55d9c6ef6ae00);
circle_marker_44d0a68619628da03aa556c24f715932.bindPopup(popup_77ad10c1ec1d259bd9c693d5c8db0ccd)
;
var circle_marker_3bc057ecbb89dfdd1f4036768c762d7e = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_0e833020fb57fd367cab05ed951d0919 = L.popup({"maxWidth": "100%"});
var html_e71c39adf39e1a77fad2c7495f6f2685 = $(`<div id="html_e71c39adf39e1a77fad2c7495f6f2685" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_0e833020fb57fd367cab05ed951d0919.setContent(html_e71c39adf39e1a77fad2c7495f6f2685);
circle_marker_3bc057ecbb89dfdd1f4036768c762d7e.bindPopup(popup_0e833020fb57fd367cab05ed951d0919)
;
var circle_marker_7c18addf58d6cbce96defbf4171dcaa8 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_d9a6ed1fc6071206a01b1dd97d25632a = L.popup({"maxWidth": "100%"});
var html_5097a73c8c4cdfec6595895a9be2906a = $(`<div id="html_5097a73c8c4cdfec6595895a9be2906a" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_d9a6ed1fc6071206a01b1dd97d25632a.setContent(html_5097a73c8c4cdfec6595895a9be2906a);
circle_marker_7c18addf58d6cbce96defbf4171dcaa8.bindPopup(popup_d9a6ed1fc6071206a01b1dd97d25632a)
;
var circle_marker_6d61ea14df73250a5692eab3abe24d8f = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.449489742783178, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_cbc8a7da00dc11c0cf1c7e57c3f97f7e = L.popup({"maxWidth": "100%"});
var html_9bc1994ec9b145a82ffca1c789a3ea98 = $(`<div id="html_9bc1994ec9b145a82ffca1c789a3ea98" style="width: 100.0%; height: 100.0%;">Current Abundance: 24.00</div>`)[0];
popup_cbc8a7da00dc11c0cf1c7e57c3f97f7e.setContent(html_9bc1994ec9b145a82ffca1c789a3ea98);
circle_marker_6d61ea14df73250a5692eab3abe24d8f.bindPopup(popup_cbc8a7da00dc11c0cf1c7e57c3f97f7e)
;
var circle_marker_db70fb51df8cf8765c2221587ab5eb3b = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.6583123951777, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_a8361acc685b2ed9948d9da8437c80ea = L.popup({"maxWidth": "100%"});
var html_aabc26e650b944028426e0d4f301cf9e = $(`<div id="html_aabc26e650b944028426e0d4f301cf9e" style="width: 100.0%; height: 100.0%;">Current Abundance: 11.00</div>`)[0];
popup_a8361acc685b2ed9948d9da8437c80ea.setContent(html_aabc26e650b944028426e0d4f301cf9e);
circle_marker_db70fb51df8cf8765c2221587ab5eb3b.bindPopup(popup_a8361acc685b2ed9948d9da8437c80ea)
;
var circle_marker_60a64796d85832ed72fc241cb9ac20fb = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_ba130170caf14ffe3142f2ac78443fcf = L.popup({"maxWidth": "100%"});
var html_0e368ccb4c808bd51d45af2a9c517e3e = $(`<div id="html_0e368ccb4c808bd51d45af2a9c517e3e" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_ba130170caf14ffe3142f2ac78443fcf.setContent(html_0e368ccb4c808bd51d45af2a9c517e3e);
circle_marker_60a64796d85832ed72fc241cb9ac20fb.bindPopup(popup_ba130170caf14ffe3142f2ac78443fcf)
;
var circle_marker_d7346674db4796c6284e53730edab28c = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_3e8a0e73e6dc7f2774f4816d5d202d45 = L.popup({"maxWidth": "100%"});
var html_c7b7ac416a13b65dc6c1dbfd1c7da289 = $(`<div id="html_c7b7ac416a13b65dc6c1dbfd1c7da289" style="width: 100.0%; height: 100.0%;">Current Abundance: 3.00</div>`)[0];
popup_3e8a0e73e6dc7f2774f4816d5d202d45.setContent(html_c7b7ac416a13b65dc6c1dbfd1c7da289);
circle_marker_d7346674db4796c6284e53730edab28c.bindPopup(popup_3e8a0e73e6dc7f2774f4816d5d202d45)
;
var circle_marker_b2c58d77083aa7bc9217fd897893138e = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_8098b120f08d83f9ffb85141b6b5132d = L.popup({"maxWidth": "100%"});
var html_5d20dab2d18edb7318aaa1d9999122e3 = $(`<div id="html_5d20dab2d18edb7318aaa1d9999122e3" style="width: 100.0%; height: 100.0%;">Current Abundance: 4.00</div>`)[0];
popup_8098b120f08d83f9ffb85141b6b5132d.setContent(html_5d20dab2d18edb7318aaa1d9999122e3);
circle_marker_b2c58d77083aa7bc9217fd897893138e.bindPopup(popup_8098b120f08d83f9ffb85141b6b5132d)
;
var circle_marker_f63266006fc885662eef6e5ac184bdb4 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_da59e908ca2416777a261f842cebf644 = L.popup({"maxWidth": "100%"});
var html_6225ed37071a0109d8849be76baba3ad = $(`<div id="html_6225ed37071a0109d8849be76baba3ad" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_da59e908ca2416777a261f842cebf644.setContent(html_6225ed37071a0109d8849be76baba3ad);
circle_marker_f63266006fc885662eef6e5ac184bdb4.bindPopup(popup_da59e908ca2416777a261f842cebf644)
;
var circle_marker_8529533905073a60ee6c8f600374f280 = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.5, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);
var popup_5109df1795799d32433cc6602a6e6769 = L.popup({"maxWidth": "100%"});
var html_60518ca80afcf3191256cda5d6582ce3 = $(`<div id="html_60518ca80afcf3191256cda5d6582ce3" style="width: 100.0%; height: 100.0%;">Current Abundance: 1.00</div>`)[0];
popup_5109df1795799d32433cc6602a6e6769.setContent(html_60518ca80afcf3191256cda5d6582ce3);
circle_marker_8529533905073a60ee6c8f600374f280.bindPopup(popup_5109df1795799d32433cc6602a6e6769)
;
var circle_marker_05c1547f73a29abbb83c135e09659c9d = L.circleMarker(
[39.07125, -96.58755],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.8660254037844386, "stroke": true, "weight": 3}
).addTo(feature_group_3535537618d40d0bfaccb08e90317683);