-
Notifications
You must be signed in to change notification settings - Fork 2
/
covid_map_2.html
3306 lines (1589 loc) · 176 KB
/
covid_map_2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_f53349eb203d49fd872abfe24534f0af {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@master/folium/templates/leaflet_heat.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_f53349eb203d49fd872abfe24534f0af" ></div>
</body>
<script>
var map_f53349eb203d49fd872abfe24534f0af = L.map(
"map_f53349eb203d49fd872abfe24534f0af",
{
center: [0, 0],
crs: L.CRS.EPSG3857,
zoom: 1,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_9ac2315ea5aa4fecadcf168213bcb961 = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png",
{"attribution": "Map tiles by \u003ca href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. 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": 2, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var heat_map_ae91eeed377c419498e495a96e828eba = L.heatLayer(
[[33.93911, 67.709953, 6213.0], [41.153332, 20.168331, 2456.0], [28.033886, 1.6596259999999998, 3956.0], [42.546245, 1.6015540000000001, 127.0], [-11.202691999999999, 17.873887, 969.0], [17.060816, -61.796428000000006, 42.0], [-38.416097, -63.616671999999994, 101955.0], [40.069099, 45.038189, 4569.0], [-25.274398, 133.775136, 914.0], [47.516231, 14.550072, 10729.0], [40.143105, 47.576927000000005, 4994.0], [25.03428, -77.39628, 273.0], [25.930414000000003, 50.637772, 1380.0], [23.684994, 90.35633100000001, 18125.0], [13.193887, -59.543198, 48.0], [53.709807, 27.953389, 3334.0], [50.503887, 4.469936, 25209.0], [17.189877, -88.49765, 332.0], [9.30769, 2.315834, 107.0], [27.514162, 90.433601, 2.0], [-16.290154, -63.588653, 17458.0], [43.915886, 17.679076000000002, 9669.0], [-22.328474, 24.684866, 1328.0], [-14.235004, -51.92528, 542214.0], [42.733883, 25.48583, 18177.0], [12.238333, -1.561593, 169.0], [-3.3730559999999996, 29.918885999999997, 8.0], [12.565679, 104.990963, 1128.0], [7.369722, 12.354722, 1330.0], [56.130366, -106.34677099999999, 24142.0], [16.002082, -24.013197, 295.0], [6.611111, 20.939444, 98.0], [15.454166, 18.732207, 174.0], [-35.675146999999996, -71.542969, 34514.0], [35.86166, 104.195397, 4848.0], [4.570868, -74.297333, 116307.0], [-11.875001, 43.872219, 147.0], [9.748917, -83.753428, 4874.0], [45.1, 15.2, 8240.0], [21.521757, -77.78116700000001, 1966.0], [35.126413, 33.429859, 390.0], [49.817492, 15.472961999999999, 30338.0], [7.539989, -5.54708, 322.0], [56.26392, 9.501785, 2543.0], [11.825138, 42.590275, 155.0], [15.414999, -61.370976, 0.0], [18.735692999999998, -70.162651, 3916.0], [-1.8312389999999998, -78.183406, 21953.0], [26.820553000000004, 30.802497999999996, 16439.0], [13.794185, -88.89653, 2499.0], [1.6508009999999997, 10.267895, 123.0], [15.179383999999999, 39.782334000000006, 32.0], [58.595271999999994, 25.013607, 1271.0], [9.145, 40.489672999999996, 4357.0], [-16.578193, 179.414413, 98.0], [61.92411, 25.748151, 979.0], [46.227638, 2.213749, 111662.0], [-0.803689, 11.609444, 162.0], [13.443182, -15.310139000000001, 190.0], [42.315407, 43.356891999999995, 5566.0], [51.165690999999995, 10.451526, 91370.0], [7.946527000000001, -1.0231940000000002, 812.0], [39.074208, 21.824312, 12834.0], [12.262775999999999, -61.604170999999994, 1.0], [15.783470999999999, -90.23075899999999, 9914.0], [9.945587, -9.696645, 190.0], [11.803749, -15.180413, 73.0], [4.860416000000001, -58.93018000000001, 512.0], [18.971187, -72.28521500000001, 508.0], [15.199998999999998, -86.241905, 7391.0], [47.162494, 19.503304, 30017.0], [64.96305100000001, -19.020835, 29.0], [20.593684, 78.96288, 414108.0], [-0.789275, 113.921327, 74920.0], [33.223191, 43.679291, 17892.0], [53.41291, -8.243889999999999, 5018.0], [31.046051000000002, 34.851612, 6450.0], [41.87194, 12.56738, 127867.0], [18.109581, -77.297508, 1155.0], [36.204824, 138.252924, 14993.0], [30.585164000000002, 36.238414, 9896.0], [48.019573, 66.923684, 3612.0], [-0.023559, 37.906193, 3783.0], [-3.3704169999999998, -168.734039, 0.0], [29.311659999999996, 47.481766, 2238.0], [41.20438, 74.766098, 2186.0], [56.879635, 24.603189, 2544.0], [33.854721000000005, 35.862285, 7886.0], [-29.609988, 28.233608, 339.0], [6.4280550000000005, -9.429499, 148.0], [26.3351, 17.228331, 3299.0], [47.166000000000004, 9.555373, 59.0], [55.169438, 23.881275, 4404.0], [49.815273, 6.129583, 821.0], [-18.766947000000002, 46.869107, 937.0], [-13.254307999999998, 34.301525, 1352.0], [4.210483999999999, 101.97576600000001, 7148.0], [3.202778, 73.22068, 216.0], [17.570692, -3.9961660000000006, 530.0], [35.937496, 14.375416, 420.0], [7.131474000000001, 171.184478, 0.0], [21.00789, -10.940835, 509.0], [-20.348404000000002, 57.552152, 19.0], [23.634501, -102.552784, 236331.0], [47.411631, 28.369884999999996, 6227.0], [43.750298, 7.412841, 33.0], [46.862496, 103.84665600000001, 740.0], [42.708678000000006, 19.37439, 1623.0], [31.791702, -7.09262, 9466.0], [-18.665695, 35.529562, 1138.0], [-22.957639999999998, 18.49041, 2532.0], [28.394857000000002, 84.12400799999999, 9582.0], [52.132633, 5.291266, 17776.0], [-40.900557, 174.88597099999998, 26.0], [12.865416, -85.207229, 193.0], [17.607789, 8.081666, 194.0], [9.081999, 8.675277000000001, 2128.0], [60.472024, 8.468946, 796.0], [21.512583, 55.923255000000005, 3498.0], [30.375321000000003, 69.345116, 22811.0], [7.51498, 134.58252, 0.0], [8.537981, -80.782127, 6703.0], [-6.314993, 143.95555, 187.0], [-23.442503, -58.44383199999999, 14288.0], [-9.189967, -75.015152, 195047.0], [12.879721, 121.77401699999999, 26786.0], [51.919438, 19.145135999999997, 75215.0], [39.399871999999995, -8.224454, 17215.0], [25.354826, 51.183884, 599.0], [45.943160999999996, 24.96676, 34254.0], [-1.940278, 29.873888, 666.0], [17.357822, -62.782998, 3.0], [13.909444, -60.97889300000001, 87.0], [-13.759029, -172.10462900000002, 0.0], [43.94236, 12.457777, 90.0], [23.885942, 45.079162, 8048.0], [14.497401000000002, -14.452361999999999, 1227.0], [44.016521000000004, 21.005859, 7084.0], [-4.679574, 55.491977, 86.0], [8.460555000000001, -11.779889, 115.0], [1.352083, 103.819836, 36.0], [48.669026, 19.699023999999998, 12527.0], [46.151241, 14.995463, 4425.0], [-9.645710000000001, 160.156194, 0.0], [5.152149, 46.199616, 781.0], [-30.559482, 22.937506, 67080.0], [40.463667, -3.7492199999999998, 81096.0], [7.873054, 80.77179699999999, 3827.0], [12.862807, 30.217636, 2776.0], [3.9193050000000005, -56.02778299999999, 611.0], [-26.522503000000004, 31.465866, 719.0], [60.128161, 18.643501, 14646.0], [46.818188, 8.227511999999999, 10903.0], [38.861034000000004, 71.276093, 112.0], [15.870032, 100.992541, 3422.0], [-8.874217, 125.727539, 26.0], [8.619543, 0.824782, 138.0], [10.691803, -61.222503, 998.0], [33.886917, 9.537499, 17527.0], [38.963745, 35.243322, 50604.0], [1.373333, 32.290275, 2392.0], [48.379433, 31.16558, 55170.0], [23.424076, 53.847818000000004, 1900.0], [55.378051, -3.435973, 128988.0], [-32.522779, -55.765834999999996, 5883.0], [41.377491, 64.585262, 801.0], [-15.376706, 166.959158, 1.0], [15.552726999999999, 48.516388, 1370.0], [-13.133897, 27.849332, 3113.0], [-19.015438, 29.154857, 2697.0]],
{"blur": 15, "maxZoom": 18, "minOpacity": 0.5, "radius": 0}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var circle_marker_eafef3880ac24e14aa3e919415ac96a1 = L.circleMarker(
[33.93911, 67.709953],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_24b962e631724c75aac8ad374710d88a = L.popup({"maxWidth": "100%"});
var html_31f8ccd1926c490a9ca32afd9e416ec5 = $(`<div id="html_31f8ccd1926c490a9ca32afd9e416ec5" style="width: 100.0%; height: 100.0%;">['Afghanistan', 6213]</div>`)[0];
popup_24b962e631724c75aac8ad374710d88a.setContent(html_31f8ccd1926c490a9ca32afd9e416ec5);
circle_marker_eafef3880ac24e14aa3e919415ac96a1.bindPopup(popup_24b962e631724c75aac8ad374710d88a)
;
var circle_marker_32c49e4e5ed04b85b3ced8f87ac268a2 = L.circleMarker(
[41.153332, 20.168331],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_2ddc286d13ed40228ee022cfce23e2b0 = L.popup({"maxWidth": "100%"});
var html_677160934c7d45eea9389f322eafeda2 = $(`<div id="html_677160934c7d45eea9389f322eafeda2" style="width: 100.0%; height: 100.0%;">['Albania', 2456]</div>`)[0];
popup_2ddc286d13ed40228ee022cfce23e2b0.setContent(html_677160934c7d45eea9389f322eafeda2);
circle_marker_32c49e4e5ed04b85b3ced8f87ac268a2.bindPopup(popup_2ddc286d13ed40228ee022cfce23e2b0)
;
var circle_marker_8c63e38040674250bae7d47d005e4ecb = L.circleMarker(
[28.033886, 1.6596259999999998],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_66e3fe0b6d0a40d1896777d6f88d7cdf = L.popup({"maxWidth": "100%"});
var html_ab1339d1f185492baafe320405b43174 = $(`<div id="html_ab1339d1f185492baafe320405b43174" style="width: 100.0%; height: 100.0%;">['Algeria', 3956]</div>`)[0];
popup_66e3fe0b6d0a40d1896777d6f88d7cdf.setContent(html_ab1339d1f185492baafe320405b43174);
circle_marker_8c63e38040674250bae7d47d005e4ecb.bindPopup(popup_66e3fe0b6d0a40d1896777d6f88d7cdf)
;
var circle_marker_10806929b7b84f1cb6d3fa64ae802660 = L.circleMarker(
[42.546245, 1.6015540000000001],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_5b2063f6b3894d48997a188e428a937d = L.popup({"maxWidth": "100%"});
var html_823d1fc493e649d4aefa3a37707a1a3d = $(`<div id="html_823d1fc493e649d4aefa3a37707a1a3d" style="width: 100.0%; height: 100.0%;">['Andorra', 127]</div>`)[0];
popup_5b2063f6b3894d48997a188e428a937d.setContent(html_823d1fc493e649d4aefa3a37707a1a3d);
circle_marker_10806929b7b84f1cb6d3fa64ae802660.bindPopup(popup_5b2063f6b3894d48997a188e428a937d)
;
var circle_marker_3f600e0c1481445c9b389ba54113b674 = L.circleMarker(
[-11.202691999999999, 17.873887],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_fab13599185a4da4bf73c1d1709ecf52 = L.popup({"maxWidth": "100%"});
var html_87d426d720644258a0605a68d748e4ac = $(`<div id="html_87d426d720644258a0605a68d748e4ac" style="width: 100.0%; height: 100.0%;">['Angola', 969]</div>`)[0];
popup_fab13599185a4da4bf73c1d1709ecf52.setContent(html_87d426d720644258a0605a68d748e4ac);
circle_marker_3f600e0c1481445c9b389ba54113b674.bindPopup(popup_fab13599185a4da4bf73c1d1709ecf52)
;
var circle_marker_9016ee7838fe46a1acf65237a135b938 = L.circleMarker(
[17.060816, -61.796428000000006],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_ba71356c9d224440a18d0a36f83bc797 = L.popup({"maxWidth": "100%"});
var html_f121069ab3294debbd024e9c9ba5e908 = $(`<div id="html_f121069ab3294debbd024e9c9ba5e908" style="width: 100.0%; height: 100.0%;">['Antigua and Barbuda', 42]</div>`)[0];
popup_ba71356c9d224440a18d0a36f83bc797.setContent(html_f121069ab3294debbd024e9c9ba5e908);
circle_marker_9016ee7838fe46a1acf65237a135b938.bindPopup(popup_ba71356c9d224440a18d0a36f83bc797)
;
var circle_marker_44077e66345747679b2cac5bf6b05003 = L.circleMarker(
[-38.416097, -63.616671999999994],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_c2d88939f4354315bb3c8ec2bdb617df = L.popup({"maxWidth": "100%"});
var html_8fef7a26eb9a499fb5d2614bbd355d28 = $(`<div id="html_8fef7a26eb9a499fb5d2614bbd355d28" style="width: 100.0%; height: 100.0%;">['Argentina', 101955]</div>`)[0];
popup_c2d88939f4354315bb3c8ec2bdb617df.setContent(html_8fef7a26eb9a499fb5d2614bbd355d28);
circle_marker_44077e66345747679b2cac5bf6b05003.bindPopup(popup_c2d88939f4354315bb3c8ec2bdb617df)
;
var circle_marker_7da7b83ffe214b5aa551cc6d3a5899ce = L.circleMarker(
[40.069099, 45.038189],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_2b0fa79b6f6b4820bea80e4955b9081c = L.popup({"maxWidth": "100%"});
var html_1a39cc329ce74da5b824eb10b5cdeaf9 = $(`<div id="html_1a39cc329ce74da5b824eb10b5cdeaf9" style="width: 100.0%; height: 100.0%;">['Armenia', 4569]</div>`)[0];
popup_2b0fa79b6f6b4820bea80e4955b9081c.setContent(html_1a39cc329ce74da5b824eb10b5cdeaf9);
circle_marker_7da7b83ffe214b5aa551cc6d3a5899ce.bindPopup(popup_2b0fa79b6f6b4820bea80e4955b9081c)
;
var circle_marker_3fc5367b1e374b39b4819595f709676c = L.circleMarker(
[-25.274398, 133.775136],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_db47fb5d63b540b4abc60c8ba2b37fc6 = L.popup({"maxWidth": "100%"});
var html_c12bde8f97c84a5390cdafef920e94de = $(`<div id="html_c12bde8f97c84a5390cdafef920e94de" style="width: 100.0%; height: 100.0%;">['Australia', 914]</div>`)[0];
popup_db47fb5d63b540b4abc60c8ba2b37fc6.setContent(html_c12bde8f97c84a5390cdafef920e94de);
circle_marker_3fc5367b1e374b39b4819595f709676c.bindPopup(popup_db47fb5d63b540b4abc60c8ba2b37fc6)
;
var circle_marker_e7f6afde1e4142acba65511ae9dfd711 = L.circleMarker(
[47.516231, 14.550072],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_7684934b22594899a470cf88d210e3fd = L.popup({"maxWidth": "100%"});
var html_61ad99089d3d4c4293b18521dd618936 = $(`<div id="html_61ad99089d3d4c4293b18521dd618936" style="width: 100.0%; height: 100.0%;">['Austria', 10729]</div>`)[0];
popup_7684934b22594899a470cf88d210e3fd.setContent(html_61ad99089d3d4c4293b18521dd618936);
circle_marker_e7f6afde1e4142acba65511ae9dfd711.bindPopup(popup_7684934b22594899a470cf88d210e3fd)
;
var circle_marker_ceb8251700fe4749985270c5e7d0c5a3 = L.circleMarker(
[40.143105, 47.576927000000005],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_013927a9791f4d4fbee40b82928b0b54 = L.popup({"maxWidth": "100%"});
var html_be461f66b64d467ea5cbd9e04fdd4810 = $(`<div id="html_be461f66b64d467ea5cbd9e04fdd4810" style="width: 100.0%; height: 100.0%;">['Azerbaijan', 4994]</div>`)[0];
popup_013927a9791f4d4fbee40b82928b0b54.setContent(html_be461f66b64d467ea5cbd9e04fdd4810);
circle_marker_ceb8251700fe4749985270c5e7d0c5a3.bindPopup(popup_013927a9791f4d4fbee40b82928b0b54)
;
var circle_marker_8ccf9ebe9aa84a9288bbc191786f8364 = L.circleMarker(
[25.03428, -77.39628],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_b0c387644b0c4eaea3251bcad030f3da = L.popup({"maxWidth": "100%"});
var html_f2cf050a755241e3bc4b59e591f44cf1 = $(`<div id="html_f2cf050a755241e3bc4b59e591f44cf1" style="width: 100.0%; height: 100.0%;">['Bahamas', 273]</div>`)[0];
popup_b0c387644b0c4eaea3251bcad030f3da.setContent(html_f2cf050a755241e3bc4b59e591f44cf1);
circle_marker_8ccf9ebe9aa84a9288bbc191786f8364.bindPopup(popup_b0c387644b0c4eaea3251bcad030f3da)
;
var circle_marker_0b34bfcaba7c4ebc9025aee6b4e98d37 = L.circleMarker(
[25.930414000000003, 50.637772],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_f31227f14d2a43199403592ba8bfa3ed = L.popup({"maxWidth": "100%"});
var html_46f5ff4f4fb8442c9720fd34dd090cf5 = $(`<div id="html_46f5ff4f4fb8442c9720fd34dd090cf5" style="width: 100.0%; height: 100.0%;">['Bahrain', 1380]</div>`)[0];
popup_f31227f14d2a43199403592ba8bfa3ed.setContent(html_46f5ff4f4fb8442c9720fd34dd090cf5);
circle_marker_0b34bfcaba7c4ebc9025aee6b4e98d37.bindPopup(popup_f31227f14d2a43199403592ba8bfa3ed)
;
var circle_marker_27dc0b68a6a04db8b61774e3ca59f674 = L.circleMarker(
[23.684994, 90.35633100000001],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_3435083ec0a3439e841ad73877ae89e8 = L.popup({"maxWidth": "100%"});
var html_d8b0a05710144cb5924ab5fd7551c348 = $(`<div id="html_d8b0a05710144cb5924ab5fd7551c348" style="width: 100.0%; height: 100.0%;">['Bangladesh', 18125]</div>`)[0];
popup_3435083ec0a3439e841ad73877ae89e8.setContent(html_d8b0a05710144cb5924ab5fd7551c348);
circle_marker_27dc0b68a6a04db8b61774e3ca59f674.bindPopup(popup_3435083ec0a3439e841ad73877ae89e8)
;
var circle_marker_5826e28c9dee4d51bc2bf6e055a9416b = L.circleMarker(
[13.193887, -59.543198],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_cb7d089af2c9421e8aa48fcf4ab45902 = L.popup({"maxWidth": "100%"});
var html_8f9cc0534c814564a3554c4314d5b31b = $(`<div id="html_8f9cc0534c814564a3554c4314d5b31b" style="width: 100.0%; height: 100.0%;">['Barbados', 48]</div>`)[0];
popup_cb7d089af2c9421e8aa48fcf4ab45902.setContent(html_8f9cc0534c814564a3554c4314d5b31b);
circle_marker_5826e28c9dee4d51bc2bf6e055a9416b.bindPopup(popup_cb7d089af2c9421e8aa48fcf4ab45902)
;
var circle_marker_f03cf70c81f949ea89843e109121fe01 = L.circleMarker(
[53.709807, 27.953389],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_74c4191b0ade4ef9ad0eda5357385da9 = L.popup({"maxWidth": "100%"});
var html_581384f80f01401b99a42aae1042876f = $(`<div id="html_581384f80f01401b99a42aae1042876f" style="width: 100.0%; height: 100.0%;">['Belarus', 3334]</div>`)[0];
popup_74c4191b0ade4ef9ad0eda5357385da9.setContent(html_581384f80f01401b99a42aae1042876f);
circle_marker_f03cf70c81f949ea89843e109121fe01.bindPopup(popup_74c4191b0ade4ef9ad0eda5357385da9)
;
var circle_marker_14d2f31a96574324b0169fe205c09216 = L.circleMarker(
[50.503887, 4.469936],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_6f09e7e3d91a4fefb45cf4ceb0881862 = L.popup({"maxWidth": "100%"});
var html_070d3c539f6b4df6a59d7de8c6b1625e = $(`<div id="html_070d3c539f6b4df6a59d7de8c6b1625e" style="width: 100.0%; height: 100.0%;">['Belgium', 25209]</div>`)[0];
popup_6f09e7e3d91a4fefb45cf4ceb0881862.setContent(html_070d3c539f6b4df6a59d7de8c6b1625e);
circle_marker_14d2f31a96574324b0169fe205c09216.bindPopup(popup_6f09e7e3d91a4fefb45cf4ceb0881862)
;
var circle_marker_7a24dbaf104f401098b766bea5c96dfe = L.circleMarker(
[17.189877, -88.49765],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_4d9fc7b24e4f4646ad5fa069ce8a914a = L.popup({"maxWidth": "100%"});
var html_b667290f9f3042ff970337307bd6bdc4 = $(`<div id="html_b667290f9f3042ff970337307bd6bdc4" style="width: 100.0%; height: 100.0%;">['Belize', 332]</div>`)[0];
popup_4d9fc7b24e4f4646ad5fa069ce8a914a.setContent(html_b667290f9f3042ff970337307bd6bdc4);
circle_marker_7a24dbaf104f401098b766bea5c96dfe.bindPopup(popup_4d9fc7b24e4f4646ad5fa069ce8a914a)
;
var circle_marker_3422ff3e52d742aaa6707243d20c2fe7 = L.circleMarker(
[9.30769, 2.315834],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_9e20fbe2e83643fe935ba8a6519537a4 = L.popup({"maxWidth": "100%"});
var html_3302c87f32ef47dc8e52bc340337458a = $(`<div id="html_3302c87f32ef47dc8e52bc340337458a" style="width: 100.0%; height: 100.0%;">['Benin', 107]</div>`)[0];
popup_9e20fbe2e83643fe935ba8a6519537a4.setContent(html_3302c87f32ef47dc8e52bc340337458a);
circle_marker_3422ff3e52d742aaa6707243d20c2fe7.bindPopup(popup_9e20fbe2e83643fe935ba8a6519537a4)
;
var circle_marker_c1dbb7d498164a47adfa731138f37a0c = L.circleMarker(
[27.514162, 90.433601],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_d307d782de20419482c0b677b921131f = L.popup({"maxWidth": "100%"});
var html_010ca042b4734c0c98a72f6911a105cb = $(`<div id="html_010ca042b4734c0c98a72f6911a105cb" style="width: 100.0%; height: 100.0%;">['Bhutan', 2]</div>`)[0];
popup_d307d782de20419482c0b677b921131f.setContent(html_010ca042b4734c0c98a72f6911a105cb);
circle_marker_c1dbb7d498164a47adfa731138f37a0c.bindPopup(popup_d307d782de20419482c0b677b921131f)
;
var circle_marker_8e15a471dacf4af69a04c2798540811f = L.circleMarker(
[-16.290154, -63.588653],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_016e133b8d1846e39843f2f1f75b1921 = L.popup({"maxWidth": "100%"});
var html_1985d0502a264168b3de88c2707a7bf3 = $(`<div id="html_1985d0502a264168b3de88c2707a7bf3" style="width: 100.0%; height: 100.0%;">['Bolivia', 17458]</div>`)[0];
popup_016e133b8d1846e39843f2f1f75b1921.setContent(html_1985d0502a264168b3de88c2707a7bf3);
circle_marker_8e15a471dacf4af69a04c2798540811f.bindPopup(popup_016e133b8d1846e39843f2f1f75b1921)
;
var circle_marker_eeece8f05a484186b0e0dcba03bb0d6f = L.circleMarker(
[43.915886, 17.679076000000002],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_7bf38c7a59a54aeb98347123b5eab527 = L.popup({"maxWidth": "100%"});
var html_e96ff051eedc43b5a54d9a4b17523661 = $(`<div id="html_e96ff051eedc43b5a54d9a4b17523661" style="width: 100.0%; height: 100.0%;">['Bosnia and Herzegovina', 9669]</div>`)[0];
popup_7bf38c7a59a54aeb98347123b5eab527.setContent(html_e96ff051eedc43b5a54d9a4b17523661);
circle_marker_eeece8f05a484186b0e0dcba03bb0d6f.bindPopup(popup_7bf38c7a59a54aeb98347123b5eab527)
;
var circle_marker_f4f182d58f4c42c6afea06cd47396afa = L.circleMarker(
[-22.328474, 24.684866],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_0945d6d7329e4a3ea7b1dec0dea3ab5f = L.popup({"maxWidth": "100%"});
var html_0801d7de8f7b4a879f88d395d0482cc4 = $(`<div id="html_0801d7de8f7b4a879f88d395d0482cc4" style="width: 100.0%; height: 100.0%;">['Botswana', 1328]</div>`)[0];
popup_0945d6d7329e4a3ea7b1dec0dea3ab5f.setContent(html_0801d7de8f7b4a879f88d395d0482cc4);
circle_marker_f4f182d58f4c42c6afea06cd47396afa.bindPopup(popup_0945d6d7329e4a3ea7b1dec0dea3ab5f)
;
var circle_marker_3305ea90cfc54136b39e7a64e5baf7e3 = L.circleMarker(
[-14.235004, -51.92528],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_b3c42e3669fa43aa97ccac6aaed413c5 = L.popup({"maxWidth": "100%"});
var html_a3a9bb67d33845f49773f7939cd0b663 = $(`<div id="html_a3a9bb67d33845f49773f7939cd0b663" style="width: 100.0%; height: 100.0%;">['Brazil', 542214]</div>`)[0];
popup_b3c42e3669fa43aa97ccac6aaed413c5.setContent(html_a3a9bb67d33845f49773f7939cd0b663);
circle_marker_3305ea90cfc54136b39e7a64e5baf7e3.bindPopup(popup_b3c42e3669fa43aa97ccac6aaed413c5)
;
var circle_marker_06581e7514ce421581bfc78b284e99f2 = L.circleMarker(
[42.733883, 25.48583],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_8760f9c070e7499f892174cd58cb0137 = L.popup({"maxWidth": "100%"});
var html_9bf99a992dff4611baf44ec4ac836855 = $(`<div id="html_9bf99a992dff4611baf44ec4ac836855" style="width: 100.0%; height: 100.0%;">['Bulgaria', 18177]</div>`)[0];
popup_8760f9c070e7499f892174cd58cb0137.setContent(html_9bf99a992dff4611baf44ec4ac836855);
circle_marker_06581e7514ce421581bfc78b284e99f2.bindPopup(popup_8760f9c070e7499f892174cd58cb0137)
;
var circle_marker_e2c8f123bda24cb1ace221c62c370b35 = L.circleMarker(
[12.238333, -1.561593],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_d4feef58e2314f5fa697aba314ebd499 = L.popup({"maxWidth": "100%"});
var html_8a9a4516c74344b9a763fe275155c324 = $(`<div id="html_8a9a4516c74344b9a763fe275155c324" style="width: 100.0%; height: 100.0%;">['Burkina Faso', 169]</div>`)[0];
popup_d4feef58e2314f5fa697aba314ebd499.setContent(html_8a9a4516c74344b9a763fe275155c324);
circle_marker_e2c8f123bda24cb1ace221c62c370b35.bindPopup(popup_d4feef58e2314f5fa697aba314ebd499)
;
var circle_marker_5418a5d7e3b9436a852a3a25c4514422 = L.circleMarker(
[-3.3730559999999996, 29.918885999999997],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_6cfb16cd80b94d919bb0cf9e14929d39 = L.popup({"maxWidth": "100%"});
var html_94f10486a861424685310e4c89b512c9 = $(`<div id="html_94f10486a861424685310e4c89b512c9" style="width: 100.0%; height: 100.0%;">['Burundi', 8]</div>`)[0];
popup_6cfb16cd80b94d919bb0cf9e14929d39.setContent(html_94f10486a861424685310e4c89b512c9);
circle_marker_5418a5d7e3b9436a852a3a25c4514422.bindPopup(popup_6cfb16cd80b94d919bb0cf9e14929d39)
;
var circle_marker_26718107054645ea8802c5c15e39fae3 = L.circleMarker(
[12.565679, 104.990963],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_a824a9bab3604cb3a15fc2f18b273988 = L.popup({"maxWidth": "100%"});
var html_34582ecaf57445f9bf82554b321448cd = $(`<div id="html_34582ecaf57445f9bf82554b321448cd" style="width: 100.0%; height: 100.0%;">['Cambodia', 1128]</div>`)[0];
popup_a824a9bab3604cb3a15fc2f18b273988.setContent(html_34582ecaf57445f9bf82554b321448cd);
circle_marker_26718107054645ea8802c5c15e39fae3.bindPopup(popup_a824a9bab3604cb3a15fc2f18b273988)
;
var circle_marker_48a5c5739e35473489e4aa0953ed8a27 = L.circleMarker(
[7.369722, 12.354722],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_113722941a764cd7a623aff1d2384e5c = L.popup({"maxWidth": "100%"});
var html_aa6ede361e554aed9f527762a26d113c = $(`<div id="html_aa6ede361e554aed9f527762a26d113c" style="width: 100.0%; height: 100.0%;">['Cameroon', 1330]</div>`)[0];
popup_113722941a764cd7a623aff1d2384e5c.setContent(html_aa6ede361e554aed9f527762a26d113c);
circle_marker_48a5c5739e35473489e4aa0953ed8a27.bindPopup(popup_113722941a764cd7a623aff1d2384e5c)
;
var circle_marker_f95e20547d6c4f4d82f0aa24079a5599 = L.circleMarker(
[56.130366, -106.34677099999999],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_806131aec3eb46aba94bf8500930622a = L.popup({"maxWidth": "100%"});
var html_a79c7fa8458b4d01adb5de2831914f5d = $(`<div id="html_a79c7fa8458b4d01adb5de2831914f5d" style="width: 100.0%; height: 100.0%;">['Canada', 24142]</div>`)[0];
popup_806131aec3eb46aba94bf8500930622a.setContent(html_a79c7fa8458b4d01adb5de2831914f5d);
circle_marker_f95e20547d6c4f4d82f0aa24079a5599.bindPopup(popup_806131aec3eb46aba94bf8500930622a)
;
var circle_marker_002ff583f5bb4bbeb1c045ddc759662b = L.circleMarker(
[16.002082, -24.013197],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_66f698bc9268467c8b7ca224fa280fae = L.popup({"maxWidth": "100%"});
var html_fa71c2ce7628407c9019cacc18be63a2 = $(`<div id="html_fa71c2ce7628407c9019cacc18be63a2" style="width: 100.0%; height: 100.0%;">['Cape Verde', 295]</div>`)[0];
popup_66f698bc9268467c8b7ca224fa280fae.setContent(html_fa71c2ce7628407c9019cacc18be63a2);
circle_marker_002ff583f5bb4bbeb1c045ddc759662b.bindPopup(popup_66f698bc9268467c8b7ca224fa280fae)
;
var circle_marker_92069c6cbde94c3cbe3bd81726bad780 = L.circleMarker(
[6.611111, 20.939444],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_7aa6b83f92824f7782343f7819b6c5d5 = L.popup({"maxWidth": "100%"});
var html_1223dc7c16ea4add9fc74741c6464e48 = $(`<div id="html_1223dc7c16ea4add9fc74741c6464e48" style="width: 100.0%; height: 100.0%;">['Central African Republic', 98]</div>`)[0];
popup_7aa6b83f92824f7782343f7819b6c5d5.setContent(html_1223dc7c16ea4add9fc74741c6464e48);
circle_marker_92069c6cbde94c3cbe3bd81726bad780.bindPopup(popup_7aa6b83f92824f7782343f7819b6c5d5)
;
var circle_marker_d20d9fd45d394273ab22156102d0ed74 = L.circleMarker(
[15.454166, 18.732207],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_0b74d5de6b344a408ebc8df336bbcc06 = L.popup({"maxWidth": "100%"});
var html_2fe870f097614dd5b0487b368cb165fd = $(`<div id="html_2fe870f097614dd5b0487b368cb165fd" style="width: 100.0%; height: 100.0%;">['Chad', 174]</div>`)[0];
popup_0b74d5de6b344a408ebc8df336bbcc06.setContent(html_2fe870f097614dd5b0487b368cb165fd);
circle_marker_d20d9fd45d394273ab22156102d0ed74.bindPopup(popup_0b74d5de6b344a408ebc8df336bbcc06)
;
var circle_marker_a6d2f7d71e414fc3a3f97ceca2f803b1 = L.circleMarker(
[-35.675146999999996, -71.542969],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_6d5156e568a7491196c509ec7b7633a3 = L.popup({"maxWidth": "100%"});
var html_3177524f5da54f7b95762c0874c7a9db = $(`<div id="html_3177524f5da54f7b95762c0874c7a9db" style="width: 100.0%; height: 100.0%;">['Chile', 34514]</div>`)[0];
popup_6d5156e568a7491196c509ec7b7633a3.setContent(html_3177524f5da54f7b95762c0874c7a9db);
circle_marker_a6d2f7d71e414fc3a3f97ceca2f803b1.bindPopup(popup_6d5156e568a7491196c509ec7b7633a3)
;
var circle_marker_6f244ecdd3ec4fc48badc14688885c12 = L.circleMarker(
[35.86166, 104.195397],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_b195a51758ea4796894e0de6902fc291 = L.popup({"maxWidth": "100%"});
var html_5560d2692cfb4a31b2e136e1825fe95b = $(`<div id="html_5560d2692cfb4a31b2e136e1825fe95b" style="width: 100.0%; height: 100.0%;">['China', 4848]</div>`)[0];
popup_b195a51758ea4796894e0de6902fc291.setContent(html_5560d2692cfb4a31b2e136e1825fe95b);
circle_marker_6f244ecdd3ec4fc48badc14688885c12.bindPopup(popup_b195a51758ea4796894e0de6902fc291)
;
var circle_marker_f218fff4fc354652a42176d78bfc6197 = L.circleMarker(
[4.570868, -74.297333],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_9909130bfc444b2ab5c2227a641c5863 = L.popup({"maxWidth": "100%"});
var html_35ff57d0a0604842aba3823924754d95 = $(`<div id="html_35ff57d0a0604842aba3823924754d95" style="width: 100.0%; height: 100.0%;">['Colombia', 116307]</div>`)[0];
popup_9909130bfc444b2ab5c2227a641c5863.setContent(html_35ff57d0a0604842aba3823924754d95);
circle_marker_f218fff4fc354652a42176d78bfc6197.bindPopup(popup_9909130bfc444b2ab5c2227a641c5863)
;
var circle_marker_caba4d0d978d44cd931e58410f2646cc = L.circleMarker(
[-11.875001, 43.872219],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_6c2992f591f44d0383629b13dbecd056 = L.popup({"maxWidth": "100%"});
var html_db6a2d5211854dd6bd5c8e882411975a = $(`<div id="html_db6a2d5211854dd6bd5c8e882411975a" style="width: 100.0%; height: 100.0%;">['Comoros', 147]</div>`)[0];
popup_6c2992f591f44d0383629b13dbecd056.setContent(html_db6a2d5211854dd6bd5c8e882411975a);
circle_marker_caba4d0d978d44cd931e58410f2646cc.bindPopup(popup_6c2992f591f44d0383629b13dbecd056)
;
var circle_marker_fcf70685f846416b9f1643a37fe26196 = L.circleMarker(
[9.748917, -83.753428],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_29a74027add24df1a49f45386e636614 = L.popup({"maxWidth": "100%"});
var html_44707f0e8aa6429182cbf3dac7761ddc = $(`<div id="html_44707f0e8aa6429182cbf3dac7761ddc" style="width: 100.0%; height: 100.0%;">['Costa Rica', 4874]</div>`)[0];
popup_29a74027add24df1a49f45386e636614.setContent(html_44707f0e8aa6429182cbf3dac7761ddc);
circle_marker_fcf70685f846416b9f1643a37fe26196.bindPopup(popup_29a74027add24df1a49f45386e636614)
;
var circle_marker_96572a69019840c8a9ae57a6eaccecff = L.circleMarker(
[45.1, 15.2],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_d8a26e6c9ea440e7ab4b05e187fbfa7a = L.popup({"maxWidth": "100%"});
var html_9c6500342f7940db83fd0fbacc598c8c = $(`<div id="html_9c6500342f7940db83fd0fbacc598c8c" style="width: 100.0%; height: 100.0%;">['Croatia', 8240]</div>`)[0];
popup_d8a26e6c9ea440e7ab4b05e187fbfa7a.setContent(html_9c6500342f7940db83fd0fbacc598c8c);
circle_marker_96572a69019840c8a9ae57a6eaccecff.bindPopup(popup_d8a26e6c9ea440e7ab4b05e187fbfa7a)
;
var circle_marker_a2b1e99b48b64803b35fd0ae0f10d59c = L.circleMarker(
[21.521757, -77.78116700000001],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_2d94608c21f3424aa824fd628d54993c = L.popup({"maxWidth": "100%"});
var html_57b8e50479644e2e99b56345475dbc22 = $(`<div id="html_57b8e50479644e2e99b56345475dbc22" style="width: 100.0%; height: 100.0%;">['Cuba', 1966]</div>`)[0];
popup_2d94608c21f3424aa824fd628d54993c.setContent(html_57b8e50479644e2e99b56345475dbc22);
circle_marker_a2b1e99b48b64803b35fd0ae0f10d59c.bindPopup(popup_2d94608c21f3424aa824fd628d54993c)
;
var circle_marker_562f1b44ef7b41818183d2f9172a2246 = L.circleMarker(
[35.126413, 33.429859],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_badcd535c64e4ef6a83ee05bcf2fcb46 = L.popup({"maxWidth": "100%"});
var html_5651bb6dfd1c42bea8f3e74d80631a0e = $(`<div id="html_5651bb6dfd1c42bea8f3e74d80631a0e" style="width: 100.0%; height: 100.0%;">['Cyprus', 390]</div>`)[0];
popup_badcd535c64e4ef6a83ee05bcf2fcb46.setContent(html_5651bb6dfd1c42bea8f3e74d80631a0e);
circle_marker_562f1b44ef7b41818183d2f9172a2246.bindPopup(popup_badcd535c64e4ef6a83ee05bcf2fcb46)
;
var circle_marker_8a01e15a7bcc4f769492ec85808f6762 = L.circleMarker(
[49.817492, 15.472961999999999],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_144d5cb120b846f5ad7f09cb82339cad = L.popup({"maxWidth": "100%"});
var html_44cac9519b9947bc818e98c8e7c8b5e4 = $(`<div id="html_44cac9519b9947bc818e98c8e7c8b5e4" style="width: 100.0%; height: 100.0%;">['Czech Republic', 30338]</div>`)[0];
popup_144d5cb120b846f5ad7f09cb82339cad.setContent(html_44cac9519b9947bc818e98c8e7c8b5e4);
circle_marker_8a01e15a7bcc4f769492ec85808f6762.bindPopup(popup_144d5cb120b846f5ad7f09cb82339cad)
;
var circle_marker_591c04ad1aa0407fa16ddf030500bd80 = L.circleMarker(
[7.539989, -5.54708],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_c8d12b311d3549ae8ed5c2a01a7ed8da = L.popup({"maxWidth": "100%"});
var html_8a8bbde70d4d47e6a7fabd9c6a6cb5a4 = $(`<div id="html_8a8bbde70d4d47e6a7fabd9c6a6cb5a4" style="width: 100.0%; height: 100.0%;">["Côte d'Ivoire", 322]</div>`)[0];
popup_c8d12b311d3549ae8ed5c2a01a7ed8da.setContent(html_8a8bbde70d4d47e6a7fabd9c6a6cb5a4);
circle_marker_591c04ad1aa0407fa16ddf030500bd80.bindPopup(popup_c8d12b311d3549ae8ed5c2a01a7ed8da)
;
var circle_marker_a5da37de4aac4dfbaf7a149c857cd9b7 = L.circleMarker(
[56.26392, 9.501785],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_3eba9c2ad72a4819826ff88993c2b735 = L.popup({"maxWidth": "100%"});
var html_47fe766e43e5477ab77ed5086f652543 = $(`<div id="html_47fe766e43e5477ab77ed5086f652543" style="width: 100.0%; height: 100.0%;">['Denmark', 2543]</div>`)[0];
popup_3eba9c2ad72a4819826ff88993c2b735.setContent(html_47fe766e43e5477ab77ed5086f652543);
circle_marker_a5da37de4aac4dfbaf7a149c857cd9b7.bindPopup(popup_3eba9c2ad72a4819826ff88993c2b735)
;
var circle_marker_03cd65d4879e4294a9cc3bd5bc8b6933 = L.circleMarker(
[11.825138, 42.590275],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_87e6c60fbcae4739a2df7b5f2c654a6c = L.popup({"maxWidth": "100%"});
var html_c9a342ce356647cfaeea642f6f3601a3 = $(`<div id="html_c9a342ce356647cfaeea642f6f3601a3" style="width: 100.0%; height: 100.0%;">['Djibouti', 155]</div>`)[0];
popup_87e6c60fbcae4739a2df7b5f2c654a6c.setContent(html_c9a342ce356647cfaeea642f6f3601a3);
circle_marker_03cd65d4879e4294a9cc3bd5bc8b6933.bindPopup(popup_87e6c60fbcae4739a2df7b5f2c654a6c)
;
var circle_marker_af7e8034fe6a4c29a74496213b409681 = L.circleMarker(
[15.414999, -61.370976],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_1142a7a6224a4170bc1d96e2917aa864 = L.popup({"maxWidth": "100%"});
var html_185447089f9640a290933fd046b79a76 = $(`<div id="html_185447089f9640a290933fd046b79a76" style="width: 100.0%; height: 100.0%;">['Dominica', 0]</div>`)[0];
popup_1142a7a6224a4170bc1d96e2917aa864.setContent(html_185447089f9640a290933fd046b79a76);
circle_marker_af7e8034fe6a4c29a74496213b409681.bindPopup(popup_1142a7a6224a4170bc1d96e2917aa864)
;
var circle_marker_86a10ba39add4001b2725d54d46d5b01 = L.circleMarker(
[18.735692999999998, -70.162651],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_0d2bfbbed31e4de4ab4cb21c084430a9 = L.popup({"maxWidth": "100%"});
var html_4f7c87e866024836996f617ec2c61554 = $(`<div id="html_4f7c87e866024836996f617ec2c61554" style="width: 100.0%; height: 100.0%;">['Dominican Republic', 3916]</div>`)[0];
popup_0d2bfbbed31e4de4ab4cb21c084430a9.setContent(html_4f7c87e866024836996f617ec2c61554);
circle_marker_86a10ba39add4001b2725d54d46d5b01.bindPopup(popup_0d2bfbbed31e4de4ab4cb21c084430a9)
;
var circle_marker_7d6a2dd324ce485bb98c89987b24c150 = L.circleMarker(
[-1.8312389999999998, -78.183406],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_7ac9d5d5cbd84a688ed23628e57d51fd = L.popup({"maxWidth": "100%"});
var html_a9a6d5262dbb491191d53d50e7ca1fab = $(`<div id="html_a9a6d5262dbb491191d53d50e7ca1fab" style="width: 100.0%; height: 100.0%;">['Ecuador', 21953]</div>`)[0];
popup_7ac9d5d5cbd84a688ed23628e57d51fd.setContent(html_a9a6d5262dbb491191d53d50e7ca1fab);
circle_marker_7d6a2dd324ce485bb98c89987b24c150.bindPopup(popup_7ac9d5d5cbd84a688ed23628e57d51fd)
;
var circle_marker_5c83d6073560432491a1713f23762a6d = L.circleMarker(
[26.820553000000004, 30.802497999999996],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 2}
).addTo(map_f53349eb203d49fd872abfe24534f0af);
var popup_1223fef73293491eaf1cc09ad8c094d4 = L.popup({"maxWidth": "100%"});
var html_e4ba582fe62a4b58be6509ad117f6eb8 = $(`<div id="html_e4ba582fe62a4b58be6509ad117f6eb8" style="width: 100.0%; height: 100.0%;">['Egypt', 16439]</div>`)[0];
popup_1223fef73293491eaf1cc09ad8c094d4.setContent(html_e4ba582fe62a4b58be6509ad117f6eb8);
circle_marker_5c83d6073560432491a1713f23762a6d.bindPopup(popup_1223fef73293491eaf1cc09ad8c094d4)
;