-
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_77d8d6cfc5c14eca86a7bea37341d171 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_77d8d6cfc5c14eca86a7bea37341d171" ></div>
</body>
<script>
var map_77d8d6cfc5c14eca86a7bea37341d171 = L.map(
"map_77d8d6cfc5c14eca86a7bea37341d171",
{
center: [-26.14501530984204, 28.065907630619684],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_20c6990aa57048f1aed14b19771a047e = 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_77d8d6cfc5c14eca86a7bea37341d171);
var circle_marker_7bd36aed046c4fd686769da41fbde6e3 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_cdfb0d8aeef1441b971c2c53fc8211b8 = L.popup({"maxWidth": "100%"});
var html_7a469467ba0d48c8b84cf8849f3d3043 = $(`<div id="html_7a469467ba0d48c8b84cf8849f3d3043" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_cdfb0d8aeef1441b971c2c53fc8211b8.setContent(html_7a469467ba0d48c8b84cf8849f3d3043);
circle_marker_7bd36aed046c4fd686769da41fbde6e3.bindPopup(popup_cdfb0d8aeef1441b971c2c53fc8211b8)
;
var circle_marker_6d54a153333f4b2b8bfb3afbe76a5453 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_6bf7333d9a864139bc8491d4b5ddb70c = L.popup({"maxWidth": "100%"});
var html_a25521e8a7ce456cb0a9a2b245b1b0d2 = $(`<div id="html_a25521e8a7ce456cb0a9a2b245b1b0d2" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_6bf7333d9a864139bc8491d4b5ddb70c.setContent(html_a25521e8a7ce456cb0a9a2b245b1b0d2);
circle_marker_6d54a153333f4b2b8bfb3afbe76a5453.bindPopup(popup_6bf7333d9a864139bc8491d4b5ddb70c)
;
var circle_marker_faa73709cc6f4dea97678c81e6443a24 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_b4e65f3f510a49249ba1b5f346a8f278 = L.popup({"maxWidth": "100%"});
var html_817c491060c84de396af77825ff86bf2 = $(`<div id="html_817c491060c84de396af77825ff86bf2" style="width: 100.0%; height: 100.0%;">5</div>`)[0];
popup_b4e65f3f510a49249ba1b5f346a8f278.setContent(html_817c491060c84de396af77825ff86bf2);
circle_marker_faa73709cc6f4dea97678c81e6443a24.bindPopup(popup_b4e65f3f510a49249ba1b5f346a8f278)
;
var circle_marker_7df4636ce6ff4e4a848ee23af27af520 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_034649e3687f4758ac1205c4b247f0fe = L.popup({"maxWidth": "100%"});
var html_8af669c450234116a5d87775f8f80683 = $(`<div id="html_8af669c450234116a5d87775f8f80683" style="width: 100.0%; height: 100.0%;">33</div>`)[0];
popup_034649e3687f4758ac1205c4b247f0fe.setContent(html_8af669c450234116a5d87775f8f80683);
circle_marker_7df4636ce6ff4e4a848ee23af27af520.bindPopup(popup_034649e3687f4758ac1205c4b247f0fe)
;
var circle_marker_7ee5d2335b5f4c95b808ab60189da9bb = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_4569634481dd4a359109e29835e1c52f = L.popup({"maxWidth": "100%"});
var html_4378ad8646f044cd811618bde285cbd6 = $(`<div id="html_4378ad8646f044cd811618bde285cbd6" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_4569634481dd4a359109e29835e1c52f.setContent(html_4378ad8646f044cd811618bde285cbd6);
circle_marker_7ee5d2335b5f4c95b808ab60189da9bb.bindPopup(popup_4569634481dd4a359109e29835e1c52f)
;
var circle_marker_65dddaef3bde4ca9828f2b21bc4e4f1a = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_b01401c2257246e8a6462ff571ff56d7 = L.popup({"maxWidth": "100%"});
var html_3aec2507295949028e9267f62b367306 = $(`<div id="html_3aec2507295949028e9267f62b367306" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_b01401c2257246e8a6462ff571ff56d7.setContent(html_3aec2507295949028e9267f62b367306);
circle_marker_65dddaef3bde4ca9828f2b21bc4e4f1a.bindPopup(popup_b01401c2257246e8a6462ff571ff56d7)
;
var circle_marker_ad939c8951414eb296b2890c84a09ad1 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_ae0d05d14953461cb9ddd2e2323b2961 = L.popup({"maxWidth": "100%"});
var html_6eedde13332c415daaf2624c3aa77bf6 = $(`<div id="html_6eedde13332c415daaf2624c3aa77bf6" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_ae0d05d14953461cb9ddd2e2323b2961.setContent(html_6eedde13332c415daaf2624c3aa77bf6);
circle_marker_ad939c8951414eb296b2890c84a09ad1.bindPopup(popup_ae0d05d14953461cb9ddd2e2323b2961)
;
var circle_marker_424a77888793459692573f74ee5b7d1a = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_b98bdaee1a8d4cae8fd9a7ebf062fdc7 = L.popup({"maxWidth": "100%"});
var html_0e3f45b5b86a474ca7bb898f0cf9634d = $(`<div id="html_0e3f45b5b86a474ca7bb898f0cf9634d" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_b98bdaee1a8d4cae8fd9a7ebf062fdc7.setContent(html_0e3f45b5b86a474ca7bb898f0cf9634d);
circle_marker_424a77888793459692573f74ee5b7d1a.bindPopup(popup_b98bdaee1a8d4cae8fd9a7ebf062fdc7)
;
var circle_marker_0f7f5c2a1dfc4898aa0bc46091ebb408 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_2a0006cc46314c149d9e74ca7db5d008 = L.popup({"maxWidth": "100%"});
var html_850d5e15f7ba43e28892eb5cafcf82ce = $(`<div id="html_850d5e15f7ba43e28892eb5cafcf82ce" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_2a0006cc46314c149d9e74ca7db5d008.setContent(html_850d5e15f7ba43e28892eb5cafcf82ce);
circle_marker_0f7f5c2a1dfc4898aa0bc46091ebb408.bindPopup(popup_2a0006cc46314c149d9e74ca7db5d008)
;
var circle_marker_7294a81e91394b1daf954470df2f7b1b = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_5408bc9cd52f4f258d33e9ff4d5ed90e = L.popup({"maxWidth": "100%"});
var html_a6f8c3b6812045d29fa0ea831fdbbf5a = $(`<div id="html_a6f8c3b6812045d29fa0ea831fdbbf5a" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_5408bc9cd52f4f258d33e9ff4d5ed90e.setContent(html_a6f8c3b6812045d29fa0ea831fdbbf5a);
circle_marker_7294a81e91394b1daf954470df2f7b1b.bindPopup(popup_5408bc9cd52f4f258d33e9ff4d5ed90e)
;
var circle_marker_98efe1327c05420cb91cc55d0343af1b = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_87fd902fdda24055878ff8f7878c5d69 = L.popup({"maxWidth": "100%"});
var html_b73233894a684ad982e33263ea273b81 = $(`<div id="html_b73233894a684ad982e33263ea273b81" style="width: 100.0%; height: 100.0%;">59</div>`)[0];
popup_87fd902fdda24055878ff8f7878c5d69.setContent(html_b73233894a684ad982e33263ea273b81);
circle_marker_98efe1327c05420cb91cc55d0343af1b.bindPopup(popup_87fd902fdda24055878ff8f7878c5d69)
;
var circle_marker_1b01f0018f834eb484e4cb5f173265c3 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_49595bd4279040069287cd929c7de496 = L.popup({"maxWidth": "100%"});
var html_a8d9dbaec13a4e74a55616b2f8d912a4 = $(`<div id="html_a8d9dbaec13a4e74a55616b2f8d912a4" style="width: 100.0%; height: 100.0%;">51</div>`)[0];
popup_49595bd4279040069287cd929c7de496.setContent(html_a8d9dbaec13a4e74a55616b2f8d912a4);
circle_marker_1b01f0018f834eb484e4cb5f173265c3.bindPopup(popup_49595bd4279040069287cd929c7de496)
;
var circle_marker_a90b233e89f642738e5c54bedf3a8ed5 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_54ca0fcafee44d4ea9f1140022c0bf94 = L.popup({"maxWidth": "100%"});
var html_cfb61c51bab64ff0875db4f37489d2b3 = $(`<div id="html_cfb61c51bab64ff0875db4f37489d2b3" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_54ca0fcafee44d4ea9f1140022c0bf94.setContent(html_cfb61c51bab64ff0875db4f37489d2b3);
circle_marker_a90b233e89f642738e5c54bedf3a8ed5.bindPopup(popup_54ca0fcafee44d4ea9f1140022c0bf94)
;
var circle_marker_da7eddd0519a40e4a0615c2fca90e0ab = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_fb0bf97735f445bc83ab1fcb7b5c82b2 = L.popup({"maxWidth": "100%"});
var html_7fa6463960b54eb8b3a6cf9a9d570485 = $(`<div id="html_7fa6463960b54eb8b3a6cf9a9d570485" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_fb0bf97735f445bc83ab1fcb7b5c82b2.setContent(html_7fa6463960b54eb8b3a6cf9a9d570485);
circle_marker_da7eddd0519a40e4a0615c2fca90e0ab.bindPopup(popup_fb0bf97735f445bc83ab1fcb7b5c82b2)
;
var circle_marker_c1eb457f4c8d40a6a8ddd9e499f6a948 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_7d237160609a476bba0a98ab6f0a348a = L.popup({"maxWidth": "100%"});
var html_6cb8f969f334493eaf63706680ec0d09 = $(`<div id="html_6cb8f969f334493eaf63706680ec0d09" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_7d237160609a476bba0a98ab6f0a348a.setContent(html_6cb8f969f334493eaf63706680ec0d09);
circle_marker_c1eb457f4c8d40a6a8ddd9e499f6a948.bindPopup(popup_7d237160609a476bba0a98ab6f0a348a)
;
var circle_marker_ce73a404e3a34739947aac0ad01a5d1f = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_bfbd19afbf5347c5a85b48b53619486f = L.popup({"maxWidth": "100%"});
var html_1a5532d4465c40108329687e03b58952 = $(`<div id="html_1a5532d4465c40108329687e03b58952" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_bfbd19afbf5347c5a85b48b53619486f.setContent(html_1a5532d4465c40108329687e03b58952);
circle_marker_ce73a404e3a34739947aac0ad01a5d1f.bindPopup(popup_bfbd19afbf5347c5a85b48b53619486f)
;
var circle_marker_43dbf54a3ee043ab981d86ea3d68c840 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_26924a34a1f84d8ca2c78ac9c0d71f3f = L.popup({"maxWidth": "100%"});
var html_ca0b04a4a7f6450e89e980ecdd0d9786 = $(`<div id="html_ca0b04a4a7f6450e89e980ecdd0d9786" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_26924a34a1f84d8ca2c78ac9c0d71f3f.setContent(html_ca0b04a4a7f6450e89e980ecdd0d9786);
circle_marker_43dbf54a3ee043ab981d86ea3d68c840.bindPopup(popup_26924a34a1f84d8ca2c78ac9c0d71f3f)
;
var circle_marker_fb10bdd862c942e3a880a6b4febf5bbb = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_eda69637473b4650b10813020be7c7f0 = L.popup({"maxWidth": "100%"});
var html_8db532955b8d47c88e567ab7206bb0a9 = $(`<div id="html_8db532955b8d47c88e567ab7206bb0a9" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_eda69637473b4650b10813020be7c7f0.setContent(html_8db532955b8d47c88e567ab7206bb0a9);
circle_marker_fb10bdd862c942e3a880a6b4febf5bbb.bindPopup(popup_eda69637473b4650b10813020be7c7f0)
;
var circle_marker_f86555fb40be4855904e3f469a0741a0 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_0c5e139d87894d67bd3d22c3d2bb8996 = L.popup({"maxWidth": "100%"});
var html_a7d62b167bfc4144a2826fbc326a228e = $(`<div id="html_a7d62b167bfc4144a2826fbc326a228e" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_0c5e139d87894d67bd3d22c3d2bb8996.setContent(html_a7d62b167bfc4144a2826fbc326a228e);
circle_marker_f86555fb40be4855904e3f469a0741a0.bindPopup(popup_0c5e139d87894d67bd3d22c3d2bb8996)
;
var circle_marker_6548f82652cc4615b05f673062985e2c = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_5062845a4d7e43dc88abcd88a29d0a76 = L.popup({"maxWidth": "100%"});
var html_885c77dbac0c4a92baf589510a078e80 = $(`<div id="html_885c77dbac0c4a92baf589510a078e80" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_5062845a4d7e43dc88abcd88a29d0a76.setContent(html_885c77dbac0c4a92baf589510a078e80);
circle_marker_6548f82652cc4615b05f673062985e2c.bindPopup(popup_5062845a4d7e43dc88abcd88a29d0a76)
;
var circle_marker_7e1f03f11e5e4229a512eb3ca3b8297d = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_e87b9176efb14ab5bfd9f1af9bd42eb6 = L.popup({"maxWidth": "100%"});
var html_0533fae817294df7a3212504413654bc = $(`<div id="html_0533fae817294df7a3212504413654bc" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_e87b9176efb14ab5bfd9f1af9bd42eb6.setContent(html_0533fae817294df7a3212504413654bc);
circle_marker_7e1f03f11e5e4229a512eb3ca3b8297d.bindPopup(popup_e87b9176efb14ab5bfd9f1af9bd42eb6)
;
var circle_marker_976b7541a6554ad5a17a83fece0468f3 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_b0fe7c01ec044db79e2ccdafcfa80eb3 = L.popup({"maxWidth": "100%"});
var html_8618040d95ed401a86dacecefd2147ba = $(`<div id="html_8618040d95ed401a86dacecefd2147ba" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_b0fe7c01ec044db79e2ccdafcfa80eb3.setContent(html_8618040d95ed401a86dacecefd2147ba);
circle_marker_976b7541a6554ad5a17a83fece0468f3.bindPopup(popup_b0fe7c01ec044db79e2ccdafcfa80eb3)
;
var circle_marker_0382e4d89acf4c25b864185b43771de1 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_fb7889d19b7243c5a777de8471a4bb29 = L.popup({"maxWidth": "100%"});
var html_eb203c9d044b4096b18cbdd792605769 = $(`<div id="html_eb203c9d044b4096b18cbdd792605769" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_fb7889d19b7243c5a777de8471a4bb29.setContent(html_eb203c9d044b4096b18cbdd792605769);
circle_marker_0382e4d89acf4c25b864185b43771de1.bindPopup(popup_fb7889d19b7243c5a777de8471a4bb29)
;
var circle_marker_43109403e84b4ae2adee2c28d7d19e87 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_d2d1717b8ed54949a58dcd5ed1a90c04 = L.popup({"maxWidth": "100%"});
var html_a974700ccbe344a8a9fb97c91ef450e7 = $(`<div id="html_a974700ccbe344a8a9fb97c91ef450e7" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_d2d1717b8ed54949a58dcd5ed1a90c04.setContent(html_a974700ccbe344a8a9fb97c91ef450e7);
circle_marker_43109403e84b4ae2adee2c28d7d19e87.bindPopup(popup_d2d1717b8ed54949a58dcd5ed1a90c04)
;
var circle_marker_3648b014a6304df4a10c0520a7bd9df9 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_03b9caf9caf94a21a5bbf8346a053e04 = L.popup({"maxWidth": "100%"});
var html_4c02a25fab1d47df87d0ef474953e222 = $(`<div id="html_4c02a25fab1d47df87d0ef474953e222" style="width: 100.0%; height: 100.0%;">37</div>`)[0];
popup_03b9caf9caf94a21a5bbf8346a053e04.setContent(html_4c02a25fab1d47df87d0ef474953e222);
circle_marker_3648b014a6304df4a10c0520a7bd9df9.bindPopup(popup_03b9caf9caf94a21a5bbf8346a053e04)
;
var circle_marker_6000dd12ba0e4ad3aa988812e86011d6 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_1565db13f68e4c67b7c6f52dc90f7967 = L.popup({"maxWidth": "100%"});
var html_e2e6c17285934e66899318d429faad34 = $(`<div id="html_e2e6c17285934e66899318d429faad34" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_1565db13f68e4c67b7c6f52dc90f7967.setContent(html_e2e6c17285934e66899318d429faad34);
circle_marker_6000dd12ba0e4ad3aa988812e86011d6.bindPopup(popup_1565db13f68e4c67b7c6f52dc90f7967)
;
var circle_marker_2acd31ef3ce64da89bf8004e81e6625c = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_e4249170ea1c45f98e12edea84d8457c = L.popup({"maxWidth": "100%"});
var html_99814a839005481c83d218b6d04d8766 = $(`<div id="html_99814a839005481c83d218b6d04d8766" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_e4249170ea1c45f98e12edea84d8457c.setContent(html_99814a839005481c83d218b6d04d8766);
circle_marker_2acd31ef3ce64da89bf8004e81e6625c.bindPopup(popup_e4249170ea1c45f98e12edea84d8457c)
;
var circle_marker_3b26ad1e80f547ddae8af4c38c112747 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_9734c2efaeb2474ba125bf539de206c8 = L.popup({"maxWidth": "100%"});
var html_df1d0e46463f41cdb51f8928d6aa496c = $(`<div id="html_df1d0e46463f41cdb51f8928d6aa496c" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_9734c2efaeb2474ba125bf539de206c8.setContent(html_df1d0e46463f41cdb51f8928d6aa496c);
circle_marker_3b26ad1e80f547ddae8af4c38c112747.bindPopup(popup_9734c2efaeb2474ba125bf539de206c8)
;
var circle_marker_6b87adcb389541c0afe4cc41cc3c616f = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_f248db461138403fb52115bb3bcfc98b = L.popup({"maxWidth": "100%"});
var html_3f9f220bf8ab4ad0a6ff85e6332f5b79 = $(`<div id="html_3f9f220bf8ab4ad0a6ff85e6332f5b79" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_f248db461138403fb52115bb3bcfc98b.setContent(html_3f9f220bf8ab4ad0a6ff85e6332f5b79);
circle_marker_6b87adcb389541c0afe4cc41cc3c616f.bindPopup(popup_f248db461138403fb52115bb3bcfc98b)
;
var circle_marker_a170d125073e48ad8a2335ce4bf24806 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_6d8dcea3ed8d440e97848b3418d7b1f2 = L.popup({"maxWidth": "100%"});
var html_d83a414e27574a38be2ecc73c29a3990 = $(`<div id="html_d83a414e27574a38be2ecc73c29a3990" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_6d8dcea3ed8d440e97848b3418d7b1f2.setContent(html_d83a414e27574a38be2ecc73c29a3990);
circle_marker_a170d125073e48ad8a2335ce4bf24806.bindPopup(popup_6d8dcea3ed8d440e97848b3418d7b1f2)
;
var circle_marker_2ad8a64bc3ac4ddebf4b4ccb1677c196 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_9e7a785d69df4bba8b1fdd22be8f70a3 = L.popup({"maxWidth": "100%"});
var html_f42cd6302ac045d39d4dc848e8cdfdfa = $(`<div id="html_f42cd6302ac045d39d4dc848e8cdfdfa" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_9e7a785d69df4bba8b1fdd22be8f70a3.setContent(html_f42cd6302ac045d39d4dc848e8cdfdfa);
circle_marker_2ad8a64bc3ac4ddebf4b4ccb1677c196.bindPopup(popup_9e7a785d69df4bba8b1fdd22be8f70a3)
;
var circle_marker_a880157ba9db4e7b8b82108022bc3584 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_17b69cd66b1141299b06a2a115c55d06 = L.popup({"maxWidth": "100%"});
var html_c80ab8c972494b2da673b8c5b5fc6f2b = $(`<div id="html_c80ab8c972494b2da673b8c5b5fc6f2b" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_17b69cd66b1141299b06a2a115c55d06.setContent(html_c80ab8c972494b2da673b8c5b5fc6f2b);
circle_marker_a880157ba9db4e7b8b82108022bc3584.bindPopup(popup_17b69cd66b1141299b06a2a115c55d06)
;
var circle_marker_c3b789058aa54b2f8a78347cd686e624 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_cffa1e3bfeb147cdbc0fd0cac1642e1e = L.popup({"maxWidth": "100%"});
var html_27a0837e819244408f0749f3990b2a99 = $(`<div id="html_27a0837e819244408f0749f3990b2a99" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_cffa1e3bfeb147cdbc0fd0cac1642e1e.setContent(html_27a0837e819244408f0749f3990b2a99);
circle_marker_c3b789058aa54b2f8a78347cd686e624.bindPopup(popup_cffa1e3bfeb147cdbc0fd0cac1642e1e)
;
var circle_marker_6ab14d5b9d9546f6817193623ecbf0d9 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_c525fc84a40649a0a71157ac933b80f5 = L.popup({"maxWidth": "100%"});
var html_f03eb915452443818b8ea320583223d9 = $(`<div id="html_f03eb915452443818b8ea320583223d9" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_c525fc84a40649a0a71157ac933b80f5.setContent(html_f03eb915452443818b8ea320583223d9);
circle_marker_6ab14d5b9d9546f6817193623ecbf0d9.bindPopup(popup_c525fc84a40649a0a71157ac933b80f5)
;
var circle_marker_8fad1a32fd774ca7990ae2c76ef86647 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_967932b49c7f4aeb88c1e9088533ece5 = L.popup({"maxWidth": "100%"});
var html_f28834369fc149e287c670073cd260c8 = $(`<div id="html_f28834369fc149e287c670073cd260c8" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_967932b49c7f4aeb88c1e9088533ece5.setContent(html_f28834369fc149e287c670073cd260c8);
circle_marker_8fad1a32fd774ca7990ae2c76ef86647.bindPopup(popup_967932b49c7f4aeb88c1e9088533ece5)
;
var circle_marker_405518a694114581879d843fa984246f = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_18b1cde0b67a4d21940490115f016074 = L.popup({"maxWidth": "100%"});
var html_43eb07456ad04b149e514683faf5ce14 = $(`<div id="html_43eb07456ad04b149e514683faf5ce14" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_18b1cde0b67a4d21940490115f016074.setContent(html_43eb07456ad04b149e514683faf5ce14);
circle_marker_405518a694114581879d843fa984246f.bindPopup(popup_18b1cde0b67a4d21940490115f016074)
;
var circle_marker_3f7847ec60204a25b6f12729683cfb03 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_6378f7fa8cc3450f88152ec7dfca1a15 = L.popup({"maxWidth": "100%"});
var html_1448e823c03e473a8975c24da9332c9f = $(`<div id="html_1448e823c03e473a8975c24da9332c9f" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_6378f7fa8cc3450f88152ec7dfca1a15.setContent(html_1448e823c03e473a8975c24da9332c9f);
circle_marker_3f7847ec60204a25b6f12729683cfb03.bindPopup(popup_6378f7fa8cc3450f88152ec7dfca1a15)
;
var circle_marker_8b0eeae98e60408983cb49c08252ab8f = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_c8b59b7234884db482f93bf74bc50dbe = L.popup({"maxWidth": "100%"});
var html_800c0fbab32449838b19aef62cdb7d05 = $(`<div id="html_800c0fbab32449838b19aef62cdb7d05" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_c8b59b7234884db482f93bf74bc50dbe.setContent(html_800c0fbab32449838b19aef62cdb7d05);
circle_marker_8b0eeae98e60408983cb49c08252ab8f.bindPopup(popup_c8b59b7234884db482f93bf74bc50dbe)
;
var circle_marker_9180f874358d46e587ea7f7372af7f14 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_ef09655a1587482cbb5137eefc301dc4 = L.popup({"maxWidth": "100%"});
var html_4fd0664fb7ff42a5842163c8e7908d9b = $(`<div id="html_4fd0664fb7ff42a5842163c8e7908d9b" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_ef09655a1587482cbb5137eefc301dc4.setContent(html_4fd0664fb7ff42a5842163c8e7908d9b);
circle_marker_9180f874358d46e587ea7f7372af7f14.bindPopup(popup_ef09655a1587482cbb5137eefc301dc4)
;
var circle_marker_76ebad80b2cd4ad9a4c8a77ac12f13e1 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_9e107458e7244db5a1889d777575df14 = L.popup({"maxWidth": "100%"});
var html_c4d950d2d7784b0fa4b0ee1df8358b71 = $(`<div id="html_c4d950d2d7784b0fa4b0ee1df8358b71" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_9e107458e7244db5a1889d777575df14.setContent(html_c4d950d2d7784b0fa4b0ee1df8358b71);
circle_marker_76ebad80b2cd4ad9a4c8a77ac12f13e1.bindPopup(popup_9e107458e7244db5a1889d777575df14)
;
var circle_marker_265cb297d8fe48eb94c26cd2ce5d8996 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_ec99e80b4c914395918070363ad61018 = L.popup({"maxWidth": "100%"});
var html_8d5864ae66484081b5fd1fbce9621301 = $(`<div id="html_8d5864ae66484081b5fd1fbce9621301" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_ec99e80b4c914395918070363ad61018.setContent(html_8d5864ae66484081b5fd1fbce9621301);
circle_marker_265cb297d8fe48eb94c26cd2ce5d8996.bindPopup(popup_ec99e80b4c914395918070363ad61018)
;
var circle_marker_178ddf1697b04461b4786975675652d9 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_bc6655d48b444480822e45df865766cf = L.popup({"maxWidth": "100%"});
var html_165b56c80804471a9dd1ac6cbe69b3e7 = $(`<div id="html_165b56c80804471a9dd1ac6cbe69b3e7" style="width: 100.0%; height: 100.0%;">47</div>`)[0];
popup_bc6655d48b444480822e45df865766cf.setContent(html_165b56c80804471a9dd1ac6cbe69b3e7);
circle_marker_178ddf1697b04461b4786975675652d9.bindPopup(popup_bc6655d48b444480822e45df865766cf)
;
var circle_marker_e217c13988c54a68b97ad0736389d072 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_2d7159c6c83b4719be26e2f06bf552db = L.popup({"maxWidth": "100%"});
var html_ad60efe5b16a4a049bf58110782c7f65 = $(`<div id="html_ad60efe5b16a4a049bf58110782c7f65" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_2d7159c6c83b4719be26e2f06bf552db.setContent(html_ad60efe5b16a4a049bf58110782c7f65);
circle_marker_e217c13988c54a68b97ad0736389d072.bindPopup(popup_2d7159c6c83b4719be26e2f06bf552db)
;
var circle_marker_1f75de59f966482c8d06a183f6c8ae7c = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_943b4d858e4d4a9ba0e4bfa5fc0730d6 = L.popup({"maxWidth": "100%"});
var html_eac52747407741c8b85bae1b09f78591 = $(`<div id="html_eac52747407741c8b85bae1b09f78591" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_943b4d858e4d4a9ba0e4bfa5fc0730d6.setContent(html_eac52747407741c8b85bae1b09f78591);
circle_marker_1f75de59f966482c8d06a183f6c8ae7c.bindPopup(popup_943b4d858e4d4a9ba0e4bfa5fc0730d6)
;
var circle_marker_b07bbcccda9b4aff8fd5e6dd556e93ea = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_935810b9c4104ab3ad475c3a6724e884 = L.popup({"maxWidth": "100%"});
var html_c5fb38b7995c41cdab71ffc4dce75c01 = $(`<div id="html_c5fb38b7995c41cdab71ffc4dce75c01" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_935810b9c4104ab3ad475c3a6724e884.setContent(html_c5fb38b7995c41cdab71ffc4dce75c01);
circle_marker_b07bbcccda9b4aff8fd5e6dd556e93ea.bindPopup(popup_935810b9c4104ab3ad475c3a6724e884)
;
var circle_marker_894a7bcdcc3b418d9b9b2beafc0b30f5 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_426ca219915140918ed8ddcbe9532b0e = L.popup({"maxWidth": "100%"});
var html_4024a60e163c4f94b4f6c568e3e9eb67 = $(`<div id="html_4024a60e163c4f94b4f6c568e3e9eb67" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_426ca219915140918ed8ddcbe9532b0e.setContent(html_4024a60e163c4f94b4f6c568e3e9eb67);
circle_marker_894a7bcdcc3b418d9b9b2beafc0b30f5.bindPopup(popup_426ca219915140918ed8ddcbe9532b0e)
;
var circle_marker_6c338fdaa8954e0184f00279af5d5640 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_e7337c63e577487cb9eca4f6a4e4a7b4 = L.popup({"maxWidth": "100%"});
var html_f8dfefb1bf204c19aeaf9bc6289af5f7 = $(`<div id="html_f8dfefb1bf204c19aeaf9bc6289af5f7" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_e7337c63e577487cb9eca4f6a4e4a7b4.setContent(html_f8dfefb1bf204c19aeaf9bc6289af5f7);
circle_marker_6c338fdaa8954e0184f00279af5d5640.bindPopup(popup_e7337c63e577487cb9eca4f6a4e4a7b4)
;
var circle_marker_3d1257b7a6924ee4a9b8b5cc7d964036 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_4a6047f8bcc64c7fa10a98acdd01cd19 = L.popup({"maxWidth": "100%"});
var html_0258df1ade624d08b303ca5210e9ae3b = $(`<div id="html_0258df1ade624d08b303ca5210e9ae3b" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_4a6047f8bcc64c7fa10a98acdd01cd19.setContent(html_0258df1ade624d08b303ca5210e9ae3b);
circle_marker_3d1257b7a6924ee4a9b8b5cc7d964036.bindPopup(popup_4a6047f8bcc64c7fa10a98acdd01cd19)
;
var circle_marker_d87736c25f114c2ba9c031e6e8695ef2 = 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_77d8d6cfc5c14eca86a7bea37341d171);
var popup_46a7d2916a8d4497a3aeeee4f558f291 = L.popup({"maxWidth": "100%"});
var html_a03508cf1f8e4309b26b19a62f1ff3e6 = $(`<div id="html_a03508cf1f8e4309b26b19a62f1ff3e6" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_46a7d2916a8d4497a3aeeee4f558f291.setContent(html_a03508cf1f8e4309b26b19a62f1ff3e6);
circle_marker_d87736c25f114c2ba9c031e6e8695ef2.bindPopup(popup_46a7d2916a8d4497a3aeeee4f558f291)
;
var circle_marker_9305f8f988df4cbf8f9f17892ca2efc2 = 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_77d8d6cfc5c14eca86a7bea37341d171);