-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkmeans_70.html
15700 lines (7457 loc) · 796 KB
/
kmeans_70.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/[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://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_2a15b78d53d049c39bfcc1de2d3db94a {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_2a15b78d53d049c39bfcc1de2d3db94a" ></div>
</body>
<script>
var map_2a15b78d53d049c39bfcc1de2d3db94a = L.map(
"map_2a15b78d53d049c39bfcc1de2d3db94a",
{
center: [-26.145015309842083, 28.06590763061967],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_9ba8eb632e2640d990075325e25c6c65 = 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": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var circle_marker_1dfb333d431b41b98779d9ddf0860332 = L.circleMarker(
[-25.73882, 28.17858],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_838bc52b06684f76a2c28ad84e9032a8 = L.popup({"maxWidth": "100%"});
var html_978e9edab12f4ff5a4500717658bb8ae = $(`<div id="html_978e9edab12f4ff5a4500717658bb8ae" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_838bc52b06684f76a2c28ad84e9032a8.setContent(html_978e9edab12f4ff5a4500717658bb8ae);
circle_marker_1dfb333d431b41b98779d9ddf0860332.bindPopup(popup_838bc52b06684f76a2c28ad84e9032a8)
;
var circle_marker_b29f309b1dcc4322b35a922d3f0bb4bb = L.circleMarker(
[-25.73795, 28.1766],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_a81490c6008e4414afd236f811ebd643 = L.popup({"maxWidth": "100%"});
var html_86382169160a4b74afd82b83457ea966 = $(`<div id="html_86382169160a4b74afd82b83457ea966" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_a81490c6008e4414afd236f811ebd643.setContent(html_86382169160a4b74afd82b83457ea966);
circle_marker_b29f309b1dcc4322b35a922d3f0bb4bb.bindPopup(popup_a81490c6008e4414afd236f811ebd643)
;
var circle_marker_10b208ca586640f990f642f1d13c28e5 = L.circleMarker(
[-26.53722, 27.832390000000004],
{"bubblingMouseEvents": true, "color": "#fabebe", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fabebe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_9deceadbe427477e9b89c957e998b7ce = L.popup({"maxWidth": "100%"});
var html_f3d645df3f5f43ec8511df542362e072 = $(`<div id="html_f3d645df3f5f43ec8511df542362e072" style="width: 100.0%; height: 100.0%;">9</div>`)[0];
popup_9deceadbe427477e9b89c957e998b7ce.setContent(html_f3d645df3f5f43ec8511df542362e072);
circle_marker_10b208ca586640f990f642f1d13c28e5.bindPopup(popup_9deceadbe427477e9b89c957e998b7ce)
;
var circle_marker_48ded1bab93d476389fb0cb7dbcc44d2 = L.circleMarker(
[-26.266659999999998, 28.125140000000002],
{"bubblingMouseEvents": true, "color": "#bcf60c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bcf60c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_48e63fe8e55f4857917bffa39390b836 = L.popup({"maxWidth": "100%"});
var html_1c1d35118ca141aeb26385c86b346f6f = $(`<div id="html_1c1d35118ca141aeb26385c86b346f6f" style="width: 100.0%; height: 100.0%;">8</div>`)[0];
popup_48e63fe8e55f4857917bffa39390b836.setContent(html_1c1d35118ca141aeb26385c86b346f6f);
circle_marker_48ded1bab93d476389fb0cb7dbcc44d2.bindPopup(popup_48e63fe8e55f4857917bffa39390b836)
;
var circle_marker_7e4c800e7ffa4305992c31fefd850bae = L.circleMarker(
[-26.10567, 28.101440000000004],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_778a369583e24ade89d317816427632e = L.popup({"maxWidth": "100%"});
var html_be4896cb88804ece8e0cd70ab00b5077 = $(`<div id="html_be4896cb88804ece8e0cd70ab00b5077" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_778a369583e24ade89d317816427632e.setContent(html_be4896cb88804ece8e0cd70ab00b5077);
circle_marker_7e4c800e7ffa4305992c31fefd850bae.bindPopup(popup_778a369583e24ade89d317816427632e)
;
var circle_marker_76ca2409e2ec421c95781bea4f9098ae = L.circleMarker(
[-26.10605, 28.10125],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_c13e51d3e65c4de99e69eca003083b5b = L.popup({"maxWidth": "100%"});
var html_406886adccff48599a545f7f4af09bc4 = $(`<div id="html_406886adccff48599a545f7f4af09bc4" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_c13e51d3e65c4de99e69eca003083b5b.setContent(html_406886adccff48599a545f7f4af09bc4);
circle_marker_76ca2409e2ec421c95781bea4f9098ae.bindPopup(popup_c13e51d3e65c4de99e69eca003083b5b)
;
var circle_marker_5aa58615f8d745dfb384f266086ca916 = L.circleMarker(
[-26.10537, 28.10185],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_56d236b4344f4e6fbb2f1f3864fd570c = L.popup({"maxWidth": "100%"});
var html_72e20a3093004d38a68ac920013f6138 = $(`<div id="html_72e20a3093004d38a68ac920013f6138" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_56d236b4344f4e6fbb2f1f3864fd570c.setContent(html_72e20a3093004d38a68ac920013f6138);
circle_marker_5aa58615f8d745dfb384f266086ca916.bindPopup(popup_56d236b4344f4e6fbb2f1f3864fd570c)
;
var circle_marker_40dceb32b0c547308f2704d232b3d6e0 = L.circleMarker(
[-26.104789999999998, 28.10165],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_c719a339cda84712936bcad9b659d5b8 = L.popup({"maxWidth": "100%"});
var html_629a9c36586a46be83b2bd99ad9845d3 = $(`<div id="html_629a9c36586a46be83b2bd99ad9845d3" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_c719a339cda84712936bcad9b659d5b8.setContent(html_629a9c36586a46be83b2bd99ad9845d3);
circle_marker_40dceb32b0c547308f2704d232b3d6e0.bindPopup(popup_c719a339cda84712936bcad9b659d5b8)
;
var circle_marker_d0fa6bd6f4914705abee4b23d08f4c4f = L.circleMarker(
[-26.10594, 28.101509999999998],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_59ae9d3c32144d9ba3e43c293f3f24d4 = L.popup({"maxWidth": "100%"});
var html_cf69cb8146e84c2b9470012b11bc7dab = $(`<div id="html_cf69cb8146e84c2b9470012b11bc7dab" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_59ae9d3c32144d9ba3e43c293f3f24d4.setContent(html_cf69cb8146e84c2b9470012b11bc7dab);
circle_marker_d0fa6bd6f4914705abee4b23d08f4c4f.bindPopup(popup_59ae9d3c32144d9ba3e43c293f3f24d4)
;
var circle_marker_dcdac178279b4143958f7d132c8239cc = L.circleMarker(
[-26.10576, 28.101999999999997],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_40c6255464c548ab973e670197f655a4 = L.popup({"maxWidth": "100%"});
var html_f218ae61661f40a381bd2897dd6736f4 = $(`<div id="html_f218ae61661f40a381bd2897dd6736f4" style="width: 100.0%; height: 100.0%;">4</div>`)[0];
popup_40c6255464c548ab973e670197f655a4.setContent(html_f218ae61661f40a381bd2897dd6736f4);
circle_marker_dcdac178279b4143958f7d132c8239cc.bindPopup(popup_40c6255464c548ab973e670197f655a4)
;
var circle_marker_7a1c4ef4e48a492482d8d4bdb99b1e4d = L.circleMarker(
[-26.43641, 28.512059999999998],
{"bubblingMouseEvents": true, "color": "#bcf60c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bcf60c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_e8652760f825432fae62ffc69d3db137 = L.popup({"maxWidth": "100%"});
var html_6025dd4dfd704b41ba038c7e3c87077b = $(`<div id="html_6025dd4dfd704b41ba038c7e3c87077b" style="width: 100.0%; height: 100.0%;">68</div>`)[0];
popup_e8652760f825432fae62ffc69d3db137.setContent(html_6025dd4dfd704b41ba038c7e3c87077b);
circle_marker_7a1c4ef4e48a492482d8d4bdb99b1e4d.bindPopup(popup_e8652760f825432fae62ffc69d3db137)
;
var circle_marker_64e035f7903b42f1ab88b312b2e6e0b2 = L.circleMarker(
[-26.02136, 28.19932],
{"bubblingMouseEvents": true, "color": "#e6beff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6beff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_f5eee3ce10334a0e908e9f9736999df1 = L.popup({"maxWidth": "100%"});
var html_e1d5ee8ba3c04a249a0e1641e6d7c3f3 = $(`<div id="html_e1d5ee8ba3c04a249a0e1641e6d7c3f3" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_f5eee3ce10334a0e908e9f9736999df1.setContent(html_e1d5ee8ba3c04a249a0e1641e6d7c3f3);
circle_marker_64e035f7903b42f1ab88b312b2e6e0b2.bindPopup(popup_f5eee3ce10334a0e908e9f9736999df1)
;
var circle_marker_fabe9dd7473248bbab85c3baa2456c2b = L.circleMarker(
[-25.74244, 28.19006],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_f3942fa3f8ba47b092aaf5125f388743 = L.popup({"maxWidth": "100%"});
var html_5a2172eba60d4ed4b0d0c89f87a92022 = $(`<div id="html_5a2172eba60d4ed4b0d0c89f87a92022" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_f3942fa3f8ba47b092aaf5125f388743.setContent(html_5a2172eba60d4ed4b0d0c89f87a92022);
circle_marker_fabe9dd7473248bbab85c3baa2456c2b.bindPopup(popup_f3942fa3f8ba47b092aaf5125f388743)
;
var circle_marker_ebf8b5be99344cbf909b409289d4bdff = L.circleMarker(
[-25.741970000000002, 28.190140000000003],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_f3c398c931a54f569d6a9a59db39ab27 = L.popup({"maxWidth": "100%"});
var html_8c5efea489954519a5d15ec35758402c = $(`<div id="html_8c5efea489954519a5d15ec35758402c" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_f3c398c931a54f569d6a9a59db39ab27.setContent(html_8c5efea489954519a5d15ec35758402c);
circle_marker_ebf8b5be99344cbf909b409289d4bdff.bindPopup(popup_f3c398c931a54f569d6a9a59db39ab27)
;
var circle_marker_fb5d8c5ac6654b49950631addf739bdd = L.circleMarker(
[-25.74185, 28.1901],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_9f90165552434358ad6557ad73eacfe3 = L.popup({"maxWidth": "100%"});
var html_a72a55ceed154d539b7183b7e1f04e84 = $(`<div id="html_a72a55ceed154d539b7183b7e1f04e84" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_9f90165552434358ad6557ad73eacfe3.setContent(html_a72a55ceed154d539b7183b7e1f04e84);
circle_marker_fb5d8c5ac6654b49950631addf739bdd.bindPopup(popup_9f90165552434358ad6557ad73eacfe3)
;
var circle_marker_c109b8be970941a2a0790f17dd039322 = L.circleMarker(
[-26.15972, 28.280359999999998],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_144ae576107b434ebbb0f675c87127fa = L.popup({"maxWidth": "100%"});
var html_0e35f33521ae4dcd99bc2110ea11db53 = $(`<div id="html_0e35f33521ae4dcd99bc2110ea11db53" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_144ae576107b434ebbb0f675c87127fa.setContent(html_0e35f33521ae4dcd99bc2110ea11db53);
circle_marker_c109b8be970941a2a0790f17dd039322.bindPopup(popup_144ae576107b434ebbb0f675c87127fa)
;
var circle_marker_d2b94792f89e48819456cd7f19004e8e = L.circleMarker(
[-26.25974, 27.94085],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_c4cd040b2797460cb327b1b58fe9f01a = L.popup({"maxWidth": "100%"});
var html_8c49cc64973147f0a6aa7983293d9095 = $(`<div id="html_8c49cc64973147f0a6aa7983293d9095" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_c4cd040b2797460cb327b1b58fe9f01a.setContent(html_8c49cc64973147f0a6aa7983293d9095);
circle_marker_d2b94792f89e48819456cd7f19004e8e.bindPopup(popup_c4cd040b2797460cb327b1b58fe9f01a)
;
var circle_marker_ab553c91cbac4ae099d417b0e21486ce = L.circleMarker(
[-26.25961, 27.940379999999998],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_e59d6e88b33247da85975901a1a86f0a = L.popup({"maxWidth": "100%"});
var html_30caf9545cb3473e8fa25cc4e4b91b62 = $(`<div id="html_30caf9545cb3473e8fa25cc4e4b91b62" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_e59d6e88b33247da85975901a1a86f0a.setContent(html_30caf9545cb3473e8fa25cc4e4b91b62);
circle_marker_ab553c91cbac4ae099d417b0e21486ce.bindPopup(popup_e59d6e88b33247da85975901a1a86f0a)
;
var circle_marker_bc6bf93a9ab9484bb67c2743039a4789 = L.circleMarker(
[-26.259729999999998, 27.94234],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_61347a7df5df4d19b13b204a4dcfde39 = L.popup({"maxWidth": "100%"});
var html_6f4e990136584b5cb05326b3022f0190 = $(`<div id="html_6f4e990136584b5cb05326b3022f0190" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_61347a7df5df4d19b13b204a4dcfde39.setContent(html_6f4e990136584b5cb05326b3022f0190);
circle_marker_bc6bf93a9ab9484bb67c2743039a4789.bindPopup(popup_61347a7df5df4d19b13b204a4dcfde39)
;
var circle_marker_0102f71d6c3843a98f220e8dcb8f77b0 = L.circleMarker(
[-26.25923, 27.942009999999996],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_c680de714ff24c0a9ff65462e2718101 = L.popup({"maxWidth": "100%"});
var html_f9c3df7536f848dda953e2e192b719dd = $(`<div id="html_f9c3df7536f848dda953e2e192b719dd" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_c680de714ff24c0a9ff65462e2718101.setContent(html_f9c3df7536f848dda953e2e192b719dd);
circle_marker_0102f71d6c3843a98f220e8dcb8f77b0.bindPopup(popup_c680de714ff24c0a9ff65462e2718101)
;
var circle_marker_508c761de8da488491b3cced0dc00097 = L.circleMarker(
[-26.25931, 27.94325],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_7119249a9358400fb9d614179ea034e2 = L.popup({"maxWidth": "100%"});
var html_107d20c7bdf84c7dbafae3666ac4e125 = $(`<div id="html_107d20c7bdf84c7dbafae3666ac4e125" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_7119249a9358400fb9d614179ea034e2.setContent(html_107d20c7bdf84c7dbafae3666ac4e125);
circle_marker_508c761de8da488491b3cced0dc00097.bindPopup(popup_7119249a9358400fb9d614179ea034e2)
;
var circle_marker_4cc5626f448e4c7fb7765201d5a0e4b3 = L.circleMarker(
[-26.2599, 27.942079999999997],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_56bb3ad5c2f844e497004028f3f3d510 = L.popup({"maxWidth": "100%"});
var html_bec90790499a4b0f9a23777c2fc0d43d = $(`<div id="html_bec90790499a4b0f9a23777c2fc0d43d" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_56bb3ad5c2f844e497004028f3f3d510.setContent(html_bec90790499a4b0f9a23777c2fc0d43d);
circle_marker_4cc5626f448e4c7fb7765201d5a0e4b3.bindPopup(popup_56bb3ad5c2f844e497004028f3f3d510)
;
var circle_marker_18e01700a36940d586ea75af8ecc5d59 = L.circleMarker(
[-26.259059999999998, 27.937109999999997],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_13e3af799366413fbedc46cf14d9d67c = L.popup({"maxWidth": "100%"});
var html_17c3335febcb41baad839c8e37ab1cf3 = $(`<div id="html_17c3335febcb41baad839c8e37ab1cf3" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_13e3af799366413fbedc46cf14d9d67c.setContent(html_17c3335febcb41baad839c8e37ab1cf3);
circle_marker_18e01700a36940d586ea75af8ecc5d59.bindPopup(popup_13e3af799366413fbedc46cf14d9d67c)
;
var circle_marker_62c5fe0a6c4741b29a72a8e0627f4ef8 = L.circleMarker(
[-26.259, 27.94081],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_5f929005f0fb47dbbf4a98b375b7b693 = L.popup({"maxWidth": "100%"});
var html_49f42f3973fc45a496c53fc0e73d07e9 = $(`<div id="html_49f42f3973fc45a496c53fc0e73d07e9" style="width: 100.0%; height: 100.0%;">0</div>`)[0];
popup_5f929005f0fb47dbbf4a98b375b7b693.setContent(html_49f42f3973fc45a496c53fc0e73d07e9);
circle_marker_62c5fe0a6c4741b29a72a8e0627f4ef8.bindPopup(popup_5f929005f0fb47dbbf4a98b375b7b693)
;
var circle_marker_4ebd7c5d3e3b4267baccd1848892a5c7 = L.circleMarker(
[-26.282709999999998, 27.70334],
{"bubblingMouseEvents": true, "color": "#46f0f0", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#46f0f0", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_fd541e19a39142e49d2c9aa78a8fdfaf = L.popup({"maxWidth": "100%"});
var html_3f78e9617066420095cf36f4b7b99897 = $(`<div id="html_3f78e9617066420095cf36f4b7b99897" style="width: 100.0%; height: 100.0%;">6</div>`)[0];
popup_fd541e19a39142e49d2c9aa78a8fdfaf.setContent(html_3f78e9617066420095cf36f4b7b99897);
circle_marker_4ebd7c5d3e3b4267baccd1848892a5c7.bindPopup(popup_fd541e19a39142e49d2c9aa78a8fdfaf)
;
var circle_marker_51882a1c20404fcd8ac4c008255d36d1 = L.circleMarker(
[-25.73836, 28.18045],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_7b857e427e6b4638abe0cfd0099df9af = L.popup({"maxWidth": "100%"});
var html_cfbcfce857e546acb45701c86484eca7 = $(`<div id="html_cfbcfce857e546acb45701c86484eca7" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_7b857e427e6b4638abe0cfd0099df9af.setContent(html_cfbcfce857e546acb45701c86484eca7);
circle_marker_51882a1c20404fcd8ac4c008255d36d1.bindPopup(popup_7b857e427e6b4638abe0cfd0099df9af)
;
var circle_marker_8578d31986ce46d085b2211380a6eba0 = L.circleMarker(
[-26.10024, 28.048840000000002],
{"bubblingMouseEvents": true, "color": "#808080", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#808080", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_4745fb91b7944a1896a05e9d5db283cc = L.popup({"maxWidth": "100%"});
var html_dbcfbd4c60af4dc3b86779a02a8c3d4f = $(`<div id="html_dbcfbd4c60af4dc3b86779a02a8c3d4f" style="width: 100.0%; height: 100.0%;">59</div>`)[0];
popup_4745fb91b7944a1896a05e9d5db283cc.setContent(html_dbcfbd4c60af4dc3b86779a02a8c3d4f);
circle_marker_8578d31986ce46d085b2211380a6eba0.bindPopup(popup_4745fb91b7944a1896a05e9d5db283cc)
;
var circle_marker_031e3001d1e349d1a854515a5215c3b2 = L.circleMarker(
[-26.10097, 28.04962],
{"bubblingMouseEvents": true, "color": "#808080", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#808080", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_2b1a8859d3544ba6a6f4f729f2b344f0 = L.popup({"maxWidth": "100%"});
var html_290f542a44af4443a79050c90de72c32 = $(`<div id="html_290f542a44af4443a79050c90de72c32" style="width: 100.0%; height: 100.0%;">59</div>`)[0];
popup_2b1a8859d3544ba6a6f4f729f2b344f0.setContent(html_290f542a44af4443a79050c90de72c32);
circle_marker_031e3001d1e349d1a854515a5215c3b2.bindPopup(popup_2b1a8859d3544ba6a6f4f729f2b344f0)
;
var circle_marker_26ca86cf0c4348e99278718c95afd897 = L.circleMarker(
[-26.19837, 28.313240000000004],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_e9f6e5c44b3249969f7db43bf45c7a2f = L.popup({"maxWidth": "100%"});
var html_c9966db221a74a54a30aa6af759c0369 = $(`<div id="html_c9966db221a74a54a30aa6af759c0369" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_e9f6e5c44b3249969f7db43bf45c7a2f.setContent(html_c9966db221a74a54a30aa6af759c0369);
circle_marker_26ca86cf0c4348e99278718c95afd897.bindPopup(popup_e9f6e5c44b3249969f7db43bf45c7a2f)
;
var circle_marker_61bb3e94c87b4d2b9276d40a60eb7423 = L.circleMarker(
[-26.19925, 28.3117],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_ae5f8f2e0d494cd58161a3754285ebef = L.popup({"maxWidth": "100%"});
var html_66e4a1e301244cc280386f1b488e640b = $(`<div id="html_66e4a1e301244cc280386f1b488e640b" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_ae5f8f2e0d494cd58161a3754285ebef.setContent(html_66e4a1e301244cc280386f1b488e640b);
circle_marker_61bb3e94c87b4d2b9276d40a60eb7423.bindPopup(popup_ae5f8f2e0d494cd58161a3754285ebef)
;
var circle_marker_b7bd53afbf384c20a161b905f19bddc6 = L.circleMarker(
[-26.1994, 28.311459999999997],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_75e205bcf3ee42c299bd3bba99095fe6 = L.popup({"maxWidth": "100%"});
var html_05f9405eed4f4b61a5559bca51a0e862 = $(`<div id="html_05f9405eed4f4b61a5559bca51a0e862" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_75e205bcf3ee42c299bd3bba99095fe6.setContent(html_05f9405eed4f4b61a5559bca51a0e862);
circle_marker_b7bd53afbf384c20a161b905f19bddc6.bindPopup(popup_75e205bcf3ee42c299bd3bba99095fe6)
;
var circle_marker_c57a6ee37b004203951556a9f890f577 = L.circleMarker(
[-26.19864, 28.312720000000002],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_1f31f47b194d48ec9e7813e49b648bf4 = L.popup({"maxWidth": "100%"});
var html_896f8f4c1efe400a9961228b8edc4768 = $(`<div id="html_896f8f4c1efe400a9961228b8edc4768" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_1f31f47b194d48ec9e7813e49b648bf4.setContent(html_896f8f4c1efe400a9961228b8edc4768);
circle_marker_c57a6ee37b004203951556a9f890f577.bindPopup(popup_1f31f47b194d48ec9e7813e49b648bf4)
;
var circle_marker_9463619b3d4941778343135045ece8c1 = L.circleMarker(
[-26.19764, 28.31066],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_d0db65291d9b43ac802641760e06e4af = L.popup({"maxWidth": "100%"});
var html_ea8f82cdf82942f18faddae231d1223b = $(`<div id="html_ea8f82cdf82942f18faddae231d1223b" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_d0db65291d9b43ac802641760e06e4af.setContent(html_ea8f82cdf82942f18faddae231d1223b);
circle_marker_9463619b3d4941778343135045ece8c1.bindPopup(popup_d0db65291d9b43ac802641760e06e4af)
;
var circle_marker_80b5e318397240f8a14f0c605c801c10 = L.circleMarker(
[-26.199820000000003, 28.31069],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_1abcc4ec9df3468db0568647da437b77 = L.popup({"maxWidth": "100%"});
var html_12942556a7f2442282f8cd8cb7783ff8 = $(`<div id="html_12942556a7f2442282f8cd8cb7783ff8" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_1abcc4ec9df3468db0568647da437b77.setContent(html_12942556a7f2442282f8cd8cb7783ff8);
circle_marker_80b5e318397240f8a14f0c605c801c10.bindPopup(popup_1abcc4ec9df3468db0568647da437b77)
;
var circle_marker_20410c92e5a744b098d422f74aedc644 = L.circleMarker(
[-26.19967, 28.31095],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_51e36204ea754d7891361b49a81d4a26 = L.popup({"maxWidth": "100%"});
var html_5e21ee529acd491b843189ed7c795f10 = $(`<div id="html_5e21ee529acd491b843189ed7c795f10" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_51e36204ea754d7891361b49a81d4a26.setContent(html_5e21ee529acd491b843189ed7c795f10);
circle_marker_20410c92e5a744b098d422f74aedc644.bindPopup(popup_51e36204ea754d7891361b49a81d4a26)
;
var circle_marker_f8cbf0a2ddd948229e4e302cd13af045 = L.circleMarker(
[-26.19996, 28.31046],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_61d3d61b2a974d2098082a9ddaf91c70 = L.popup({"maxWidth": "100%"});
var html_9af167e83db240908aad547dd44c7f54 = $(`<div id="html_9af167e83db240908aad547dd44c7f54" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_61d3d61b2a974d2098082a9ddaf91c70.setContent(html_9af167e83db240908aad547dd44c7f54);
circle_marker_f8cbf0a2ddd948229e4e302cd13af045.bindPopup(popup_61d3d61b2a974d2098082a9ddaf91c70)
;
var circle_marker_deaf8329e4024a689e8ea560a9a602a1 = L.circleMarker(
[-26.2004, 28.309790000000003],
{"bubblingMouseEvents": true, "color": "#e6194b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#e6194b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_d4b8f8a5a385401e9bb9ceb818a0a0be = L.popup({"maxWidth": "100%"});
var html_db54ca62318f45f09730c57de511c359 = $(`<div id="html_db54ca62318f45f09730c57de511c359" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_d4b8f8a5a385401e9bb9ceb818a0a0be.setContent(html_db54ca62318f45f09730c57de511c359);
circle_marker_deaf8329e4024a689e8ea560a9a602a1.bindPopup(popup_d4b8f8a5a385401e9bb9ceb818a0a0be)
;
var circle_marker_0f2ab928a6c644e18fd70f02f08ca555 = L.circleMarker(
[-26.067520000000002, 28.234740000000002],
{"bubblingMouseEvents": true, "color": "#008080", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#008080", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_8571901928bf4e41a0ea5e9345e1379b = L.popup({"maxWidth": "100%"});
var html_dc9f485a2e344e9489a0cafcde28fe7d = $(`<div id="html_dc9f485a2e344e9489a0cafcde28fe7d" style="width: 100.0%; height: 100.0%;">30</div>`)[0];
popup_8571901928bf4e41a0ea5e9345e1379b.setContent(html_dc9f485a2e344e9489a0cafcde28fe7d);
circle_marker_0f2ab928a6c644e18fd70f02f08ca555.bindPopup(popup_8571901928bf4e41a0ea5e9345e1379b)
;
var circle_marker_5336676d6c564e1aaa7c5ccea3a0a379 = L.circleMarker(
[-26.067529999999998, 28.23483],
{"bubblingMouseEvents": true, "color": "#008080", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#008080", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_a8eb47f730094d098492426cb6b58460 = L.popup({"maxWidth": "100%"});
var html_998ec890c37c426593aeaca7b13abfe5 = $(`<div id="html_998ec890c37c426593aeaca7b13abfe5" style="width: 100.0%; height: 100.0%;">30</div>`)[0];
popup_a8eb47f730094d098492426cb6b58460.setContent(html_998ec890c37c426593aeaca7b13abfe5);
circle_marker_5336676d6c564e1aaa7c5ccea3a0a379.bindPopup(popup_a8eb47f730094d098492426cb6b58460)
;
var circle_marker_4be9936693734a9881453119499065ed = L.circleMarker(
[-25.74036, 28.19112],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_a18f0f3275ed4f6c9cd24cb9289a53ec = L.popup({"maxWidth": "100%"});
var html_4a6fd7ccabd04085bf0dc0917aeb01ce = $(`<div id="html_4a6fd7ccabd04085bf0dc0917aeb01ce" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_a18f0f3275ed4f6c9cd24cb9289a53ec.setContent(html_4a6fd7ccabd04085bf0dc0917aeb01ce);
circle_marker_4be9936693734a9881453119499065ed.bindPopup(popup_a18f0f3275ed4f6c9cd24cb9289a53ec)
;
var circle_marker_5d69a4a884504385b8e0c40c3f80e555 = L.circleMarker(
[-25.74055, 28.18913],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_7af023f4801f4dbd8a8f84ffa44748c6 = L.popup({"maxWidth": "100%"});
var html_6317abdbadc3451496514ea0f404d9a2 = $(`<div id="html_6317abdbadc3451496514ea0f404d9a2" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_7af023f4801f4dbd8a8f84ffa44748c6.setContent(html_6317abdbadc3451496514ea0f404d9a2);
circle_marker_5d69a4a884504385b8e0c40c3f80e555.bindPopup(popup_7af023f4801f4dbd8a8f84ffa44748c6)
;
var circle_marker_0c0b012b5c884d11a67e046d46faf997 = L.circleMarker(
[-26.38014, 28.388040000000004],
{"bubblingMouseEvents": true, "color": "#aaffc3", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#aaffc3", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_4769a1970e0a44d08321d196af273646 = L.popup({"maxWidth": "100%"});
var html_59a79932fb0244f6b71b62b3b3ae52b8 = $(`<div id="html_59a79932fb0244f6b71b62b3b3ae52b8" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_4769a1970e0a44d08321d196af273646.setContent(html_59a79932fb0244f6b71b62b3b3ae52b8);
circle_marker_0c0b012b5c884d11a67e046d46faf997.bindPopup(popup_4769a1970e0a44d08321d196af273646)
;
var circle_marker_738ae2a634c84ecdb34670c0460f8b16 = L.circleMarker(
[-26.5628, 27.82767],
{"bubblingMouseEvents": true, "color": "#f032e6", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f032e6", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_d41d977d2cc844d3b376dab6bf7592ec = L.popup({"maxWidth": "100%"});
var html_fbdbc09121b94af69a4dff5d970efa2e = $(`<div id="html_fbdbc09121b94af69a4dff5d970efa2e" style="width: 100.0%; height: 100.0%;">47</div>`)[0];
popup_d41d977d2cc844d3b376dab6bf7592ec.setContent(html_fbdbc09121b94af69a4dff5d970efa2e);
circle_marker_738ae2a634c84ecdb34670c0460f8b16.bindPopup(popup_d41d977d2cc844d3b376dab6bf7592ec)
;
var circle_marker_1831f1f1dc9a4de1880d9c2f2c195455 = L.circleMarker(
[-26.224009999999996, 28.252440000000004],
{"bubblingMouseEvents": true, "color": "#ffe119", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffe119", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_d7e5bae76f24429c80c9a7ae8958b0d6 = L.popup({"maxWidth": "100%"});
var html_865acfd1908a49f0a1e0586b5c835540 = $(`<div id="html_865acfd1908a49f0a1e0586b5c835540" style="width: 100.0%; height: 100.0%;">2</div>`)[0];
popup_d7e5bae76f24429c80c9a7ae8958b0d6.setContent(html_865acfd1908a49f0a1e0586b5c835540);
circle_marker_1831f1f1dc9a4de1880d9c2f2c195455.bindPopup(popup_d7e5bae76f24429c80c9a7ae8958b0d6)
;
var circle_marker_d3ef8794c972479dbf502246fe5044ad = L.circleMarker(
[-26.2239, 28.252090000000003],
{"bubblingMouseEvents": true, "color": "#ffe119", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffe119", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_182b9c8c3cff45449a11740c2a0cb34c = L.popup({"maxWidth": "100%"});
var html_2d4a9bcdbf454ca28548d5872762ba43 = $(`<div id="html_2d4a9bcdbf454ca28548d5872762ba43" style="width: 100.0%; height: 100.0%;">2</div>`)[0];
popup_182b9c8c3cff45449a11740c2a0cb34c.setContent(html_2d4a9bcdbf454ca28548d5872762ba43);
circle_marker_d3ef8794c972479dbf502246fe5044ad.bindPopup(popup_182b9c8c3cff45449a11740c2a0cb34c)
;
var circle_marker_9e446f4a375340e8bcd15c0c5b4d06be = L.circleMarker(
[-26.22389, 28.251820000000002],
{"bubblingMouseEvents": true, "color": "#ffe119", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffe119", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_fa2323e3b52940c282b8fd8463a3ff25 = L.popup({"maxWidth": "100%"});
var html_cc28330432dc45a18b425c8d35f494f2 = $(`<div id="html_cc28330432dc45a18b425c8d35f494f2" style="width: 100.0%; height: 100.0%;">2</div>`)[0];
popup_fa2323e3b52940c282b8fd8463a3ff25.setContent(html_cc28330432dc45a18b425c8d35f494f2);
circle_marker_9e446f4a375340e8bcd15c0c5b4d06be.bindPopup(popup_fa2323e3b52940c282b8fd8463a3ff25)
;
var circle_marker_b82d7d3099ff4705af259f4e86f511e6 = L.circleMarker(
[-25.7388, 28.19616],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_3351721ec96d4e8a8dd94b24b20d735c = L.popup({"maxWidth": "100%"});
var html_39daea4da8d247e6a75e9651b91440d5 = $(`<div id="html_39daea4da8d247e6a75e9651b91440d5" style="width: 100.0%; height: 100.0%;">1</div>`)[0];
popup_3351721ec96d4e8a8dd94b24b20d735c.setContent(html_39daea4da8d247e6a75e9651b91440d5);
circle_marker_b82d7d3099ff4705af259f4e86f511e6.bindPopup(popup_3351721ec96d4e8a8dd94b24b20d735c)
;
var circle_marker_c3748580d9c34a1885801c9eb5d9ed08 = L.circleMarker(
[-26.691329999999997, 27.79717],
{"bubblingMouseEvents": true, "color": "#4363d8", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#4363d8", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_a9b50ba43ef94e13b3d46b49799cd065 = L.popup({"maxWidth": "100%"});
var html_35a368e7a8f64ceaa838d7de1185bfd5 = $(`<div id="html_35a368e7a8f64ceaa838d7de1185bfd5" style="width: 100.0%; height: 100.0%;">3</div>`)[0];
popup_a9b50ba43ef94e13b3d46b49799cd065.setContent(html_35a368e7a8f64ceaa838d7de1185bfd5);
circle_marker_c3748580d9c34a1885801c9eb5d9ed08.bindPopup(popup_a9b50ba43ef94e13b3d46b49799cd065)
;
var circle_marker_12965a1197f74f13ab7b78c8aaedcd32 = L.circleMarker(
[-26.691309999999998, 27.79727],
{"bubblingMouseEvents": true, "color": "#4363d8", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#4363d8", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);
var popup_526d51d30d8e4952830652556df4de97 = L.popup({"maxWidth": "100%"});
var html_b669b76d545d4a07b10789974a993e77 = $(`<div id="html_b669b76d545d4a07b10789974a993e77" style="width: 100.0%; height: 100.0%;">3</div>`)[0];
popup_526d51d30d8e4952830652556df4de97.setContent(html_b669b76d545d4a07b10789974a993e77);
circle_marker_12965a1197f74f13ab7b78c8aaedcd32.bindPopup(popup_526d51d30d8e4952830652556df4de97)
;
var circle_marker_2bfda7a54f984cb2a2fba06aab312c05 = L.circleMarker(
[-26.69285, 27.797290000000004],
{"bubblingMouseEvents": true, "color": "#4363d8", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#4363d8", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a15b78d53d049c39bfcc1de2d3db94a);