-
Notifications
You must be signed in to change notification settings - Fork 0
/
kmeans_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_49e0a58be36b4e60a5fcc748b643b62c {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_49e0a58be36b4e60a5fcc748b643b62c" ></div>
</body>
<script>
var map_49e0a58be36b4e60a5fcc748b643b62c = L.map(
"map_49e0a58be36b4e60a5fcc748b643b62c",
{
center: [-26.14501530984204, 28.065907630619684],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_21777ca0216c4856982823aee1e834c7 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var circle_marker_3fbd01f727984a7f8cd6b612b1e940da = L.circleMarker(
[-25.73882, 28.17858],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_9f5242cf155b441592661d9ba6782db2 = L.popup({"maxWidth": "100%"});
var html_46d6bcad192c4134adb9ac8d15efe1e2 = $(`<div id="html_46d6bcad192c4134adb9ac8d15efe1e2" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_9f5242cf155b441592661d9ba6782db2.setContent(html_46d6bcad192c4134adb9ac8d15efe1e2);
circle_marker_3fbd01f727984a7f8cd6b612b1e940da.bindPopup(popup_9f5242cf155b441592661d9ba6782db2)
;
var circle_marker_adce9e9145fb432cadf6205338eae8a8 = L.circleMarker(
[-25.73795, 28.1766],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_900de71f62d34738b9dcd9895e4777ed = L.popup({"maxWidth": "100%"});
var html_d6e68830dec64292a237723950e70721 = $(`<div id="html_d6e68830dec64292a237723950e70721" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_900de71f62d34738b9dcd9895e4777ed.setContent(html_d6e68830dec64292a237723950e70721);
circle_marker_adce9e9145fb432cadf6205338eae8a8.bindPopup(popup_900de71f62d34738b9dcd9895e4777ed)
;
var circle_marker_e77decbe4ee34f5cb66ebe5754d5611b = L.circleMarker(
[-26.53722, 27.832390000000004],
{"bubblingMouseEvents": true, "color": "#911eb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#911eb4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_a4505581453e414688c2019e0e8f8e57 = L.popup({"maxWidth": "100%"});
var html_b7ff1c598e0b4a3180784af3846fd3f0 = $(`<div id="html_b7ff1c598e0b4a3180784af3846fd3f0" style="width: 100.0%; height: 100.0%;">5</div>`)[0];
popup_a4505581453e414688c2019e0e8f8e57.setContent(html_b7ff1c598e0b4a3180784af3846fd3f0);
circle_marker_e77decbe4ee34f5cb66ebe5754d5611b.bindPopup(popup_a4505581453e414688c2019e0e8f8e57)
;
var circle_marker_ef249458831a41e0a07e04c2dd468b2e = L.circleMarker(
[-26.266659999999998, 28.125140000000002],
{"bubblingMouseEvents": true, "color": "#fffac8", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fffac8", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_0bf684b0885d46efb01cc7ecdb8cf201 = L.popup({"maxWidth": "100%"});
var html_ed063d4e478d485f9fade3c5b5e29f53 = $(`<div id="html_ed063d4e478d485f9fade3c5b5e29f53" style="width: 100.0%; height: 100.0%;">33</div>`)[0];
popup_0bf684b0885d46efb01cc7ecdb8cf201.setContent(html_ed063d4e478d485f9fade3c5b5e29f53);
circle_marker_ef249458831a41e0a07e04c2dd468b2e.bindPopup(popup_0bf684b0885d46efb01cc7ecdb8cf201)
;
var circle_marker_c53a410eaba14c539ababa7ea6477547 = L.circleMarker(
[-26.10567, 28.101440000000004],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_0d62294a1edd4e8f9ec5b59fa827826f = L.popup({"maxWidth": "100%"});
var html_1e8f7bb63f07411680598f3ed70f5cd1 = $(`<div id="html_1e8f7bb63f07411680598f3ed70f5cd1" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_0d62294a1edd4e8f9ec5b59fa827826f.setContent(html_1e8f7bb63f07411680598f3ed70f5cd1);
circle_marker_c53a410eaba14c539ababa7ea6477547.bindPopup(popup_0d62294a1edd4e8f9ec5b59fa827826f)
;
var circle_marker_717e9559a202460fb9389d07b78cfdd3 = L.circleMarker(
[-26.10605, 28.10125],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_85d0cd25050344f69566621c7cb63f47 = L.popup({"maxWidth": "100%"});
var html_2eb18fd2bc4d41bf8757a0ce79a87e59 = $(`<div id="html_2eb18fd2bc4d41bf8757a0ce79a87e59" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_85d0cd25050344f69566621c7cb63f47.setContent(html_2eb18fd2bc4d41bf8757a0ce79a87e59);
circle_marker_717e9559a202460fb9389d07b78cfdd3.bindPopup(popup_85d0cd25050344f69566621c7cb63f47)
;
var circle_marker_f2577471a4bc4d139da0055b3fc500df = L.circleMarker(
[-26.10537, 28.10185],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_4486b9c4965a47c18960d488b63e1fb1 = L.popup({"maxWidth": "100%"});
var html_a511db99cc36404b8bb31d7e9cd6d2aa = $(`<div id="html_a511db99cc36404b8bb31d7e9cd6d2aa" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_4486b9c4965a47c18960d488b63e1fb1.setContent(html_a511db99cc36404b8bb31d7e9cd6d2aa);
circle_marker_f2577471a4bc4d139da0055b3fc500df.bindPopup(popup_4486b9c4965a47c18960d488b63e1fb1)
;
var circle_marker_425e159fa8b24d90bff330b8159ec280 = L.circleMarker(
[-26.104789999999998, 28.10165],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_c1aa1b4b3cd8400790a3052533d5fb6c = L.popup({"maxWidth": "100%"});
var html_06e69442cc0b4f1d9a8280fd6fac721b = $(`<div id="html_06e69442cc0b4f1d9a8280fd6fac721b" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_c1aa1b4b3cd8400790a3052533d5fb6c.setContent(html_06e69442cc0b4f1d9a8280fd6fac721b);
circle_marker_425e159fa8b24d90bff330b8159ec280.bindPopup(popup_c1aa1b4b3cd8400790a3052533d5fb6c)
;
var circle_marker_855961f24b9948408924cca28015967c = L.circleMarker(
[-26.10594, 28.101509999999998],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_9b141583481f46c181ebda2c3b5e76cb = L.popup({"maxWidth": "100%"});
var html_b4a67ab36ff344fdab3028a9dd7c50d9 = $(`<div id="html_b4a67ab36ff344fdab3028a9dd7c50d9" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_9b141583481f46c181ebda2c3b5e76cb.setContent(html_b4a67ab36ff344fdab3028a9dd7c50d9);
circle_marker_855961f24b9948408924cca28015967c.bindPopup(popup_9b141583481f46c181ebda2c3b5e76cb)
;
var circle_marker_7dba04ab7ad64a2593fd97b1c6c2ea39 = L.circleMarker(
[-26.10576, 28.101999999999997],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_d7962caad84f4c06b910382bf5b45a6a = L.popup({"maxWidth": "100%"});
var html_a0ee4e8a3dc94af09c698f77e49898b9 = $(`<div id="html_a0ee4e8a3dc94af09c698f77e49898b9" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_d7962caad84f4c06b910382bf5b45a6a.setContent(html_a0ee4e8a3dc94af09c698f77e49898b9);
circle_marker_7dba04ab7ad64a2593fd97b1c6c2ea39.bindPopup(popup_d7962caad84f4c06b910382bf5b45a6a)
;
var circle_marker_2d02ef017135424fb4d5b87c7f0bbdb5 = L.circleMarker(
[-26.43641, 28.512059999999998],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_6e3cb08eb2c249dca9bb06b237a1a7cb = L.popup({"maxWidth": "100%"});
var html_30d7423ab92b4d24ae11dbc3e50d15cf = $(`<div id="html_30d7423ab92b4d24ae11dbc3e50d15cf" style="width: 100.0%; height: 100.0%;">59</div>`)[0];
popup_6e3cb08eb2c249dca9bb06b237a1a7cb.setContent(html_30d7423ab92b4d24ae11dbc3e50d15cf);
circle_marker_2d02ef017135424fb4d5b87c7f0bbdb5.bindPopup(popup_6e3cb08eb2c249dca9bb06b237a1a7cb)
;
var circle_marker_31a5d167c6bb4361916e915123f85bdc = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_88e68930e4b340f7b66b447e8b8dc6a4 = L.popup({"maxWidth": "100%"});
var html_62500b692b5443bf9ea8c61e0cae9b25 = $(`<div id="html_62500b692b5443bf9ea8c61e0cae9b25" style="width: 100.0%; height: 100.0%;">51</div>`)[0];
popup_88e68930e4b340f7b66b447e8b8dc6a4.setContent(html_62500b692b5443bf9ea8c61e0cae9b25);
circle_marker_31a5d167c6bb4361916e915123f85bdc.bindPopup(popup_88e68930e4b340f7b66b447e8b8dc6a4)
;
var circle_marker_d4b40b9baa1941958023f0582dce99df = L.circleMarker(
[-25.74244, 28.19006],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_553ebeb922844194af7e580eebfb98c0 = L.popup({"maxWidth": "100%"});
var html_44295fcfcbe543f6b813ae1f7efb2905 = $(`<div id="html_44295fcfcbe543f6b813ae1f7efb2905" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_553ebeb922844194af7e580eebfb98c0.setContent(html_44295fcfcbe543f6b813ae1f7efb2905);
circle_marker_d4b40b9baa1941958023f0582dce99df.bindPopup(popup_553ebeb922844194af7e580eebfb98c0)
;
var circle_marker_535d929dc6be4b7280c9f3dba3265bed = L.circleMarker(
[-25.741970000000002, 28.190140000000003],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_191211940d11409ca988b94f5ba37e1a = L.popup({"maxWidth": "100%"});
var html_c7b4ed7b90d54135a093ceaf3b940eed = $(`<div id="html_c7b4ed7b90d54135a093ceaf3b940eed" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_191211940d11409ca988b94f5ba37e1a.setContent(html_c7b4ed7b90d54135a093ceaf3b940eed);
circle_marker_535d929dc6be4b7280c9f3dba3265bed.bindPopup(popup_191211940d11409ca988b94f5ba37e1a)
;
var circle_marker_932bc8e48a234ac9b6c9b1052c77b930 = L.circleMarker(
[-25.74185, 28.1901],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_f4a4888a3b54440cafb4772113c39684 = L.popup({"maxWidth": "100%"});
var html_f3e2818c784049b488b03e9066a2785d = $(`<div id="html_f3e2818c784049b488b03e9066a2785d" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_f4a4888a3b54440cafb4772113c39684.setContent(html_f3e2818c784049b488b03e9066a2785d);
circle_marker_932bc8e48a234ac9b6c9b1052c77b930.bindPopup(popup_f4a4888a3b54440cafb4772113c39684)
;
var circle_marker_4554082319fa4e85b75caa4e143e887d = L.circleMarker(
[-26.15972, 28.280359999999998],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_99fda2f3c5614ad9ac716d355798420e = L.popup({"maxWidth": "100%"});
var html_28202a1d6497436e9e56958cbc8cae3f = $(`<div id="html_28202a1d6497436e9e56958cbc8cae3f" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_99fda2f3c5614ad9ac716d355798420e.setContent(html_28202a1d6497436e9e56958cbc8cae3f);
circle_marker_4554082319fa4e85b75caa4e143e887d.bindPopup(popup_99fda2f3c5614ad9ac716d355798420e)
;
var circle_marker_191c4b87768a427fab083d75a9b830f2 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_ed9ac89029a44410a1cfb71bb45a0323 = L.popup({"maxWidth": "100%"});
var html_8b4a73b1213c4caf8c6ee5b3de7533d5 = $(`<div id="html_8b4a73b1213c4caf8c6ee5b3de7533d5" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_ed9ac89029a44410a1cfb71bb45a0323.setContent(html_8b4a73b1213c4caf8c6ee5b3de7533d5);
circle_marker_191c4b87768a427fab083d75a9b830f2.bindPopup(popup_ed9ac89029a44410a1cfb71bb45a0323)
;
var circle_marker_3759ad5298b9463f969239af346b32c6 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_90cf57415cab4f2eaca0a497146d70d5 = L.popup({"maxWidth": "100%"});
var html_6475ca97d67741bfade56204c7b8cac4 = $(`<div id="html_6475ca97d67741bfade56204c7b8cac4" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_90cf57415cab4f2eaca0a497146d70d5.setContent(html_6475ca97d67741bfade56204c7b8cac4);
circle_marker_3759ad5298b9463f969239af346b32c6.bindPopup(popup_90cf57415cab4f2eaca0a497146d70d5)
;
var circle_marker_ff776ba8e43c49e783811454e0dbfac0 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_478da6b32efe497187d64246c960cd13 = L.popup({"maxWidth": "100%"});
var html_f11450fee5df4ab980871d000f363f9f = $(`<div id="html_f11450fee5df4ab980871d000f363f9f" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_478da6b32efe497187d64246c960cd13.setContent(html_f11450fee5df4ab980871d000f363f9f);
circle_marker_ff776ba8e43c49e783811454e0dbfac0.bindPopup(popup_478da6b32efe497187d64246c960cd13)
;
var circle_marker_35de5e4c7f504aa1b3701f09046a43f7 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_68cc48b35ad948729fad5983f29db7c4 = L.popup({"maxWidth": "100%"});
var html_546d955cd5fb4cb79d6ba0801495aeb8 = $(`<div id="html_546d955cd5fb4cb79d6ba0801495aeb8" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_68cc48b35ad948729fad5983f29db7c4.setContent(html_546d955cd5fb4cb79d6ba0801495aeb8);
circle_marker_35de5e4c7f504aa1b3701f09046a43f7.bindPopup(popup_68cc48b35ad948729fad5983f29db7c4)
;
var circle_marker_ffb3de57d4c2422ab3291dc6e6ec9081 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_1a27154dc64a42279f856911ade86c35 = L.popup({"maxWidth": "100%"});
var html_afa0b3b733d6497e889c2136cdcac16f = $(`<div id="html_afa0b3b733d6497e889c2136cdcac16f" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_1a27154dc64a42279f856911ade86c35.setContent(html_afa0b3b733d6497e889c2136cdcac16f);
circle_marker_ffb3de57d4c2422ab3291dc6e6ec9081.bindPopup(popup_1a27154dc64a42279f856911ade86c35)
;
var circle_marker_3d9fb4a13dba40aab227dc8a3d3e556c = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_cad32ff87de04e988bb4d215adbfb8da = L.popup({"maxWidth": "100%"});
var html_d68255fe3fd3489fa2cd4099f2ae4684 = $(`<div id="html_d68255fe3fd3489fa2cd4099f2ae4684" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_cad32ff87de04e988bb4d215adbfb8da.setContent(html_d68255fe3fd3489fa2cd4099f2ae4684);
circle_marker_3d9fb4a13dba40aab227dc8a3d3e556c.bindPopup(popup_cad32ff87de04e988bb4d215adbfb8da)
;
var circle_marker_f2afd442bbe543909165b2cc08671a1e = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_2cd61f1888054b70a9958c4eadc6e858 = L.popup({"maxWidth": "100%"});
var html_044b57b031a54a539a92f1983319294c = $(`<div id="html_044b57b031a54a539a92f1983319294c" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_2cd61f1888054b70a9958c4eadc6e858.setContent(html_044b57b031a54a539a92f1983319294c);
circle_marker_f2afd442bbe543909165b2cc08671a1e.bindPopup(popup_2cd61f1888054b70a9958c4eadc6e858)
;
var circle_marker_912dc5191c8343019d9483efe8baafd5 = 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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_a41ef162051f4f55866257575fe04a27 = L.popup({"maxWidth": "100%"});
var html_1328328d59cf4725b2130c6abbdc1230 = $(`<div id="html_1328328d59cf4725b2130c6abbdc1230" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_a41ef162051f4f55866257575fe04a27.setContent(html_1328328d59cf4725b2130c6abbdc1230);
circle_marker_912dc5191c8343019d9483efe8baafd5.bindPopup(popup_a41ef162051f4f55866257575fe04a27)
;
var circle_marker_2dd8af55b8b1441a85ece0974d86d1fa = L.circleMarker(
[-26.282709999999998, 27.70334],
{"bubblingMouseEvents": true, "color": "#ffd8b1", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#ffd8b1", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_6ae23f5b293242808a5cd360d3fb3a8d = L.popup({"maxWidth": "100%"});
var html_f4df26e68e01487dbb8213ac612cc795 = $(`<div id="html_f4df26e68e01487dbb8213ac612cc795" style="width: 100.0%; height: 100.0%;">37</div>`)[0];
popup_6ae23f5b293242808a5cd360d3fb3a8d.setContent(html_f4df26e68e01487dbb8213ac612cc795);
circle_marker_2dd8af55b8b1441a85ece0974d86d1fa.bindPopup(popup_6ae23f5b293242808a5cd360d3fb3a8d)
;
var circle_marker_bd3eb6d00b0d4549852ce810618a6ac1 = L.circleMarker(
[-25.73836, 28.18045],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_9e300de0b3204e79995222a1f1bdb0c4 = L.popup({"maxWidth": "100%"});
var html_cae35063cc7d40b2a38838a2b9d7b105 = $(`<div id="html_cae35063cc7d40b2a38838a2b9d7b105" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_9e300de0b3204e79995222a1f1bdb0c4.setContent(html_cae35063cc7d40b2a38838a2b9d7b105);
circle_marker_bd3eb6d00b0d4549852ce810618a6ac1.bindPopup(popup_9e300de0b3204e79995222a1f1bdb0c4)
;
var circle_marker_2d92a0174d9a48acb27c8937d2192bd6 = L.circleMarker(
[-26.10024, 28.048840000000002],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_8e452065785b4c25a755272cff932ba8 = L.popup({"maxWidth": "100%"});
var html_497a1299b7944b9ca9676af62dbb592c = $(`<div id="html_497a1299b7944b9ca9676af62dbb592c" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_8e452065785b4c25a755272cff932ba8.setContent(html_497a1299b7944b9ca9676af62dbb592c);
circle_marker_2d92a0174d9a48acb27c8937d2192bd6.bindPopup(popup_8e452065785b4c25a755272cff932ba8)
;
var circle_marker_e7e5e4398f7e4b6eb7eade16b24eff9f = L.circleMarker(
[-26.10097, 28.04962],
{"bubblingMouseEvents": true, "color": "#000075", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#000075", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_bf48736a3eb8430bb6e11e354f85b3e7 = L.popup({"maxWidth": "100%"});
var html_27b861a54fa649e69f88a63a9f228d30 = $(`<div id="html_27b861a54fa649e69f88a63a9f228d30" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_bf48736a3eb8430bb6e11e354f85b3e7.setContent(html_27b861a54fa649e69f88a63a9f228d30);
circle_marker_e7e5e4398f7e4b6eb7eade16b24eff9f.bindPopup(popup_bf48736a3eb8430bb6e11e354f85b3e7)
;
var circle_marker_659e916df12a4aaba9fafb07eb0c6c90 = L.circleMarker(
[-26.19837, 28.313240000000004],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_7b182c9417984ec79bc3ebb0884e5f6a = L.popup({"maxWidth": "100%"});
var html_3676f1f235a24526898d892988fbfc86 = $(`<div id="html_3676f1f235a24526898d892988fbfc86" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_7b182c9417984ec79bc3ebb0884e5f6a.setContent(html_3676f1f235a24526898d892988fbfc86);
circle_marker_659e916df12a4aaba9fafb07eb0c6c90.bindPopup(popup_7b182c9417984ec79bc3ebb0884e5f6a)
;
var circle_marker_14aff989b04a4c7489184360052dd87d = L.circleMarker(
[-26.19925, 28.3117],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_fcd019b7c13f4ab2970f133ce96dce48 = L.popup({"maxWidth": "100%"});
var html_357d9c226452492ca1a53416721c34c0 = $(`<div id="html_357d9c226452492ca1a53416721c34c0" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_fcd019b7c13f4ab2970f133ce96dce48.setContent(html_357d9c226452492ca1a53416721c34c0);
circle_marker_14aff989b04a4c7489184360052dd87d.bindPopup(popup_fcd019b7c13f4ab2970f133ce96dce48)
;
var circle_marker_cda0f6b43bd1474baed8ca60da9fe4bc = L.circleMarker(
[-26.1994, 28.311459999999997],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_eb2bdb642c914cd9af354b58bb1c36b2 = L.popup({"maxWidth": "100%"});
var html_2a49607ef7cc4aa8b94d253d8cf931de = $(`<div id="html_2a49607ef7cc4aa8b94d253d8cf931de" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_eb2bdb642c914cd9af354b58bb1c36b2.setContent(html_2a49607ef7cc4aa8b94d253d8cf931de);
circle_marker_cda0f6b43bd1474baed8ca60da9fe4bc.bindPopup(popup_eb2bdb642c914cd9af354b58bb1c36b2)
;
var circle_marker_7fcab8a4b8954489aaa60f9c9362eb52 = L.circleMarker(
[-26.19864, 28.312720000000002],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_7055bf9c384b40b1a352ebcd833c25ee = L.popup({"maxWidth": "100%"});
var html_679449e7b596499aa6ee28a092d578e1 = $(`<div id="html_679449e7b596499aa6ee28a092d578e1" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_7055bf9c384b40b1a352ebcd833c25ee.setContent(html_679449e7b596499aa6ee28a092d578e1);
circle_marker_7fcab8a4b8954489aaa60f9c9362eb52.bindPopup(popup_7055bf9c384b40b1a352ebcd833c25ee)
;
var circle_marker_53c880a0781749f1a8ef210505fb6f2a = L.circleMarker(
[-26.19764, 28.31066],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_d957d4f59f2d43d6a042572a09078c21 = L.popup({"maxWidth": "100%"});
var html_45d61d4c313f4197a4400f228023bfbf = $(`<div id="html_45d61d4c313f4197a4400f228023bfbf" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_d957d4f59f2d43d6a042572a09078c21.setContent(html_45d61d4c313f4197a4400f228023bfbf);
circle_marker_53c880a0781749f1a8ef210505fb6f2a.bindPopup(popup_d957d4f59f2d43d6a042572a09078c21)
;
var circle_marker_076c77cdb93245179059398a71829acf = L.circleMarker(
[-26.199820000000003, 28.31069],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_545fd49183c04bcda4039db847777bc4 = L.popup({"maxWidth": "100%"});
var html_d9edfe402e1d485ca0357537b8571dba = $(`<div id="html_d9edfe402e1d485ca0357537b8571dba" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_545fd49183c04bcda4039db847777bc4.setContent(html_d9edfe402e1d485ca0357537b8571dba);
circle_marker_076c77cdb93245179059398a71829acf.bindPopup(popup_545fd49183c04bcda4039db847777bc4)
;
var circle_marker_729b00883d7d4f6cba735556e40bb5b4 = L.circleMarker(
[-26.19967, 28.31095],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_1d9df1639f77431cb77adfae63d9a58f = L.popup({"maxWidth": "100%"});
var html_1fd6b739d9ff4c52b129af8b278fa1d4 = $(`<div id="html_1fd6b739d9ff4c52b129af8b278fa1d4" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_1d9df1639f77431cb77adfae63d9a58f.setContent(html_1fd6b739d9ff4c52b129af8b278fa1d4);
circle_marker_729b00883d7d4f6cba735556e40bb5b4.bindPopup(popup_1d9df1639f77431cb77adfae63d9a58f)
;
var circle_marker_8557105db9fc4990baca77810cbf7984 = L.circleMarker(
[-26.19996, 28.31046],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_8c9905211bb34ad3b823c02456783bf1 = L.popup({"maxWidth": "100%"});
var html_e00f05c2cc074c299860e8d53ca13f8b = $(`<div id="html_e00f05c2cc074c299860e8d53ca13f8b" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_8c9905211bb34ad3b823c02456783bf1.setContent(html_e00f05c2cc074c299860e8d53ca13f8b);
circle_marker_8557105db9fc4990baca77810cbf7984.bindPopup(popup_8c9905211bb34ad3b823c02456783bf1)
;
var circle_marker_f46897af9bf741a5a25d3c3bcebf9cdd = L.circleMarker(
[-26.2004, 28.309790000000003],
{"bubblingMouseEvents": true, "color": "#800000", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#800000", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_8a297b2527be499188c3ccfb45795728 = L.popup({"maxWidth": "100%"});
var html_5f1a153c7aa94442930826611b015051 = $(`<div id="html_5f1a153c7aa94442930826611b015051" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_8a297b2527be499188c3ccfb45795728.setContent(html_5f1a153c7aa94442930826611b015051);
circle_marker_f46897af9bf741a5a25d3c3bcebf9cdd.bindPopup(popup_8a297b2527be499188c3ccfb45795728)
;
var circle_marker_fec42135e2324782b24939eddf56524c = L.circleMarker(
[-26.067520000000002, 28.234740000000002],
{"bubblingMouseEvents": true, "color": "#911eb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#911eb4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_ca7e6e5d59624e2aa54c8109ecc48a4c = L.popup({"maxWidth": "100%"});
var html_aebcd561b8f3499eb1861ed3fb274d40 = $(`<div id="html_aebcd561b8f3499eb1861ed3fb274d40" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_ca7e6e5d59624e2aa54c8109ecc48a4c.setContent(html_aebcd561b8f3499eb1861ed3fb274d40);
circle_marker_fec42135e2324782b24939eddf56524c.bindPopup(popup_ca7e6e5d59624e2aa54c8109ecc48a4c)
;
var circle_marker_2500db05204a40288aef18930a5d829c = L.circleMarker(
[-26.067529999999998, 28.23483],
{"bubblingMouseEvents": true, "color": "#911eb4", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#911eb4", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_49e0a58be36b4e60a5fcc748b643b62c);
var popup_ba7344dbc38b4b25b251ac91e4358c78 = L.popup({"maxWidth": "100%"});
var html_cec56dc6a5024a61a588683ade5ed912 = $(`<div id="html_cec56dc6a5024a61a588683ade5ed912" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_ba7344dbc38b4b25b251ac91e4358c78.setContent(html_cec56dc6a5024a61a588683ade5ed912);
circle_marker_2500db05204a40288aef18930a5d829c.bindPopup(popup_ba7344dbc38b4b25b251ac91e4358c78)
;
var circle_marker_ee6309e38a1d416195139344670bf7ba = L.circleMarker(
[-25.74036, 28.19112],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_aa55512e863c4a81ba11de6af4ca0add = L.popup({"maxWidth": "100%"});
var html_3563fd3552684db2b38e4937a617f718 = $(`<div id="html_3563fd3552684db2b38e4937a617f718" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_aa55512e863c4a81ba11de6af4ca0add.setContent(html_3563fd3552684db2b38e4937a617f718);
circle_marker_ee6309e38a1d416195139344670bf7ba.bindPopup(popup_aa55512e863c4a81ba11de6af4ca0add)
;
var circle_marker_f58263a0c4ad44da8cbdfa4f54896033 = L.circleMarker(
[-25.74055, 28.18913],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_4ba0f7678879423885df7fa509eacabe = L.popup({"maxWidth": "100%"});
var html_d999296088f845899aaf64d4ea18b8dc = $(`<div id="html_d999296088f845899aaf64d4ea18b8dc" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_4ba0f7678879423885df7fa509eacabe.setContent(html_d999296088f845899aaf64d4ea18b8dc);
circle_marker_f58263a0c4ad44da8cbdfa4f54896033.bindPopup(popup_4ba0f7678879423885df7fa509eacabe)
;
var circle_marker_21709322e86844d59c0bca52b80be90b = L.circleMarker(
[-26.38014, 28.388040000000004],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_4f4e4ebfe1194a458921ee621dc571e0 = L.popup({"maxWidth": "100%"});
var html_ce90445f02284f3c85d28205c27ad6bf = $(`<div id="html_ce90445f02284f3c85d28205c27ad6bf" style="width: 100.0%; height: 100.0%;">47</div>`)[0];
popup_4f4e4ebfe1194a458921ee621dc571e0.setContent(html_ce90445f02284f3c85d28205c27ad6bf);
circle_marker_21709322e86844d59c0bca52b80be90b.bindPopup(popup_4f4e4ebfe1194a458921ee621dc571e0)
;
var circle_marker_005b1755e81d41cb965c9b61cd57223d = L.circleMarker(
[-26.5628, 27.82767],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_1e8b65955cee40d79a52abfbaac2e1b6 = L.popup({"maxWidth": "100%"});
var html_724d39c7388c4b7db58d428c923402ec = $(`<div id="html_724d39c7388c4b7db58d428c923402ec" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_1e8b65955cee40d79a52abfbaac2e1b6.setContent(html_724d39c7388c4b7db58d428c923402ec);
circle_marker_005b1755e81d41cb965c9b61cd57223d.bindPopup(popup_1e8b65955cee40d79a52abfbaac2e1b6)
;
var circle_marker_ec036842f51b4ad89a58a19d34104306 = L.circleMarker(
[-26.224009999999996, 28.252440000000004],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_7f0cb960e225488dac965649f515b101 = L.popup({"maxWidth": "100%"});
var html_0948e8673c4d48eda0971dafc17348e9 = $(`<div id="html_0948e8673c4d48eda0971dafc17348e9" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_7f0cb960e225488dac965649f515b101.setContent(html_0948e8673c4d48eda0971dafc17348e9);
circle_marker_ec036842f51b4ad89a58a19d34104306.bindPopup(popup_7f0cb960e225488dac965649f515b101)
;
var circle_marker_6d6b2653c9d546c8a154aff66207e525 = L.circleMarker(
[-26.2239, 28.252090000000003],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_755a1a3ab30c4a578d3afd0793575497 = L.popup({"maxWidth": "100%"});
var html_8871c30918114cbb9585be9ad11aa4d3 = $(`<div id="html_8871c30918114cbb9585be9ad11aa4d3" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_755a1a3ab30c4a578d3afd0793575497.setContent(html_8871c30918114cbb9585be9ad11aa4d3);
circle_marker_6d6b2653c9d546c8a154aff66207e525.bindPopup(popup_755a1a3ab30c4a578d3afd0793575497)
;
var circle_marker_07a3acb2c0b542428bd7aa1cbb91013d = L.circleMarker(
[-26.22389, 28.251820000000002],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_a9805d036729436388622bfdeaf5d240 = L.popup({"maxWidth": "100%"});
var html_81b89a5fc10a45f09196fb9968e35ad4 = $(`<div id="html_81b89a5fc10a45f09196fb9968e35ad4" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_a9805d036729436388622bfdeaf5d240.setContent(html_81b89a5fc10a45f09196fb9968e35ad4);
circle_marker_07a3acb2c0b542428bd7aa1cbb91013d.bindPopup(popup_a9805d036729436388622bfdeaf5d240)
;
var circle_marker_05b9666319b14cd4b515a0bbfdfe3dd3 = L.circleMarker(
[-25.7388, 28.19616],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_ada51d38fe4b4878ba9bad8a1291c449 = L.popup({"maxWidth": "100%"});
var html_8ff5f2dda78c475485f56d226f983a7d = $(`<div id="html_8ff5f2dda78c475485f56d226f983a7d" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_ada51d38fe4b4878ba9bad8a1291c449.setContent(html_8ff5f2dda78c475485f56d226f983a7d);
circle_marker_05b9666319b14cd4b515a0bbfdfe3dd3.bindPopup(popup_ada51d38fe4b4878ba9bad8a1291c449)
;
var circle_marker_b99afe7c2b9f42efabf5ee0abca6d7a5 = L.circleMarker(
[-26.691329999999997, 27.79717],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_a52985bdeae0435dbfe084b4b3ba1382 = L.popup({"maxWidth": "100%"});
var html_59585716b70b41bb8491a0af44d29256 = $(`<div id="html_59585716b70b41bb8491a0af44d29256" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_a52985bdeae0435dbfe084b4b3ba1382.setContent(html_59585716b70b41bb8491a0af44d29256);
circle_marker_b99afe7c2b9f42efabf5ee0abca6d7a5.bindPopup(popup_a52985bdeae0435dbfe084b4b3ba1382)
;
var circle_marker_f5829521f2904938a91d708cc6eb8b02 = L.circleMarker(
[-26.691309999999998, 27.79727],
{"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_49e0a58be36b4e60a5fcc748b643b62c);
var popup_f1a3eafb5d0a49ab9e62a229d2ac8fc8 = L.popup({"maxWidth": "100%"});
var html_23e9d6aa52ca4036be372d4506a06067 = $(`<div id="html_23e9d6aa52ca4036be372d4506a06067" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_f1a3eafb5d0a49ab9e62a229d2ac8fc8.setContent(html_23e9d6aa52ca4036be372d4506a06067);
circle_marker_f5829521f2904938a91d708cc6eb8b02.bindPopup(popup_f1a3eafb5d0a49ab9e62a229d2ac8fc8)
;
var circle_marker_e3a6bbd405774ada9d4c83d8433f3edb = L.circleMarker(
[-26.69285, 27.797290000000004],
{"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_49e0a58be36b4e60a5fcc748b643b62c);