-
Notifications
You must be signed in to change notification settings - Fork 0
/
50kdotmap.html
12888 lines (6125 loc) Β· 645 KB
/
50kdotmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_562454e6788c43f7a6f60d52aba871a7 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_562454e6788c43f7a6f60d52aba871a7" ></div>
</body>
<script>
var map_562454e6788c43f7a6f60d52aba871a7 = L.map(
"map_562454e6788c43f7a6f60d52aba871a7",
{
center: [20.0, 0.0],
crs: L.CRS.EPSG3857,
zoom: 2,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_324e7620fc9a4dd6bf5d8e2b1e64a4f2 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var circle_fa366d02aa3a4b7e887f9b57c2935bff = L.circle(
[44.3596825, -78.7421729],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_9acd6615a1ee4dc190aa058f32aee81d = L.popup({"maxWidth": "100%"});
var html_d82e4efaa20f44cf9665fab031f1a788 = $(`<div id="html_d82e4efaa20f44cf9665fab031f1a788" style="width: 100.0%; height: 100.0%;">Kawartha Lakes</div>`)[0];
popup_9acd6615a1ee4dc190aa058f32aee81d.setContent(html_d82e4efaa20f44cf9665fab031f1a788);
circle_fa366d02aa3a4b7e887f9b57c2935bff.bindPopup(popup_9acd6615a1ee4dc190aa058f32aee81d)
;
var circle_66dcec1e2a0a44648d30bfe6d82da716 = L.circle(
[53.117511, -4.199495186814344],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_2f3d2192fe82444cb4663bea3dd12921 = L.popup({"maxWidth": "100%"});
var html_3f4aa5c2c7bd499a8e47178d5ca61280 = $(`<div id="html_3f4aa5c2c7bd499a8e47178d5ca61280" style="width: 100.0%; height: 100.0%;">Waunfawr</div>`)[0];
popup_2f3d2192fe82444cb4663bea3dd12921.setContent(html_3f4aa5c2c7bd499a8e47178d5ca61280);
circle_66dcec1e2a0a44648d30bfe6d82da716.bindPopup(popup_2f3d2192fe82444cb4663bea3dd12921)
;
var circle_74fc981bfa344521b5a7f9c32bdf0aaf = L.circle(
[39.3762145, -77.154704],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_c5f853b496ae484ebbfcda4570ddb394 = L.popup({"maxWidth": "100%"});
var html_28bb5e2173dd450eac4f26fd88c1f784 = $(`<div id="html_28bb5e2173dd450eac4f26fd88c1f784" style="width: 100.0%; height: 100.0%;">Mount Airy</div>`)[0];
popup_c5f853b496ae484ebbfcda4570ddb394.setContent(html_28bb5e2173dd450eac4f26fd88c1f784);
circle_74fc981bfa344521b5a7f9c32bdf0aaf.bindPopup(popup_c5f853b496ae484ebbfcda4570ddb394)
;
var circle_c51b61ded97848baa27df848328202c0 = L.circle(
[37.1232245, -78.4927721],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_4fa255095f4e4c7897e466354e1881d4 = L.popup({"maxWidth": "100%"});
var html_aa17495e7984479eb32bc907dc5bbf75 = $(`<div id="html_aa17495e7984479eb32bc907dc5bbf75" style="width: 100.0%; height: 100.0%;">Virginia</div>`)[0];
popup_4fa255095f4e4c7897e466354e1881d4.setContent(html_aa17495e7984479eb32bc907dc5bbf75);
circle_c51b61ded97848baa27df848328202c0.bindPopup(popup_4fa255095f4e4c7897e466354e1881d4)
;
var circle_bfa1bf5be38b4f1db0146d6b196153b8 = L.circle(
[42.9632405, -85.6678639],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_8748a627dbd14803a1c9081bedfa6abd = L.popup({"maxWidth": "100%"});
var html_48cd85deb6104a70a322ad3a052ce6f8 = $(`<div id="html_48cd85deb6104a70a322ad3a052ce6f8" style="width: 100.0%; height: 100.0%;">Grand Rapids</div>`)[0];
popup_8748a627dbd14803a1c9081bedfa6abd.setContent(html_48cd85deb6104a70a322ad3a052ce6f8);
circle_bfa1bf5be38b4f1db0146d6b196153b8.bindPopup(popup_8748a627dbd14803a1c9081bedfa6abd)
;
var circle_f4acbad8cd914c698da389116647e9e0 = L.circle(
[40.7862124, -73.7137421],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_ac2d1ef07c1749a9b9565415fbc64dd1 = L.popup({"maxWidth": "100%"});
var html_eb3e55bf4e2e477f84b532722d8d4e93 = $(`<div id="html_eb3e55bf4e2e477f84b532722d8d4e93" style="width: 100.0%; height: 100.0%;">Thomaston</div>`)[0];
popup_ac2d1ef07c1749a9b9565415fbc64dd1.setContent(html_eb3e55bf4e2e477f84b532722d8d4e93);
circle_f4acbad8cd914c698da389116647e9e0.bindPopup(popup_ac2d1ef07c1749a9b9565415fbc64dd1)
;
var circle_53da7d3d6e7f455bab205c37d5cbb08d = L.circle(
[40.7896239, -73.9598939],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_eba09ece2cf944d5a49b9a61604a5693 = L.popup({"maxWidth": "100%"});
var html_36b081c17d0841978c908a193f1766d7 = $(`<div id="html_36b081c17d0841978c908a193f1766d7" style="width: 100.0%; height: 100.0%;">Manhattan</div>`)[0];
popup_eba09ece2cf944d5a49b9a61604a5693.setContent(html_36b081c17d0841978c908a193f1766d7);
circle_53da7d3d6e7f455bab205c37d5cbb08d.bindPopup(popup_eba09ece2cf944d5a49b9a61604a5693)
;
var circle_4587b55293b54d8fb71869d51aee5d7e = L.circle(
[36.0028345, -115.20129908882386],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_5993664f31f44ffba0ebb88f5b671735 = L.popup({"maxWidth": "100%"});
var html_0052a6a454da4a58920e9448203112df = $(`<div id="html_0052a6a454da4a58920e9448203112df" style="width: 100.0%; height: 100.0%;">Enterprise</div>`)[0];
popup_5993664f31f44ffba0ebb88f5b671735.setContent(html_0052a6a454da4a58920e9448203112df);
circle_4587b55293b54d8fb71869d51aee5d7e.bindPopup(popup_5993664f31f44ffba0ebb88f5b671735)
;
var circle_1b4e9a6a553c452a8579242734b42fd3 = L.circle(
[64.6863136, 97.7453061],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_ced3ca1bcbb340cabb05e12b9a96d07e = L.popup({"maxWidth": "100%"});
var html_e386fb7102f94e099fb999f6bea3cccf = $(`<div id="html_e386fb7102f94e099fb999f6bea3cccf" style="width: 100.0%; height: 100.0%;">Russia</div>`)[0];
popup_ced3ca1bcbb340cabb05e12b9a96d07e.setContent(html_e386fb7102f94e099fb999f6bea3cccf);
circle_1b4e9a6a553c452a8579242734b42fd3.bindPopup(popup_ced3ca1bcbb340cabb05e12b9a96d07e)
;
var circle_6c89968d41cb4f0b92e1a026a7a3c742 = L.circle(
[40.7862124, -73.7137421],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_b9aff5719dad475ea5d37fd750ec88c1 = L.popup({"maxWidth": "100%"});
var html_d29f57bce75c477f84b3a423ebbae5cd = $(`<div id="html_d29f57bce75c477f84b3a423ebbae5cd" style="width: 100.0%; height: 100.0%;">Thomaston</div>`)[0];
popup_b9aff5719dad475ea5d37fd750ec88c1.setContent(html_d29f57bce75c477f84b3a423ebbae5cd);
circle_6c89968d41cb4f0b92e1a026a7a3c742.bindPopup(popup_b9aff5719dad475ea5d37fd750ec88c1)
;
var circle_8d99e4583eb4489aa3421ded8c9736d1 = L.circle(
[27.7567667, -81.4639835],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_37f7a1e1b0ea46648d1c259f7f14c191 = L.popup({"maxWidth": "100%"});
var html_6ffdec06df2a488cbb06ed121d4bd549 = $(`<div id="html_6ffdec06df2a488cbb06ed121d4bd549" style="width: 100.0%; height: 100.0%;">Florida</div>`)[0];
popup_37f7a1e1b0ea46648d1c259f7f14c191.setContent(html_6ffdec06df2a488cbb06ed121d4bd549);
circle_8d99e4583eb4489aa3421ded8c9736d1.bindPopup(popup_37f7a1e1b0ea46648d1c259f7f14c191)
;
var circle_f722c17885a64accacf5532d73c9406c = L.circle(
[21.4665875, -158.21607146723647],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_878d77b5af814415b5505788ec1a99b3 = L.popup({"maxWidth": "100%"});
var html_78cef995192b4d318a519e91e8e3f3c4 = $(`<div id="html_78cef995192b4d318a519e91e8e3f3c4" style="width: 100.0%; height: 100.0%;">Makaha</div>`)[0];
popup_878d77b5af814415b5505788ec1a99b3.setContent(html_78cef995192b4d318a519e91e8e3f3c4);
circle_f722c17885a64accacf5532d73c9406c.bindPopup(popup_878d77b5af814415b5505788ec1a99b3)
;
var circle_bd37693d1e7e42a9846b0904d574bdea = L.circle(
[31.8576265, -103.092665],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_15ce4685fafd4364bf21f0c32045cfe1 = L.popup({"maxWidth": "100%"});
var html_0c3822b5afe74a8aa6473f4c376cc3e4 = $(`<div id="html_0c3822b5afe74a8aa6473f4c376cc3e4" style="width: 100.0%; height: 100.0%;">Kermit</div>`)[0];
popup_15ce4685fafd4364bf21f0c32045cfe1.setContent(html_0c3822b5afe74a8aa6473f4c376cc3e4);
circle_bd37693d1e7e42a9846b0904d574bdea.bindPopup(popup_15ce4685fafd4364bf21f0c32045cfe1)
;
var circle_020758929482415baa2d462c7023c6c5 = L.circle(
[39.7837304, -100.4458825],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_376eeff7816a49ce99001085de02b94d = L.popup({"maxWidth": "100%"});
var html_5a5b518cd29c4628a01d9a1e9a2de523 = $(`<div id="html_5a5b518cd29c4628a01d9a1e9a2de523" style="width: 100.0%; height: 100.0%;">United States</div>`)[0];
popup_376eeff7816a49ce99001085de02b94d.setContent(html_5a5b518cd29c4628a01d9a1e9a2de523);
circle_020758929482415baa2d462c7023c6c5.bindPopup(popup_376eeff7816a49ce99001085de02b94d)
;
var circle_2bab1e813d984900858763f121f09db5 = L.circle(
[35.3187279, -82.4609528],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_651e09c92e3340449dab12e3f078cf4e = L.popup({"maxWidth": "100%"});
var html_a3897cc29ab1448faf8ab4dc61402c50 = $(`<div id="html_a3897cc29ab1448faf8ab4dc61402c50" style="width: 100.0%; height: 100.0%;">Hendersonville</div>`)[0];
popup_651e09c92e3340449dab12e3f078cf4e.setContent(html_a3897cc29ab1448faf8ab4dc61402c50);
circle_2bab1e813d984900858763f121f09db5.bindPopup(popup_651e09c92e3340449dab12e3f078cf4e)
;
var circle_8c3381b33f44458b8d7f13d2d0e5d297 = L.circle(
[39.7837304, -100.4458825],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_1bd2844c3d1c4bd388fec8465712c4e0 = L.popup({"maxWidth": "100%"});
var html_12061a0794814650ac4cc6ae8244359e = $(`<div id="html_12061a0794814650ac4cc6ae8244359e" style="width: 100.0%; height: 100.0%;">United States</div>`)[0];
popup_1bd2844c3d1c4bd388fec8465712c4e0.setContent(html_12061a0794814650ac4cc6ae8244359e);
circle_8c3381b33f44458b8d7f13d2d0e5d297.bindPopup(popup_1bd2844c3d1c4bd388fec8465712c4e0)
;
var circle_9bdb84c109a847da997aee6277c606ef = L.circle(
[54.5763441, -5.8812117],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_71bb4dede5fd41e4811e193e4d9534da = L.popup({"maxWidth": "100%"});
var html_9b23238667cd4204b765f45ff7bdd231 = $(`<div id="html_9b23238667cd4204b765f45ff7bdd231" style="width: 100.0%; height: 100.0%;">Castlereagh</div>`)[0];
popup_71bb4dede5fd41e4811e193e4d9534da.setContent(html_9b23238667cd4204b765f45ff7bdd231);
circle_9bdb84c109a847da997aee6277c606ef.bindPopup(popup_71bb4dede5fd41e4811e193e4d9534da)
;
var circle_bf044b04f3944265a1dacd6cab6de95c = L.circle(
[27.2939333, -80.3503283],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_7a58a737556d4ecf94302c1cda647a68 = L.popup({"maxWidth": "100%"});
var html_ef8ae47adc944a11b78ef0967f8a30dc = $(`<div id="html_ef8ae47adc944a11b78ef0967f8a30dc" style="width: 100.0%; height: 100.0%;">Port St Lucie</div>`)[0];
popup_7a58a737556d4ecf94302c1cda647a68.setContent(html_ef8ae47adc944a11b78ef0967f8a30dc);
circle_bf044b04f3944265a1dacd6cab6de95c.bindPopup(popup_7a58a737556d4ecf94302c1cda647a68)
;
var circle_0066d7eef17047848fa60650f60c1ce4 = L.circle(
[45.4668, 9.1905],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_23eda4d1aba9434c9e689b2217d227a5 = L.popup({"maxWidth": "100%"});
var html_813b5efed05f4477b7fcaa3d5c4204b6 = $(`<div id="html_813b5efed05f4477b7fcaa3d5c4204b6" style="width: 100.0%; height: 100.0%;">Milano</div>`)[0];
popup_23eda4d1aba9434c9e689b2217d227a5.setContent(html_813b5efed05f4477b7fcaa3d5c4204b6);
circle_0066d7eef17047848fa60650f60c1ce4.bindPopup(popup_23eda4d1aba9434c9e689b2217d227a5)
;
var circle_99e0f0a29a464c1e827a213882308213 = L.circle(
[38.0049214, -121.805789],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_66b5fdc0a33f43fc917361a8a6fbc6f8 = L.popup({"maxWidth": "100%"});
var html_b816f4f2907b47b58f69ea2dcdc91ff6 = $(`<div id="html_b816f4f2907b47b58f69ea2dcdc91ff6" style="width: 100.0%; height: 100.0%;">Antioch</div>`)[0];
popup_66b5fdc0a33f43fc917361a8a6fbc6f8.setContent(html_b816f4f2907b47b58f69ea2dcdc91ff6);
circle_99e0f0a29a464c1e827a213882308213.bindPopup(popup_66b5fdc0a33f43fc917361a8a6fbc6f8)
;
var circle_b8db5181a5724bce8f58678454f84945 = L.circle(
[40.7862124, -73.7137421],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_5baddadaa2574e98b7b9cf32762c7335 = L.popup({"maxWidth": "100%"});
var html_97edaab198364deb8ca2f807f965b6be = $(`<div id="html_97edaab198364deb8ca2f807f965b6be" style="width: 100.0%; height: 100.0%;">Thomaston</div>`)[0];
popup_5baddadaa2574e98b7b9cf32762c7335.setContent(html_97edaab198364deb8ca2f807f965b6be);
circle_b8db5181a5724bce8f58678454f84945.bindPopup(popup_5baddadaa2574e98b7b9cf32762c7335)
;
var circle_f9b72862aee94af386adbdf5d33a4c7c = L.circle(
[41.7370229, -99.5873816],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_ae5c2a9a1e2b41089377526f157c73c6 = L.popup({"maxWidth": "100%"});
var html_cb62089687ea44b280a8703d81b84f86 = $(`<div id="html_cb62089687ea44b280a8703d81b84f86" style="width: 100.0%; height: 100.0%;">Nebraska</div>`)[0];
popup_ae5c2a9a1e2b41089377526f157c73c6.setContent(html_cb62089687ea44b280a8703d81b84f86);
circle_f9b72862aee94af386adbdf5d33a4c7c.bindPopup(popup_ae5c2a9a1e2b41089377526f157c73c6)
;
var circle_e01a84b1bbb8438f89b04862383446ad = L.circle(
[35.7730076, -86.2820081],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_9062ae9169814adeaa034213083498f1 = L.popup({"maxWidth": "100%"});
var html_eb5170947ad240b79d3807c88c89e9e7 = $(`<div id="html_eb5170947ad240b79d3807c88c89e9e7" style="width: 100.0%; height: 100.0%;">Tennessee</div>`)[0];
popup_9062ae9169814adeaa034213083498f1.setContent(html_eb5170947ad240b79d3807c88c89e9e7);
circle_e01a84b1bbb8438f89b04862383446ad.bindPopup(popup_9062ae9169814adeaa034213083498f1)
;
var circle_9ab0005f3b1541869e2845a0f85f1a63 = L.circle(
[28.5421109, -81.3790304],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_e35eb3487ea7478c8b0b83da6d3516cf = L.popup({"maxWidth": "100%"});
var html_f871c2f39e744f17b5a7d10c55dfa5b7 = $(`<div id="html_f871c2f39e744f17b5a7d10c55dfa5b7" style="width: 100.0%; height: 100.0%;">Orlando</div>`)[0];
popup_e35eb3487ea7478c8b0b83da6d3516cf.setContent(html_f871c2f39e744f17b5a7d10c55dfa5b7);
circle_9ab0005f3b1541869e2845a0f85f1a63.bindPopup(popup_e35eb3487ea7478c8b0b83da6d3516cf)
;
var circle_029d45dd9a404743a42077b5aab83a17 = L.circle(
[27.86437255, -82.22796095000001],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_28793df518334e5e9d5888fa11aff0ff = L.popup({"maxWidth": "100%"});
var html_3136efe484a34df1a6d3a10abd5b9c3b = $(`<div id="html_3136efe484a34df1a6d3a10abd5b9c3b" style="width: 100.0%; height: 100.0%;">Fish Hawk</div>`)[0];
popup_28793df518334e5e9d5888fa11aff0ff.setContent(html_3136efe484a34df1a6d3a10abd5b9c3b);
circle_029d45dd9a404743a42077b5aab83a17.bindPopup(popup_28793df518334e5e9d5888fa11aff0ff)
;
var circle_c0bfbda47be74ac5909b20d3259001dd = L.circle(
[39.5261206, -119.8126581],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_5c9420fbf7e344cd8a2e87f244733d1f = L.popup({"maxWidth": "100%"});
var html_8da00533304847c08fbdde583ce31ac0 = $(`<div id="html_8da00533304847c08fbdde583ce31ac0" style="width: 100.0%; height: 100.0%;">Reno</div>`)[0];
popup_5c9420fbf7e344cd8a2e87f244733d1f.setContent(html_8da00533304847c08fbdde583ce31ac0);
circle_c0bfbda47be74ac5909b20d3259001dd.bindPopup(popup_5c9420fbf7e344cd8a2e87f244733d1f)
;
var circle_58409cf773e44f9788cbe05ea2e9d2f0 = L.circle(
[49.8955367, -97.1384584],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_fa767d9bf7374c5a981fbffe3af35b8e = L.popup({"maxWidth": "100%"});
var html_54370886d61147649d2356dc9618ed97 = $(`<div id="html_54370886d61147649d2356dc9618ed97" style="width: 100.0%; height: 100.0%;">Winnipeg</div>`)[0];
popup_fa767d9bf7374c5a981fbffe3af35b8e.setContent(html_54370886d61147649d2356dc9618ed97);
circle_58409cf773e44f9788cbe05ea2e9d2f0.bindPopup(popup_fa767d9bf7374c5a981fbffe3af35b8e)
;
var circle_79c5c8de5cac4d049f0a324994544482 = L.circle(
[43.6534817, -79.3839347],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_c9589c6ffb2c42f080a9c0a3a9fefe41 = L.popup({"maxWidth": "100%"});
var html_29acd15324a74c7ea9148c20c13bd2c0 = $(`<div id="html_29acd15324a74c7ea9148c20c13bd2c0" style="width: 100.0%; height: 100.0%;">Toronto</div>`)[0];
popup_c9589c6ffb2c42f080a9c0a3a9fefe41.setContent(html_29acd15324a74c7ea9148c20c13bd2c0);
circle_79c5c8de5cac4d049f0a324994544482.bindPopup(popup_c9589c6ffb2c42f080a9c0a3a9fefe41)
;
var circle_85d298de140a4a4ca53d2e355d2b2f62 = L.circle(
[54.5763441, -5.8812117],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_5bbc37c2563e44b1af133dd6f9be30ee = L.popup({"maxWidth": "100%"});
var html_9020f25e0c10420e9112485e95ce79a7 = $(`<div id="html_9020f25e0c10420e9112485e95ce79a7" style="width: 100.0%; height: 100.0%;">Castlereagh</div>`)[0];
popup_5bbc37c2563e44b1af133dd6f9be30ee.setContent(html_9020f25e0c10420e9112485e95ce79a7);
circle_85d298de140a4a4ca53d2e355d2b2f62.bindPopup(popup_5bbc37c2563e44b1af133dd6f9be30ee)
;
var circle_01791959ba2f4e5e97a630e13dcccad5 = L.circle(
[41.8847507, -88.2039607],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_af2c2dbc9b004818ab82e68d3c23476c = L.popup({"maxWidth": "100%"});
var html_784966c1cc774af88e16ee02e1616bb9 = $(`<div id="html_784966c1cc774af88e16ee02e1616bb9" style="width: 100.0%; height: 100.0%;">West Chicago</div>`)[0];
popup_af2c2dbc9b004818ab82e68d3c23476c.setContent(html_784966c1cc774af88e16ee02e1616bb9);
circle_01791959ba2f4e5e97a630e13dcccad5.bindPopup(popup_af2c2dbc9b004818ab82e68d3c23476c)
;
var circle_a48a22a989d04002b9c693bcdd634179 = L.circle(
[49.8955367, -97.1384584],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_4101c3552c9245faaec0c36e0bae491e = L.popup({"maxWidth": "100%"});
var html_2fc093debe9a453f9560f43f0b4fa755 = $(`<div id="html_2fc093debe9a453f9560f43f0b4fa755" style="width: 100.0%; height: 100.0%;">Winnipeg</div>`)[0];
popup_4101c3552c9245faaec0c36e0bae491e.setContent(html_2fc093debe9a453f9560f43f0b4fa755);
circle_a48a22a989d04002b9c693bcdd634179.bindPopup(popup_4101c3552c9245faaec0c36e0bae491e)
;
var circle_cdcf2c686da04a78b2ce439e11275969 = L.circle(
[31.8160381, -99.5120986],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_19b0182e70c64681a593fc2b5ffbd6d7 = L.popup({"maxWidth": "100%"});
var html_274ee44faf8b4ef99d3fb70aa66cae61 = $(`<div id="html_274ee44faf8b4ef99d3fb70aa66cae61" style="width: 100.0%; height: 100.0%;">Texas</div>`)[0];
popup_19b0182e70c64681a593fc2b5ffbd6d7.setContent(html_274ee44faf8b4ef99d3fb70aa66cae61);
circle_cdcf2c686da04a78b2ce439e11275969.bindPopup(popup_19b0182e70c64681a593fc2b5ffbd6d7)
;
var circle_f538f0a634624838a7856f7901d98d61 = L.circle(
[35.3187279, -82.4609528],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_d91b332135bc43beb81f4b250b1ed2a3 = L.popup({"maxWidth": "100%"});
var html_2b719247be2c4ab0b5f80025cac34118 = $(`<div id="html_2b719247be2c4ab0b5f80025cac34118" style="width: 100.0%; height: 100.0%;">Hendersonville</div>`)[0];
popup_d91b332135bc43beb81f4b250b1ed2a3.setContent(html_2b719247be2c4ab0b5f80025cac34118);
circle_f538f0a634624838a7856f7901d98d61.bindPopup(popup_d91b332135bc43beb81f4b250b1ed2a3)
;
var circle_7aa722c835204210a47324e285e5c4dd = L.circle(
[37.7478572, -84.2946539],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_556cd26184d643a38e84b645e4e6c21a = L.popup({"maxWidth": "100%"});
var html_286fd6fd535845c6963c930f0f08702a = $(`<div id="html_286fd6fd535845c6963c930f0f08702a" style="width: 100.0%; height: 100.0%;">Richmond</div>`)[0];
popup_556cd26184d643a38e84b645e4e6c21a.setContent(html_286fd6fd535845c6963c930f0f08702a);
circle_7aa722c835204210a47324e285e5c4dd.bindPopup(popup_556cd26184d643a38e84b645e4e6c21a)
;
var circle_a4ddaf89d68044ffa25eb62e6185328d = L.circle(
[26.1223084, -80.1433786],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_61db591bd7ba475f9d1d06a001cadbec = L.popup({"maxWidth": "100%"});
var html_75523fd5ea89406393a210e56dc3b8e0 = $(`<div id="html_75523fd5ea89406393a210e56dc3b8e0" style="width: 100.0%; height: 100.0%;">Fort Lauderdale</div>`)[0];
popup_61db591bd7ba475f9d1d06a001cadbec.setContent(html_75523fd5ea89406393a210e56dc3b8e0);
circle_a4ddaf89d68044ffa25eb62e6185328d.bindPopup(popup_61db591bd7ba475f9d1d06a001cadbec)
;
var circle_a7ea7b499be245edb4673f1643491636 = L.circle(
[49.8955367, -97.1384584],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_f8c76626540b4f0093d0a35cc0231116 = L.popup({"maxWidth": "100%"});
var html_a8b30d9f22e041feb05c2e5e0b16427e = $(`<div id="html_a8b30d9f22e041feb05c2e5e0b16427e" style="width: 100.0%; height: 100.0%;">Winnipeg</div>`)[0];
popup_f8c76626540b4f0093d0a35cc0231116.setContent(html_a8b30d9f22e041feb05c2e5e0b16427e);
circle_a7ea7b499be245edb4673f1643491636.bindPopup(popup_f8c76626540b4f0093d0a35cc0231116)
;
var circle_0ce9e98e91784bcc82a14533a8ef9088 = L.circle(
[49.8955367, -97.1384584],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_72853988a0774d9db3efd5080dd27901 = L.popup({"maxWidth": "100%"});
var html_41d1f58d17f74982a280ccc23d6a4eee = $(`<div id="html_41d1f58d17f74982a280ccc23d6a4eee" style="width: 100.0%; height: 100.0%;">Winnipeg</div>`)[0];
popup_72853988a0774d9db3efd5080dd27901.setContent(html_41d1f58d17f74982a280ccc23d6a4eee);
circle_0ce9e98e91784bcc82a14533a8ef9088.bindPopup(popup_72853988a0774d9db3efd5080dd27901)
;
var circle_875a643b3bae4a49a5d27a7d9ce8584f = L.circle(
[40.7862124, -73.7137421],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_06897cc67d9b4738a714b43a7afd85de = L.popup({"maxWidth": "100%"});
var html_fcc4984f990e4e699235b301b7662018 = $(`<div id="html_fcc4984f990e4e699235b301b7662018" style="width: 100.0%; height: 100.0%;">Thomaston</div>`)[0];
popup_06897cc67d9b4738a714b43a7afd85de.setContent(html_fcc4984f990e4e699235b301b7662018);
circle_875a643b3bae4a49a5d27a7d9ce8584f.bindPopup(popup_06897cc67d9b4738a714b43a7afd85de)
;
var circle_cca39fa8fb87485a8fc49ae8343fc6be = L.circle(
[41.7728699, -88.1479278],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_b71cb4a302e04ded935c658bcf502e17 = L.popup({"maxWidth": "100%"});
var html_5e3313333665459b88c7bd78aa497dd2 = $(`<div id="html_5e3313333665459b88c7bd78aa497dd2" style="width: 100.0%; height: 100.0%;">Naperville</div>`)[0];
popup_b71cb4a302e04ded935c658bcf502e17.setContent(html_5e3313333665459b88c7bd78aa497dd2);
circle_cca39fa8fb87485a8fc49ae8343fc6be.bindPopup(popup_b71cb4a302e04ded935c658bcf502e17)
;
var circle_2553feba318543738a77c98433d2cf8a = L.circle(
[36.1672559, -115.1485163],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_64b91d10d6354e6e94cf51772f200bc2 = L.popup({"maxWidth": "100%"});
var html_3ee02d1c8641438686fe038acd5ace38 = $(`<div id="html_3ee02d1c8641438686fe038acd5ace38" style="width: 100.0%; height: 100.0%;">Las Vegas</div>`)[0];
popup_64b91d10d6354e6e94cf51772f200bc2.setContent(html_3ee02d1c8641438686fe038acd5ace38);
circle_2553feba318543738a77c98433d2cf8a.bindPopup(popup_64b91d10d6354e6e94cf51772f200bc2)
;
var circle_9b632af2c3ae473288838ab4e2417c78 = L.circle(
[35.3187279, -82.4609528],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_230b23c60f214173b149b0aca632a85b = L.popup({"maxWidth": "100%"});
var html_1f52503462c54362bd1abcd26c8d81b9 = $(`<div id="html_1f52503462c54362bd1abcd26c8d81b9" style="width: 100.0%; height: 100.0%;">Hendersonville</div>`)[0];
popup_230b23c60f214173b149b0aca632a85b.setContent(html_1f52503462c54362bd1abcd26c8d81b9);
circle_9b632af2c3ae473288838ab4e2417c78.bindPopup(popup_230b23c60f214173b149b0aca632a85b)
;
var circle_4adf338e2fae471db7fc10d4d0e93ace = L.circle(
[27.9477595, -82.458444],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_ce0f5bea20884cd7b7e655c1c264836b = L.popup({"maxWidth": "100%"});
var html_fe6aa6f9bc684866b9b3ec157fc0efbb = $(`<div id="html_fe6aa6f9bc684866b9b3ec157fc0efbb" style="width: 100.0%; height: 100.0%;">Tampa</div>`)[0];
popup_ce0f5bea20884cd7b7e655c1c264836b.setContent(html_fe6aa6f9bc684866b9b3ec157fc0efbb);
circle_4adf338e2fae471db7fc10d4d0e93ace.bindPopup(popup_ce0f5bea20884cd7b7e655c1c264836b)
;
var circle_f395aa70a39946c0bb428476837680cd = L.circle(
[39.7837304, -100.4458825],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_a0412f7a965241dc9a87b805385de012 = L.popup({"maxWidth": "100%"});
var html_2328f79b50bd452e891987f83afec7de = $(`<div id="html_2328f79b50bd452e891987f83afec7de" style="width: 100.0%; height: 100.0%;">United States</div>`)[0];
popup_a0412f7a965241dc9a87b805385de012.setContent(html_2328f79b50bd452e891987f83afec7de);
circle_f395aa70a39946c0bb428476837680cd.bindPopup(popup_a0412f7a965241dc9a87b805385de012)
;
var circle_6fbafb7666c24e93b003783ea5fc81fc = L.circle(
[59.5312624, 18.0982921],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_0636198985c94988a748ce21019a4d30 = L.popup({"maxWidth": "100%"});
var html_f3cf50c65c1a4df890ed02c409f31101 = $(`<div id="html_f3cf50c65c1a4df890ed02c409f31101" style="width: 100.0%; height: 100.0%;">Vallentuna</div>`)[0];
popup_0636198985c94988a748ce21019a4d30.setContent(html_f3cf50c65c1a4df890ed02c409f31101);
circle_6fbafb7666c24e93b003783ea5fc81fc.bindPopup(popup_0636198985c94988a748ce21019a4d30)
;
var circle_5028968ac2d24ff79cc4f9c0919c8be8 = L.circle(
[49.8955367, -97.1384584],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_47775eaccb2f41b1b824384f7df7ca0b = L.popup({"maxWidth": "100%"});
var html_0ed457fb8cd84450b261804ca65115d8 = $(`<div id="html_0ed457fb8cd84450b261804ca65115d8" style="width: 100.0%; height: 100.0%;">Winnipeg</div>`)[0];
popup_47775eaccb2f41b1b824384f7df7ca0b.setContent(html_0ed457fb8cd84450b261804ca65115d8);
circle_5028968ac2d24ff79cc4f9c0919c8be8.bindPopup(popup_47775eaccb2f41b1b824384f7df7ca0b)
;
var circle_de93395662664c0f8e7911b86837cae5 = L.circle(
[59.5312624, 18.0982921],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_c1f881b36ba64a8bb50010cc4474cf68 = L.popup({"maxWidth": "100%"});
var html_491ee1077c1148ca8b3c0b1fba90d92d = $(`<div id="html_491ee1077c1148ca8b3c0b1fba90d92d" style="width: 100.0%; height: 100.0%;">Vallentuna</div>`)[0];
popup_c1f881b36ba64a8bb50010cc4474cf68.setContent(html_491ee1077c1148ca8b3c0b1fba90d92d);
circle_de93395662664c0f8e7911b86837cae5.bindPopup(popup_c1f881b36ba64a8bb50010cc4474cf68)
;
var circle_c9c8f0e385f9481eb7854665e80bbe44 = L.circle(
[35.3187279, -82.4609528],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_39a5afa67fe6412a9554e37d2d0dcf8f = L.popup({"maxWidth": "100%"});
var html_b3d031bd7f9842498ae5a5656229593f = $(`<div id="html_b3d031bd7f9842498ae5a5656229593f" style="width: 100.0%; height: 100.0%;">Hendersonville</div>`)[0];
popup_39a5afa67fe6412a9554e37d2d0dcf8f.setContent(html_b3d031bd7f9842498ae5a5656229593f);
circle_c9c8f0e385f9481eb7854665e80bbe44.bindPopup(popup_39a5afa67fe6412a9554e37d2d0dcf8f)
;
var circle_e67b76311f814697b5cb828e5c83e9d6 = L.circle(
[54.909147000000004, 8.305282375710753],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_ab91cbd3bd5e4c33b0152a48d2fec8ac = L.popup({"maxWidth": "100%"});
var html_2860bebda2674932bd7a9d74a0f2c864 = $(`<div id="html_2860bebda2674932bd7a9d74a0f2c864" style="width: 100.0%; height: 100.0%;">Hamburg</div>`)[0];
popup_ab91cbd3bd5e4c33b0152a48d2fec8ac.setContent(html_2860bebda2674932bd7a9d74a0f2c864);
circle_e67b76311f814697b5cb828e5c83e9d6.bindPopup(popup_ab91cbd3bd5e4c33b0152a48d2fec8ac)
;
var circle_cdd8342ff1f84b12aceb01cd67cd6052 = L.circle(
[38.4210209, -121.4238414],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);
var popup_a158a510e6804e149c9ca7bd05198367 = L.popup({"maxWidth": "100%"});
var html_70bb93d6260948a4959ac28b7e8756ec = $(`<div id="html_70bb93d6260948a4959ac28b7e8756ec" style="width: 100.0%; height: 100.0%;">Laguna</div>`)[0];
popup_a158a510e6804e149c9ca7bd05198367.setContent(html_70bb93d6260948a4959ac28b7e8756ec);
circle_cdd8342ff1f84b12aceb01cd67cd6052.bindPopup(popup_a158a510e6804e149c9ca7bd05198367)
;
var circle_36e9e86ba3fa449d96ddcda74a2787c9 = L.circle(
[54.909147000000004, 8.305282375710753],
{"bubblingMouseEvents": true, "color": "crimson", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "crimson", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 400, "stroke": true, "weight": 3}
).addTo(map_562454e6788c43f7a6f60d52aba871a7);