-
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_469c067b26234f9688449bd10dbf8f18 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_469c067b26234f9688449bd10dbf8f18" ></div>
</body>
<script>
var map_469c067b26234f9688449bd10dbf8f18 = L.map(
"map_469c067b26234f9688449bd10dbf8f18",
{
center: [-26.14501530984204, 28.065907630619684],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_6007f0d41f5b4b1ba471507b5e04dfd2 = 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_469c067b26234f9688449bd10dbf8f18);
var circle_marker_bb52eb9b2cdc49e59e1cecf771ee115b = 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_469c067b26234f9688449bd10dbf8f18);
var popup_c9fe2dcef0fe496cbb84fbef4d43b34f = L.popup({"maxWidth": "100%"});
var html_ec282ca4008244b7b72b62c9befc66f5 = $(`<div id="html_ec282ca4008244b7b72b62c9befc66f5" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_c9fe2dcef0fe496cbb84fbef4d43b34f.setContent(html_ec282ca4008244b7b72b62c9befc66f5);
circle_marker_bb52eb9b2cdc49e59e1cecf771ee115b.bindPopup(popup_c9fe2dcef0fe496cbb84fbef4d43b34f)
;
var circle_marker_731024f3a8e54227a728f014c0c56300 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_a9f74c0bf2094636b14371d3da50755f = L.popup({"maxWidth": "100%"});
var html_f95b9ef48c004c46b58c42d73b4571f0 = $(`<div id="html_f95b9ef48c004c46b58c42d73b4571f0" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_a9f74c0bf2094636b14371d3da50755f.setContent(html_f95b9ef48c004c46b58c42d73b4571f0);
circle_marker_731024f3a8e54227a728f014c0c56300.bindPopup(popup_a9f74c0bf2094636b14371d3da50755f)
;
var circle_marker_9d9006180b094131b89f291dcfd178e3 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_5b7f8dd7a3624cdfa9f5954ffc34034e = L.popup({"maxWidth": "100%"});
var html_07e2b5352b44470f860a89ab5683406f = $(`<div id="html_07e2b5352b44470f860a89ab5683406f" style="width: 100.0%; height: 100.0%;">5</div>`)[0];
popup_5b7f8dd7a3624cdfa9f5954ffc34034e.setContent(html_07e2b5352b44470f860a89ab5683406f);
circle_marker_9d9006180b094131b89f291dcfd178e3.bindPopup(popup_5b7f8dd7a3624cdfa9f5954ffc34034e)
;
var circle_marker_2c049d1e475248c5a3ee1172c432a2d8 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_d6b623aae5594c5b9e61909061c068cb = L.popup({"maxWidth": "100%"});
var html_c158cab661b44ca99d13c02a4d4a5d5f = $(`<div id="html_c158cab661b44ca99d13c02a4d4a5d5f" style="width: 100.0%; height: 100.0%;">33</div>`)[0];
popup_d6b623aae5594c5b9e61909061c068cb.setContent(html_c158cab661b44ca99d13c02a4d4a5d5f);
circle_marker_2c049d1e475248c5a3ee1172c432a2d8.bindPopup(popup_d6b623aae5594c5b9e61909061c068cb)
;
var circle_marker_def63db25a774318abc152d666963d42 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_50fab2ec8eda49c68e45589640985a60 = L.popup({"maxWidth": "100%"});
var html_c0a4ccbf049a4ad88d250a88ae39e647 = $(`<div id="html_c0a4ccbf049a4ad88d250a88ae39e647" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_50fab2ec8eda49c68e45589640985a60.setContent(html_c0a4ccbf049a4ad88d250a88ae39e647);
circle_marker_def63db25a774318abc152d666963d42.bindPopup(popup_50fab2ec8eda49c68e45589640985a60)
;
var circle_marker_840d49233df4426b91955c0421ed00d7 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_43bbf15f39bd4fc8af2a41d9f3cbc6b1 = L.popup({"maxWidth": "100%"});
var html_e942a457bf114d2585c5f375cae6fa85 = $(`<div id="html_e942a457bf114d2585c5f375cae6fa85" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_43bbf15f39bd4fc8af2a41d9f3cbc6b1.setContent(html_e942a457bf114d2585c5f375cae6fa85);
circle_marker_840d49233df4426b91955c0421ed00d7.bindPopup(popup_43bbf15f39bd4fc8af2a41d9f3cbc6b1)
;
var circle_marker_05c001bf9e3b4ee18e9196414318431c = 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_469c067b26234f9688449bd10dbf8f18);
var popup_40be9c28c855401ea01481550abc3e60 = L.popup({"maxWidth": "100%"});
var html_b3f726f263eb4db2bbdda88b4fdfdb17 = $(`<div id="html_b3f726f263eb4db2bbdda88b4fdfdb17" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_40be9c28c855401ea01481550abc3e60.setContent(html_b3f726f263eb4db2bbdda88b4fdfdb17);
circle_marker_05c001bf9e3b4ee18e9196414318431c.bindPopup(popup_40be9c28c855401ea01481550abc3e60)
;
var circle_marker_6e96b37d29fb4585af3c838a438d8a13 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_e1c747c6a76a45859f20355d6296cbca = L.popup({"maxWidth": "100%"});
var html_8e8856d4464948eeb63758c81a9aad4c = $(`<div id="html_8e8856d4464948eeb63758c81a9aad4c" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_e1c747c6a76a45859f20355d6296cbca.setContent(html_8e8856d4464948eeb63758c81a9aad4c);
circle_marker_6e96b37d29fb4585af3c838a438d8a13.bindPopup(popup_e1c747c6a76a45859f20355d6296cbca)
;
var circle_marker_f96f248db57c47ef9913d438702c7776 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_1aa6316c91024694a33f9f27b6023c16 = L.popup({"maxWidth": "100%"});
var html_e353aed9f154459db98d8e26ffd9c1b4 = $(`<div id="html_e353aed9f154459db98d8e26ffd9c1b4" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_1aa6316c91024694a33f9f27b6023c16.setContent(html_e353aed9f154459db98d8e26ffd9c1b4);
circle_marker_f96f248db57c47ef9913d438702c7776.bindPopup(popup_1aa6316c91024694a33f9f27b6023c16)
;
var circle_marker_e808d2a3c23d408e8e398e63e35bf2e8 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_e6a7b393f4a140719b91e67326536bac = L.popup({"maxWidth": "100%"});
var html_d533a5c624fb4d3cb405b8c403a39241 = $(`<div id="html_d533a5c624fb4d3cb405b8c403a39241" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_e6a7b393f4a140719b91e67326536bac.setContent(html_d533a5c624fb4d3cb405b8c403a39241);
circle_marker_e808d2a3c23d408e8e398e63e35bf2e8.bindPopup(popup_e6a7b393f4a140719b91e67326536bac)
;
var circle_marker_c17a590aeee44f599b481a3b655533ce = 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_469c067b26234f9688449bd10dbf8f18);
var popup_a9551c7508374a2bb708bad1bb4b502a = L.popup({"maxWidth": "100%"});
var html_65d23d94bbd849ffb94c1382836cf4d3 = $(`<div id="html_65d23d94bbd849ffb94c1382836cf4d3" style="width: 100.0%; height: 100.0%;">59</div>`)[0];
popup_a9551c7508374a2bb708bad1bb4b502a.setContent(html_65d23d94bbd849ffb94c1382836cf4d3);
circle_marker_c17a590aeee44f599b481a3b655533ce.bindPopup(popup_a9551c7508374a2bb708bad1bb4b502a)
;
var circle_marker_e598fbebcc7e43f4998a7dc24df0dc52 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_73c1e7c1e452439c9fd513ba03d87518 = L.popup({"maxWidth": "100%"});
var html_565fe506b7814f9fb02fcb00fae33ab0 = $(`<div id="html_565fe506b7814f9fb02fcb00fae33ab0" style="width: 100.0%; height: 100.0%;">51</div>`)[0];
popup_73c1e7c1e452439c9fd513ba03d87518.setContent(html_565fe506b7814f9fb02fcb00fae33ab0);
circle_marker_e598fbebcc7e43f4998a7dc24df0dc52.bindPopup(popup_73c1e7c1e452439c9fd513ba03d87518)
;
var circle_marker_574afcb7f075411fa2fc08c915b3f717 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_572d8a67832249afbadb168351b14720 = L.popup({"maxWidth": "100%"});
var html_fd43e3ae85134f9695e4614c945d0810 = $(`<div id="html_fd43e3ae85134f9695e4614c945d0810" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_572d8a67832249afbadb168351b14720.setContent(html_fd43e3ae85134f9695e4614c945d0810);
circle_marker_574afcb7f075411fa2fc08c915b3f717.bindPopup(popup_572d8a67832249afbadb168351b14720)
;
var circle_marker_ac66f46b5a9f4088b39f445dc2415ff5 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_e2a37b8fe2ee49468ba2452980adedb6 = L.popup({"maxWidth": "100%"});
var html_a8996bb51ef747c29a738352905bcbfb = $(`<div id="html_a8996bb51ef747c29a738352905bcbfb" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_e2a37b8fe2ee49468ba2452980adedb6.setContent(html_a8996bb51ef747c29a738352905bcbfb);
circle_marker_ac66f46b5a9f4088b39f445dc2415ff5.bindPopup(popup_e2a37b8fe2ee49468ba2452980adedb6)
;
var circle_marker_4f963a94337c455bb9a121f569dd5f73 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_42a7691749194f678f9616ce35e726ae = L.popup({"maxWidth": "100%"});
var html_a631ce4d4714419d968ffbdbe0336faa = $(`<div id="html_a631ce4d4714419d968ffbdbe0336faa" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_42a7691749194f678f9616ce35e726ae.setContent(html_a631ce4d4714419d968ffbdbe0336faa);
circle_marker_4f963a94337c455bb9a121f569dd5f73.bindPopup(popup_42a7691749194f678f9616ce35e726ae)
;
var circle_marker_25d797211c7240649a5d67b99f3828cf = 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_469c067b26234f9688449bd10dbf8f18);
var popup_8f23c5d7b3f5497aa82ac022fbbe16cf = L.popup({"maxWidth": "100%"});
var html_e492a8dbc1e743aca2f2873c492da0af = $(`<div id="html_e492a8dbc1e743aca2f2873c492da0af" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_8f23c5d7b3f5497aa82ac022fbbe16cf.setContent(html_e492a8dbc1e743aca2f2873c492da0af);
circle_marker_25d797211c7240649a5d67b99f3828cf.bindPopup(popup_8f23c5d7b3f5497aa82ac022fbbe16cf)
;
var circle_marker_7d27d1282e204710b2c63b86aa5b65e7 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_19c043f0cef84d938d2f834328a25b2d = L.popup({"maxWidth": "100%"});
var html_2fe9022b5a7949598fd91e8ab275b93a = $(`<div id="html_2fe9022b5a7949598fd91e8ab275b93a" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_19c043f0cef84d938d2f834328a25b2d.setContent(html_2fe9022b5a7949598fd91e8ab275b93a);
circle_marker_7d27d1282e204710b2c63b86aa5b65e7.bindPopup(popup_19c043f0cef84d938d2f834328a25b2d)
;
var circle_marker_7e2a98c4c2004e9ba83710670510e64c = 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_469c067b26234f9688449bd10dbf8f18);
var popup_457aa602f23642ffae49d868c13812a9 = L.popup({"maxWidth": "100%"});
var html_15bdf0051a524d56b26b0cc5928056a9 = $(`<div id="html_15bdf0051a524d56b26b0cc5928056a9" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_457aa602f23642ffae49d868c13812a9.setContent(html_15bdf0051a524d56b26b0cc5928056a9);
circle_marker_7e2a98c4c2004e9ba83710670510e64c.bindPopup(popup_457aa602f23642ffae49d868c13812a9)
;
var circle_marker_c3ea31282fea43dc81d6a5aa90334e7c = 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_469c067b26234f9688449bd10dbf8f18);
var popup_9c2afb2a3cbd4661b35e6575620d654d = L.popup({"maxWidth": "100%"});
var html_eefa1f6f248d442e9099ea74425eeaef = $(`<div id="html_eefa1f6f248d442e9099ea74425eeaef" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_9c2afb2a3cbd4661b35e6575620d654d.setContent(html_eefa1f6f248d442e9099ea74425eeaef);
circle_marker_c3ea31282fea43dc81d6a5aa90334e7c.bindPopup(popup_9c2afb2a3cbd4661b35e6575620d654d)
;
var circle_marker_3d91a475597a428f88a97aee434d97ee = 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_469c067b26234f9688449bd10dbf8f18);
var popup_f3a128e861e3438d9a97c2511d3acedc = L.popup({"maxWidth": "100%"});
var html_2d10e7c0287f4df180165283f8803e60 = $(`<div id="html_2d10e7c0287f4df180165283f8803e60" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_f3a128e861e3438d9a97c2511d3acedc.setContent(html_2d10e7c0287f4df180165283f8803e60);
circle_marker_3d91a475597a428f88a97aee434d97ee.bindPopup(popup_f3a128e861e3438d9a97c2511d3acedc)
;
var circle_marker_c1be446adea04517aac175b70abfee29 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_9252dc4bb5d142838b7def23f493c968 = L.popup({"maxWidth": "100%"});
var html_a5daf256dff145eebbeb8a886d874bea = $(`<div id="html_a5daf256dff145eebbeb8a886d874bea" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_9252dc4bb5d142838b7def23f493c968.setContent(html_a5daf256dff145eebbeb8a886d874bea);
circle_marker_c1be446adea04517aac175b70abfee29.bindPopup(popup_9252dc4bb5d142838b7def23f493c968)
;
var circle_marker_9b922e195f024190a540fca55d4a16dc = 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_469c067b26234f9688449bd10dbf8f18);
var popup_c9e8b151c75f4c209c710c6c3701318e = L.popup({"maxWidth": "100%"});
var html_1c9a2a6aff62445b850f5136a05ecabd = $(`<div id="html_1c9a2a6aff62445b850f5136a05ecabd" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_c9e8b151c75f4c209c710c6c3701318e.setContent(html_1c9a2a6aff62445b850f5136a05ecabd);
circle_marker_9b922e195f024190a540fca55d4a16dc.bindPopup(popup_c9e8b151c75f4c209c710c6c3701318e)
;
var circle_marker_e6ed8bca7d304110bde1fd77f3f50e1e = 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_469c067b26234f9688449bd10dbf8f18);
var popup_71d2aee1952f466ca6b49a47913abccb = L.popup({"maxWidth": "100%"});
var html_0e9b83f45bda4e939512653a612cc881 = $(`<div id="html_0e9b83f45bda4e939512653a612cc881" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_71d2aee1952f466ca6b49a47913abccb.setContent(html_0e9b83f45bda4e939512653a612cc881);
circle_marker_e6ed8bca7d304110bde1fd77f3f50e1e.bindPopup(popup_71d2aee1952f466ca6b49a47913abccb)
;
var circle_marker_1efa725fa5ff4c8e8e4b52364a859331 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_245c52d1fc994f559e575e10d6669cb9 = L.popup({"maxWidth": "100%"});
var html_7440e463b7c147d586c51019e9f2da1a = $(`<div id="html_7440e463b7c147d586c51019e9f2da1a" style="width: 100.0%; height: 100.0%;">20</div>`)[0];
popup_245c52d1fc994f559e575e10d6669cb9.setContent(html_7440e463b7c147d586c51019e9f2da1a);
circle_marker_1efa725fa5ff4c8e8e4b52364a859331.bindPopup(popup_245c52d1fc994f559e575e10d6669cb9)
;
var circle_marker_80735481f94c4986be73d6be4e4356ae = 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_469c067b26234f9688449bd10dbf8f18);
var popup_3da492a54156467c91612e8806bfdc50 = L.popup({"maxWidth": "100%"});
var html_3c8f839596764ad4a0071f0a17e9d740 = $(`<div id="html_3c8f839596764ad4a0071f0a17e9d740" style="width: 100.0%; height: 100.0%;">37</div>`)[0];
popup_3da492a54156467c91612e8806bfdc50.setContent(html_3c8f839596764ad4a0071f0a17e9d740);
circle_marker_80735481f94c4986be73d6be4e4356ae.bindPopup(popup_3da492a54156467c91612e8806bfdc50)
;
var circle_marker_dd512209e4a548f381a8b53691669e28 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_d69c74a985f24ddba6efd27492912c84 = L.popup({"maxWidth": "100%"});
var html_9d60c13c41774e5d9bf50ff775835447 = $(`<div id="html_9d60c13c41774e5d9bf50ff775835447" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_d69c74a985f24ddba6efd27492912c84.setContent(html_9d60c13c41774e5d9bf50ff775835447);
circle_marker_dd512209e4a548f381a8b53691669e28.bindPopup(popup_d69c74a985f24ddba6efd27492912c84)
;
var circle_marker_567e8f054eaa4cca9456242ad4838713 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_05d36c07c22d4b82858978e0331fcf6e = L.popup({"maxWidth": "100%"});
var html_eb2e4411b2d648c28eff463af49acb3b = $(`<div id="html_eb2e4411b2d648c28eff463af49acb3b" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_05d36c07c22d4b82858978e0331fcf6e.setContent(html_eb2e4411b2d648c28eff463af49acb3b);
circle_marker_567e8f054eaa4cca9456242ad4838713.bindPopup(popup_05d36c07c22d4b82858978e0331fcf6e)
;
var circle_marker_0825e7a8c3ae421c8f7c3737253fa836 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_4874fb68056f4b778cdc7215ed5cbadc = L.popup({"maxWidth": "100%"});
var html_8a03e23f17514137a3cd18fc6d1c9298 = $(`<div id="html_8a03e23f17514137a3cd18fc6d1c9298" style="width: 100.0%; height: 100.0%;">18</div>`)[0];
popup_4874fb68056f4b778cdc7215ed5cbadc.setContent(html_8a03e23f17514137a3cd18fc6d1c9298);
circle_marker_0825e7a8c3ae421c8f7c3737253fa836.bindPopup(popup_4874fb68056f4b778cdc7215ed5cbadc)
;
var circle_marker_70b9152164324c24becf8f31cb03cebe = 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_469c067b26234f9688449bd10dbf8f18);
var popup_e76148b3b66a49c393ca6d787abff6f8 = L.popup({"maxWidth": "100%"});
var html_7354bb369e7e4ffab38e6582585705f7 = $(`<div id="html_7354bb369e7e4ffab38e6582585705f7" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_e76148b3b66a49c393ca6d787abff6f8.setContent(html_7354bb369e7e4ffab38e6582585705f7);
circle_marker_70b9152164324c24becf8f31cb03cebe.bindPopup(popup_e76148b3b66a49c393ca6d787abff6f8)
;
var circle_marker_a10a280ca61c4f21b221ff4fce84bfd5 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_fca0a3c136404e4aa83663691d6a6616 = L.popup({"maxWidth": "100%"});
var html_709ecb4b5b7b47d0b18b166d55330188 = $(`<div id="html_709ecb4b5b7b47d0b18b166d55330188" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_fca0a3c136404e4aa83663691d6a6616.setContent(html_709ecb4b5b7b47d0b18b166d55330188);
circle_marker_a10a280ca61c4f21b221ff4fce84bfd5.bindPopup(popup_fca0a3c136404e4aa83663691d6a6616)
;
var circle_marker_69d3cd830716486683b805448e00e954 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_1df6a64465f542479dcaa5d382a2676d = L.popup({"maxWidth": "100%"});
var html_3bbb7289dc0243619d75b1d79a05fe59 = $(`<div id="html_3bbb7289dc0243619d75b1d79a05fe59" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_1df6a64465f542479dcaa5d382a2676d.setContent(html_3bbb7289dc0243619d75b1d79a05fe59);
circle_marker_69d3cd830716486683b805448e00e954.bindPopup(popup_1df6a64465f542479dcaa5d382a2676d)
;
var circle_marker_a2ab2ac50a164585afe3f6139516f87b = 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_469c067b26234f9688449bd10dbf8f18);
var popup_b4e8da790d5049749239134fdbd6598e = L.popup({"maxWidth": "100%"});
var html_c86b557b7fcb4c47ad4cfb5f0240c077 = $(`<div id="html_c86b557b7fcb4c47ad4cfb5f0240c077" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_b4e8da790d5049749239134fdbd6598e.setContent(html_c86b557b7fcb4c47ad4cfb5f0240c077);
circle_marker_a2ab2ac50a164585afe3f6139516f87b.bindPopup(popup_b4e8da790d5049749239134fdbd6598e)
;
var circle_marker_d82cb50a779e4358b0e00b9feb66fc39 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_ae48a9df0d344c7e8df88bd3de94f257 = L.popup({"maxWidth": "100%"});
var html_c43cc63611c94e1d8d914ebac134377f = $(`<div id="html_c43cc63611c94e1d8d914ebac134377f" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_ae48a9df0d344c7e8df88bd3de94f257.setContent(html_c43cc63611c94e1d8d914ebac134377f);
circle_marker_d82cb50a779e4358b0e00b9feb66fc39.bindPopup(popup_ae48a9df0d344c7e8df88bd3de94f257)
;
var circle_marker_10460e6ca66f4773ad52f9b79b5292d6 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_8164632cf9db42419fc4c1c25f5049a2 = L.popup({"maxWidth": "100%"});
var html_b2ed5ae5c74a4da89da9c5cd05992c91 = $(`<div id="html_b2ed5ae5c74a4da89da9c5cd05992c91" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_8164632cf9db42419fc4c1c25f5049a2.setContent(html_b2ed5ae5c74a4da89da9c5cd05992c91);
circle_marker_10460e6ca66f4773ad52f9b79b5292d6.bindPopup(popup_8164632cf9db42419fc4c1c25f5049a2)
;
var circle_marker_f1f82a3ee39749e0804514c7d216d635 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_dc9dbe7bb1ea4af8a9cac98d100efeab = L.popup({"maxWidth": "100%"});
var html_095ed09b19ce43b8b211588569522b58 = $(`<div id="html_095ed09b19ce43b8b211588569522b58" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_dc9dbe7bb1ea4af8a9cac98d100efeab.setContent(html_095ed09b19ce43b8b211588569522b58);
circle_marker_f1f82a3ee39749e0804514c7d216d635.bindPopup(popup_dc9dbe7bb1ea4af8a9cac98d100efeab)
;
var circle_marker_53a6106b7a754b34b904fd92ca5ea107 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_24720a1dec1d4326b27459b66f8b31cb = L.popup({"maxWidth": "100%"});
var html_4ab00c13767245b6be069480b8e3fede = $(`<div id="html_4ab00c13767245b6be069480b8e3fede" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_24720a1dec1d4326b27459b66f8b31cb.setContent(html_4ab00c13767245b6be069480b8e3fede);
circle_marker_53a6106b7a754b34b904fd92ca5ea107.bindPopup(popup_24720a1dec1d4326b27459b66f8b31cb)
;
var circle_marker_2de7e2357d244f0cb25312c23b2f9ebe = 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_469c067b26234f9688449bd10dbf8f18);
var popup_eb227c5dd596409d993680953f90da01 = L.popup({"maxWidth": "100%"});
var html_b779496991b242bbae61d843400ebc4a = $(`<div id="html_b779496991b242bbae61d843400ebc4a" style="width: 100.0%; height: 100.0%;">14</div>`)[0];
popup_eb227c5dd596409d993680953f90da01.setContent(html_b779496991b242bbae61d843400ebc4a);
circle_marker_2de7e2357d244f0cb25312c23b2f9ebe.bindPopup(popup_eb227c5dd596409d993680953f90da01)
;
var circle_marker_7cfee5e35f9e46adb7c42276fa1efeb3 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_9133db46d11a4fb89767425db0d72253 = L.popup({"maxWidth": "100%"});
var html_d8536f9fce1f431692c193963f496c0f = $(`<div id="html_d8536f9fce1f431692c193963f496c0f" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_9133db46d11a4fb89767425db0d72253.setContent(html_d8536f9fce1f431692c193963f496c0f);
circle_marker_7cfee5e35f9e46adb7c42276fa1efeb3.bindPopup(popup_9133db46d11a4fb89767425db0d72253)
;
var circle_marker_c44aff8e6feb433c91faf2eeb50d92ed = 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_469c067b26234f9688449bd10dbf8f18);
var popup_e248940f624d4101a911644fa116ad8c = L.popup({"maxWidth": "100%"});
var html_d8490d9b9d4748a0be090ba166802884 = $(`<div id="html_d8490d9b9d4748a0be090ba166802884" style="width: 100.0%; height: 100.0%;">65</div>`)[0];
popup_e248940f624d4101a911644fa116ad8c.setContent(html_d8490d9b9d4748a0be090ba166802884);
circle_marker_c44aff8e6feb433c91faf2eeb50d92ed.bindPopup(popup_e248940f624d4101a911644fa116ad8c)
;
var circle_marker_f64b141e4c744936a6014904a4a902e0 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_98a0857522b84d2f802f0e7257e781b7 = L.popup({"maxWidth": "100%"});
var html_d7aa4c0305bd4c3e9a04ebaa671dc005 = $(`<div id="html_d7aa4c0305bd4c3e9a04ebaa671dc005" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_98a0857522b84d2f802f0e7257e781b7.setContent(html_d7aa4c0305bd4c3e9a04ebaa671dc005);
circle_marker_f64b141e4c744936a6014904a4a902e0.bindPopup(popup_98a0857522b84d2f802f0e7257e781b7)
;
var circle_marker_cccb3fc70c7b478ca9d988125c01e30d = 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_469c067b26234f9688449bd10dbf8f18);
var popup_af8fb5cfd2a44c3d9c290987ac146965 = L.popup({"maxWidth": "100%"});
var html_51dfccaa6b13489cbcc72474790b97c3 = $(`<div id="html_51dfccaa6b13489cbcc72474790b97c3" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_af8fb5cfd2a44c3d9c290987ac146965.setContent(html_51dfccaa6b13489cbcc72474790b97c3);
circle_marker_cccb3fc70c7b478ca9d988125c01e30d.bindPopup(popup_af8fb5cfd2a44c3d9c290987ac146965)
;
var circle_marker_7951fb46e2354ed09e7b4bb3ad72a079 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_6831392a6fd24ec7b0fe6a61d59726a7 = L.popup({"maxWidth": "100%"});
var html_2f131be604924ac6a6b06c26bf3529e2 = $(`<div id="html_2f131be604924ac6a6b06c26bf3529e2" style="width: 100.0%; height: 100.0%;">47</div>`)[0];
popup_6831392a6fd24ec7b0fe6a61d59726a7.setContent(html_2f131be604924ac6a6b06c26bf3529e2);
circle_marker_7951fb46e2354ed09e7b4bb3ad72a079.bindPopup(popup_6831392a6fd24ec7b0fe6a61d59726a7)
;
var circle_marker_85ea469d9fb342c8a4138127bd16c3b7 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_37e89db8a309493c8228a83cc7fb765d = L.popup({"maxWidth": "100%"});
var html_1fd8fced04f84b24ba184ff9e38e67f3 = $(`<div id="html_1fd8fced04f84b24ba184ff9e38e67f3" style="width: 100.0%; height: 100.0%;">60</div>`)[0];
popup_37e89db8a309493c8228a83cc7fb765d.setContent(html_1fd8fced04f84b24ba184ff9e38e67f3);
circle_marker_85ea469d9fb342c8a4138127bd16c3b7.bindPopup(popup_37e89db8a309493c8228a83cc7fb765d)
;
var circle_marker_d9c6dcaba5644cfd987f2f914251d619 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_c07d3dbcd8ed4c8c865a9ff4dcf57fd5 = L.popup({"maxWidth": "100%"});
var html_af9d3a9c5a7540d1a2b2aea1b1a34d0a = $(`<div id="html_af9d3a9c5a7540d1a2b2aea1b1a34d0a" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_c07d3dbcd8ed4c8c865a9ff4dcf57fd5.setContent(html_af9d3a9c5a7540d1a2b2aea1b1a34d0a);
circle_marker_d9c6dcaba5644cfd987f2f914251d619.bindPopup(popup_c07d3dbcd8ed4c8c865a9ff4dcf57fd5)
;
var circle_marker_0f48a7b3683f4135a6fc59d8019de19d = 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_469c067b26234f9688449bd10dbf8f18);
var popup_8410933b11b940b98d13d6e87e3b4b5a = L.popup({"maxWidth": "100%"});
var html_08ec80de7ab24a049b12effd647cfcc6 = $(`<div id="html_08ec80de7ab24a049b12effd647cfcc6" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_8410933b11b940b98d13d6e87e3b4b5a.setContent(html_08ec80de7ab24a049b12effd647cfcc6);
circle_marker_0f48a7b3683f4135a6fc59d8019de19d.bindPopup(popup_8410933b11b940b98d13d6e87e3b4b5a)
;
var circle_marker_56211fdbd6c4483ab58a87ce93167e78 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_d44c9233be1b4f1f9d29380f8c134dad = L.popup({"maxWidth": "100%"});
var html_7096f9b3efa142669661a64a80d416f1 = $(`<div id="html_7096f9b3efa142669661a64a80d416f1" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_d44c9233be1b4f1f9d29380f8c134dad.setContent(html_7096f9b3efa142669661a64a80d416f1);
circle_marker_56211fdbd6c4483ab58a87ce93167e78.bindPopup(popup_d44c9233be1b4f1f9d29380f8c134dad)
;
var circle_marker_e22027b778d4436fb4bba278645f3e2d = 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_469c067b26234f9688449bd10dbf8f18);
var popup_178207016e3346b793cea4f3a39d2a45 = L.popup({"maxWidth": "100%"});
var html_5118967511ff40f280753305d8714c1e = $(`<div id="html_5118967511ff40f280753305d8714c1e" style="width: 100.0%; height: 100.0%;">15</div>`)[0];
popup_178207016e3346b793cea4f3a39d2a45.setContent(html_5118967511ff40f280753305d8714c1e);
circle_marker_e22027b778d4436fb4bba278645f3e2d.bindPopup(popup_178207016e3346b793cea4f3a39d2a45)
;
var circle_marker_81e6209c1da24b3399ce873f22e6435c = 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_469c067b26234f9688449bd10dbf8f18);
var popup_35648ef4bfd4472f913ad325daadfbdc = L.popup({"maxWidth": "100%"});
var html_6232bbf40d2240269016a655455f98bf = $(`<div id="html_6232bbf40d2240269016a655455f98bf" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_35648ef4bfd4472f913ad325daadfbdc.setContent(html_6232bbf40d2240269016a655455f98bf);
circle_marker_81e6209c1da24b3399ce873f22e6435c.bindPopup(popup_35648ef4bfd4472f913ad325daadfbdc)
;
var circle_marker_cd7b5e2955604b10a989b2bb708e33b2 = 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_469c067b26234f9688449bd10dbf8f18);
var popup_cb73c8c2e405441c93e9483b65f42d2e = L.popup({"maxWidth": "100%"});
var html_b9367f50e6434ce1b235a81fbe1c63a7 = $(`<div id="html_b9367f50e6434ce1b235a81fbe1c63a7" style="width: 100.0%; height: 100.0%;">11</div>`)[0];
popup_cb73c8c2e405441c93e9483b65f42d2e.setContent(html_b9367f50e6434ce1b235a81fbe1c63a7);
circle_marker_cd7b5e2955604b10a989b2bb708e33b2.bindPopup(popup_cb73c8c2e405441c93e9483b65f42d2e)
;
var circle_marker_039d1f8ba50f42189ab432538a1e59e0 = 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_469c067b26234f9688449bd10dbf8f18);