-
Notifications
You must be signed in to change notification settings - Fork 0
/
hybrid.html
15700 lines (7457 loc) · 796 KB
/
hybrid.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_2a949a35c59d4c0ba06fbeb4a1795606 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_2a949a35c59d4c0ba06fbeb4a1795606" ></div>
</body>
<script>
var map_2a949a35c59d4c0ba06fbeb4a1795606 = L.map(
"map_2a949a35c59d4c0ba06fbeb4a1795606",
{
center: [-26.14501530984204, 28.065907630619684],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_2c35397965fa461aa570a08c7d1e2ffc = 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_2a949a35c59d4c0ba06fbeb4a1795606);
var circle_marker_2cba759cdc24466a80fbee53ad5f9459 = L.circleMarker(
[-25.73882, 28.17858],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_86f9a1684f774bd48d216d50597c87c3 = L.popup({"maxWidth": "100%"});
var html_00a52ae8636b4db58a3a99a71d56402a = $(`<div id="html_00a52ae8636b4db58a3a99a71d56402a" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_86f9a1684f774bd48d216d50597c87c3.setContent(html_00a52ae8636b4db58a3a99a71d56402a);
circle_marker_2cba759cdc24466a80fbee53ad5f9459.bindPopup(popup_86f9a1684f774bd48d216d50597c87c3)
;
var circle_marker_1e4ef097ebab4b0e8044c28e14b16140 = L.circleMarker(
[-25.73795, 28.1766],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_01fe7a81dc624fe79fd0cd6fd47450d4 = L.popup({"maxWidth": "100%"});
var html_050caf47cf15456e9855c24f6127449b = $(`<div id="html_050caf47cf15456e9855c24f6127449b" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_01fe7a81dc624fe79fd0cd6fd47450d4.setContent(html_050caf47cf15456e9855c24f6127449b);
circle_marker_1e4ef097ebab4b0e8044c28e14b16140.bindPopup(popup_01fe7a81dc624fe79fd0cd6fd47450d4)
;
var circle_marker_486f091183c34151ab9a2b7891723fb0 = L.circleMarker(
[-26.53722, 27.832390000000004],
{"bubblingMouseEvents": true, "color": "#46f0f0", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#46f0f0", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_23a59d5206ae42f1958cd16bde3119e1 = L.popup({"maxWidth": "100%"});
var html_6754a327d5494028839a5ca2da53934d = $(`<div id="html_6754a327d5494028839a5ca2da53934d" style="width: 100.0%; height: 100.0%;">26</div>`)[0];
popup_23a59d5206ae42f1958cd16bde3119e1.setContent(html_6754a327d5494028839a5ca2da53934d);
circle_marker_486f091183c34151ab9a2b7891723fb0.bindPopup(popup_23a59d5206ae42f1958cd16bde3119e1)
;
var circle_marker_0eff9b618e8b41a9b41b84f7288dd925 = L.circleMarker(
[-26.266659999999998, 28.125140000000002],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_80874a18a8c148a28d3979122c2a835f = L.popup({"maxWidth": "100%"});
var html_5be631c99a38420194297945daef3e0d = $(`<div id="html_5be631c99a38420194297945daef3e0d" style="width: 100.0%; height: 100.0%;">41</div>`)[0];
popup_80874a18a8c148a28d3979122c2a835f.setContent(html_5be631c99a38420194297945daef3e0d);
circle_marker_0eff9b618e8b41a9b41b84f7288dd925.bindPopup(popup_80874a18a8c148a28d3979122c2a835f)
;
var circle_marker_09a9f66a2420407596dfb68041a9d524 = L.circleMarker(
[-26.10567, 28.101440000000004],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_62e445572e634fbba8014d0455489fea = L.popup({"maxWidth": "100%"});
var html_d3b4b55fdc984b5d9aff862ae13d864b = $(`<div id="html_d3b4b55fdc984b5d9aff862ae13d864b" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_62e445572e634fbba8014d0455489fea.setContent(html_d3b4b55fdc984b5d9aff862ae13d864b);
circle_marker_09a9f66a2420407596dfb68041a9d524.bindPopup(popup_62e445572e634fbba8014d0455489fea)
;
var circle_marker_bfa34ab1f9a34762bc39fb8670976cd4 = L.circleMarker(
[-26.10605, 28.10125],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_8108bcb1b47c401fb1069e627d5e1030 = L.popup({"maxWidth": "100%"});
var html_2651f4d0085a47c4afa848e5a6bd31b6 = $(`<div id="html_2651f4d0085a47c4afa848e5a6bd31b6" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_8108bcb1b47c401fb1069e627d5e1030.setContent(html_2651f4d0085a47c4afa848e5a6bd31b6);
circle_marker_bfa34ab1f9a34762bc39fb8670976cd4.bindPopup(popup_8108bcb1b47c401fb1069e627d5e1030)
;
var circle_marker_ee7a0a342d964846a20e017d3ebb9f6b = L.circleMarker(
[-26.10537, 28.10185],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_d325c1bd1cc54da993c60199b91837b7 = L.popup({"maxWidth": "100%"});
var html_14f19de97c144b0ba50844aec0aded3c = $(`<div id="html_14f19de97c144b0ba50844aec0aded3c" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_d325c1bd1cc54da993c60199b91837b7.setContent(html_14f19de97c144b0ba50844aec0aded3c);
circle_marker_ee7a0a342d964846a20e017d3ebb9f6b.bindPopup(popup_d325c1bd1cc54da993c60199b91837b7)
;
var circle_marker_0ce9355249f44a2b8178e0bc214c2261 = L.circleMarker(
[-26.104789999999998, 28.10165],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_9ba0fc0ba917496cb06cc8f1b153c9b4 = L.popup({"maxWidth": "100%"});
var html_906ffbc54b494edeb37b9d0f4058716a = $(`<div id="html_906ffbc54b494edeb37b9d0f4058716a" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_9ba0fc0ba917496cb06cc8f1b153c9b4.setContent(html_906ffbc54b494edeb37b9d0f4058716a);
circle_marker_0ce9355249f44a2b8178e0bc214c2261.bindPopup(popup_9ba0fc0ba917496cb06cc8f1b153c9b4)
;
var circle_marker_12db59ca79ce4ab19cb819a5b26ea26b = L.circleMarker(
[-26.10594, 28.101509999999998],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_6bde9679b83149078908867f8d66f42d = L.popup({"maxWidth": "100%"});
var html_84331df7a8ab4a12b3683f54e06fda10 = $(`<div id="html_84331df7a8ab4a12b3683f54e06fda10" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_6bde9679b83149078908867f8d66f42d.setContent(html_84331df7a8ab4a12b3683f54e06fda10);
circle_marker_12db59ca79ce4ab19cb819a5b26ea26b.bindPopup(popup_6bde9679b83149078908867f8d66f42d)
;
var circle_marker_ead0333b2278494ab42ac908dc978903 = L.circleMarker(
[-26.10576, 28.101999999999997],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_80ba88d231334c9a9bd5c08d0efc12cc = L.popup({"maxWidth": "100%"});
var html_80ab5af1268f44b7b50931c20b7de941 = $(`<div id="html_80ab5af1268f44b7b50931c20b7de941" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_80ba88d231334c9a9bd5c08d0efc12cc.setContent(html_80ab5af1268f44b7b50931c20b7de941);
circle_marker_ead0333b2278494ab42ac908dc978903.bindPopup(popup_80ba88d231334c9a9bd5c08d0efc12cc)
;
var circle_marker_5d608f7b8cc7497ab2438b9b0c870ab7 = L.circleMarker(
[-26.43641, 28.512059999999998],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_e0c836dd15394801aa7e486024d79029 = L.popup({"maxWidth": "100%"});
var html_5fbc4eb71a8d4fb2814d5412eb56df22 = $(`<div id="html_5fbc4eb71a8d4fb2814d5412eb56df22" style="width: 100.0%; height: 100.0%;">13</div>`)[0];
popup_e0c836dd15394801aa7e486024d79029.setContent(html_5fbc4eb71a8d4fb2814d5412eb56df22);
circle_marker_5d608f7b8cc7497ab2438b9b0c870ab7.bindPopup(popup_e0c836dd15394801aa7e486024d79029)
;
var circle_marker_9cdc81a7545a44e298aba8a8517d983c = L.circleMarker(
[-26.02136, 28.19932],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_55650b5e3cc6482dbb0a384c5e62f1bd = L.popup({"maxWidth": "100%"});
var html_e7b56ed106544b7abdd09e701617bf66 = $(`<div id="html_e7b56ed106544b7abdd09e701617bf66" style="width: 100.0%; height: 100.0%;">40</div>`)[0];
popup_55650b5e3cc6482dbb0a384c5e62f1bd.setContent(html_e7b56ed106544b7abdd09e701617bf66);
circle_marker_9cdc81a7545a44e298aba8a8517d983c.bindPopup(popup_55650b5e3cc6482dbb0a384c5e62f1bd)
;
var circle_marker_e1b2bf5ea5e64aae8eda3d996306b25a = L.circleMarker(
[-25.74244, 28.19006],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_96bc648af01542d180b719cb9d2bd8bc = L.popup({"maxWidth": "100%"});
var html_84124f529028415d8e424b99042af16e = $(`<div id="html_84124f529028415d8e424b99042af16e" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_96bc648af01542d180b719cb9d2bd8bc.setContent(html_84124f529028415d8e424b99042af16e);
circle_marker_e1b2bf5ea5e64aae8eda3d996306b25a.bindPopup(popup_96bc648af01542d180b719cb9d2bd8bc)
;
var circle_marker_a4789d25881c4585a9869e1ac38f6022 = L.circleMarker(
[-25.741970000000002, 28.190140000000003],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_34bf294207894e0b8727021b53e06a2e = L.popup({"maxWidth": "100%"});
var html_e008f24dded541d6a68340a23b3a1210 = $(`<div id="html_e008f24dded541d6a68340a23b3a1210" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_34bf294207894e0b8727021b53e06a2e.setContent(html_e008f24dded541d6a68340a23b3a1210);
circle_marker_a4789d25881c4585a9869e1ac38f6022.bindPopup(popup_34bf294207894e0b8727021b53e06a2e)
;
var circle_marker_5fecb888a6c247af857b33afa9784b7e = L.circleMarker(
[-25.74185, 28.1901],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_646b42ebea9d457fbf3425f5b35048ef = L.popup({"maxWidth": "100%"});
var html_1eb2e1707359433889178a1b103f71f3 = $(`<div id="html_1eb2e1707359433889178a1b103f71f3" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_646b42ebea9d457fbf3425f5b35048ef.setContent(html_1eb2e1707359433889178a1b103f71f3);
circle_marker_5fecb888a6c247af857b33afa9784b7e.bindPopup(popup_646b42ebea9d457fbf3425f5b35048ef)
;
var circle_marker_e090f1b89dd141079bdeef9e817e43a5 = L.circleMarker(
[-26.15972, 28.280359999999998],
{"bubblingMouseEvents": true, "color": "#f58231", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f58231", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_1c4397ce32254755b2269bca1bae9060 = L.popup({"maxWidth": "100%"});
var html_9de20d4a3a844c0984c5e9166a1bd20f = $(`<div id="html_9de20d4a3a844c0984c5e9166a1bd20f" style="width: 100.0%; height: 100.0%;">44</div>`)[0];
popup_1c4397ce32254755b2269bca1bae9060.setContent(html_9de20d4a3a844c0984c5e9166a1bd20f);
circle_marker_e090f1b89dd141079bdeef9e817e43a5.bindPopup(popup_1c4397ce32254755b2269bca1bae9060)
;
var circle_marker_c4c7fd896d1745009701037e2d8db413 = L.circleMarker(
[-26.25974, 27.94085],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_3887ff68b64442dc91b015e1c97d54d4 = L.popup({"maxWidth": "100%"});
var html_1921c81e295d4d79b5e7431fa9c0b856 = $(`<div id="html_1921c81e295d4d79b5e7431fa9c0b856" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_3887ff68b64442dc91b015e1c97d54d4.setContent(html_1921c81e295d4d79b5e7431fa9c0b856);
circle_marker_c4c7fd896d1745009701037e2d8db413.bindPopup(popup_3887ff68b64442dc91b015e1c97d54d4)
;
var circle_marker_f0057cc325e246b9b596f9b4787accc0 = L.circleMarker(
[-26.25961, 27.940379999999998],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_7a96d11173df4990a0c34a2e6b79138b = L.popup({"maxWidth": "100%"});
var html_d6fe66c1f52f4b77b0f8e081c998389b = $(`<div id="html_d6fe66c1f52f4b77b0f8e081c998389b" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_7a96d11173df4990a0c34a2e6b79138b.setContent(html_d6fe66c1f52f4b77b0f8e081c998389b);
circle_marker_f0057cc325e246b9b596f9b4787accc0.bindPopup(popup_7a96d11173df4990a0c34a2e6b79138b)
;
var circle_marker_35c6cbb3c62a4a84a83092a622f577e5 = L.circleMarker(
[-26.259729999999998, 27.94234],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_34bc37c3166841129623fc0f86cb1c04 = L.popup({"maxWidth": "100%"});
var html_80a68d256646482195ed2d068884d0bf = $(`<div id="html_80a68d256646482195ed2d068884d0bf" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_34bc37c3166841129623fc0f86cb1c04.setContent(html_80a68d256646482195ed2d068884d0bf);
circle_marker_35c6cbb3c62a4a84a83092a622f577e5.bindPopup(popup_34bc37c3166841129623fc0f86cb1c04)
;
var circle_marker_2c3c9d5b6066497498071b147b55c842 = L.circleMarker(
[-26.25923, 27.942009999999996],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_2b8fd631367049e88bdc6db26a4111df = L.popup({"maxWidth": "100%"});
var html_57572c9f04ec41daa3433711891b4daa = $(`<div id="html_57572c9f04ec41daa3433711891b4daa" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_2b8fd631367049e88bdc6db26a4111df.setContent(html_57572c9f04ec41daa3433711891b4daa);
circle_marker_2c3c9d5b6066497498071b147b55c842.bindPopup(popup_2b8fd631367049e88bdc6db26a4111df)
;
var circle_marker_6f2f5286a2cb43e481356e2b2654d4c2 = L.circleMarker(
[-26.25931, 27.94325],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_c0cbb1a9368d414e9e243f76dbd48914 = L.popup({"maxWidth": "100%"});
var html_0a44fb27e6a742889afe2dec1e1b39c7 = $(`<div id="html_0a44fb27e6a742889afe2dec1e1b39c7" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_c0cbb1a9368d414e9e243f76dbd48914.setContent(html_0a44fb27e6a742889afe2dec1e1b39c7);
circle_marker_6f2f5286a2cb43e481356e2b2654d4c2.bindPopup(popup_c0cbb1a9368d414e9e243f76dbd48914)
;
var circle_marker_b8fd89b127464a708e6bae34b301d1d9 = L.circleMarker(
[-26.2599, 27.942079999999997],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_cb6c67cdd7fe46b69422986090cb057d = L.popup({"maxWidth": "100%"});
var html_80c2d79d6aeb48a19d5c01a193e6d744 = $(`<div id="html_80c2d79d6aeb48a19d5c01a193e6d744" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_cb6c67cdd7fe46b69422986090cb057d.setContent(html_80c2d79d6aeb48a19d5c01a193e6d744);
circle_marker_b8fd89b127464a708e6bae34b301d1d9.bindPopup(popup_cb6c67cdd7fe46b69422986090cb057d)
;
var circle_marker_e7165dd345bc4db0aae637bee8e5dc31 = L.circleMarker(
[-26.259059999999998, 27.937109999999997],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_22c0022d796e440fa1ce6cd6fad2d2b8 = L.popup({"maxWidth": "100%"});
var html_bb0c7ec581bf46878808d0b1a29b2a19 = $(`<div id="html_bb0c7ec581bf46878808d0b1a29b2a19" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_22c0022d796e440fa1ce6cd6fad2d2b8.setContent(html_bb0c7ec581bf46878808d0b1a29b2a19);
circle_marker_e7165dd345bc4db0aae637bee8e5dc31.bindPopup(popup_22c0022d796e440fa1ce6cd6fad2d2b8)
;
var circle_marker_dc426213d5b246cdbb2df15fff914ab7 = L.circleMarker(
[-26.259, 27.94081],
{"bubblingMouseEvents": true, "color": "#3cb44b", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#3cb44b", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_845c1cbc401147058b624003f9d71945 = L.popup({"maxWidth": "100%"});
var html_fda88501416e4d8ca55155b05411c20f = $(`<div id="html_fda88501416e4d8ca55155b05411c20f" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_845c1cbc401147058b624003f9d71945.setContent(html_fda88501416e4d8ca55155b05411c20f);
circle_marker_dc426213d5b246cdbb2df15fff914ab7.bindPopup(popup_845c1cbc401147058b624003f9d71945)
;
var circle_marker_3613e71a497442bdb3ee7f00a261e827 = 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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_d70f78a882de47bbbe80cd2d8061eeea = L.popup({"maxWidth": "100%"});
var html_025f06fd98154f3dbba3291159068b25 = $(`<div id="html_025f06fd98154f3dbba3291159068b25" style="width: 100.0%; height: 100.0%;">57</div>`)[0];
popup_d70f78a882de47bbbe80cd2d8061eeea.setContent(html_025f06fd98154f3dbba3291159068b25);
circle_marker_3613e71a497442bdb3ee7f00a261e827.bindPopup(popup_d70f78a882de47bbbe80cd2d8061eeea)
;
var circle_marker_36d709beec254b60b6763462f13976d7 = L.circleMarker(
[-25.73836, 28.18045],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_300fc27dd9ed45728cef57982a959810 = L.popup({"maxWidth": "100%"});
var html_c5b43e3e2d1c47a8a67ac2b86987f457 = $(`<div id="html_c5b43e3e2d1c47a8a67ac2b86987f457" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_300fc27dd9ed45728cef57982a959810.setContent(html_c5b43e3e2d1c47a8a67ac2b86987f457);
circle_marker_36d709beec254b60b6763462f13976d7.bindPopup(popup_300fc27dd9ed45728cef57982a959810)
;
var circle_marker_901bebae340746e883760567977d0e54 = L.circleMarker(
[-26.10024, 28.048840000000002],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_bab9105d1b0b4687ac4c2313fd47551e = L.popup({"maxWidth": "100%"});
var html_79608ac1c5d846dd804219349bbc3f55 = $(`<div id="html_79608ac1c5d846dd804219349bbc3f55" style="width: 100.0%; height: 100.0%;">54</div>`)[0];
popup_bab9105d1b0b4687ac4c2313fd47551e.setContent(html_79608ac1c5d846dd804219349bbc3f55);
circle_marker_901bebae340746e883760567977d0e54.bindPopup(popup_bab9105d1b0b4687ac4c2313fd47551e)
;
var circle_marker_1d7609e3b6f64c968b40c9bd20d80106 = L.circleMarker(
[-26.10097, 28.04962],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_9cd501222a294e0e94822c147c74c833 = L.popup({"maxWidth": "100%"});
var html_a70cf55e716048bc9ff1623620cbf98e = $(`<div id="html_a70cf55e716048bc9ff1623620cbf98e" style="width: 100.0%; height: 100.0%;">54</div>`)[0];
popup_9cd501222a294e0e94822c147c74c833.setContent(html_a70cf55e716048bc9ff1623620cbf98e);
circle_marker_1d7609e3b6f64c968b40c9bd20d80106.bindPopup(popup_9cd501222a294e0e94822c147c74c833)
;
var circle_marker_ab392923f8f042bda32c8198a40a14d3 = L.circleMarker(
[-26.19837, 28.313240000000004],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_f44aa34e105e4509aa95cca2d2d744f5 = L.popup({"maxWidth": "100%"});
var html_3e71a0dde39b47a3ad5297e5232f4160 = $(`<div id="html_3e71a0dde39b47a3ad5297e5232f4160" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_f44aa34e105e4509aa95cca2d2d744f5.setContent(html_3e71a0dde39b47a3ad5297e5232f4160);
circle_marker_ab392923f8f042bda32c8198a40a14d3.bindPopup(popup_f44aa34e105e4509aa95cca2d2d744f5)
;
var circle_marker_fc979f20bd354a26b28918ad127778a4 = L.circleMarker(
[-26.19925, 28.3117],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_db72319e07bf459ca8afdbb38fbcda4c = L.popup({"maxWidth": "100%"});
var html_59829fa02ef741279b5f7e3cbae0c31e = $(`<div id="html_59829fa02ef741279b5f7e3cbae0c31e" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_db72319e07bf459ca8afdbb38fbcda4c.setContent(html_59829fa02ef741279b5f7e3cbae0c31e);
circle_marker_fc979f20bd354a26b28918ad127778a4.bindPopup(popup_db72319e07bf459ca8afdbb38fbcda4c)
;
var circle_marker_0b2a861d9e1440d3916d09f586f15511 = L.circleMarker(
[-26.1994, 28.311459999999997],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_467e2eab1df542139d6f6f9599c1db95 = L.popup({"maxWidth": "100%"});
var html_570d2cd9114046adac503074969b5b5f = $(`<div id="html_570d2cd9114046adac503074969b5b5f" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_467e2eab1df542139d6f6f9599c1db95.setContent(html_570d2cd9114046adac503074969b5b5f);
circle_marker_0b2a861d9e1440d3916d09f586f15511.bindPopup(popup_467e2eab1df542139d6f6f9599c1db95)
;
var circle_marker_9e3a6419bb644fbcbadfa0344f8a94c3 = L.circleMarker(
[-26.19864, 28.312720000000002],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_8cae7a3cc4eb4772b12d5ae0609c5161 = L.popup({"maxWidth": "100%"});
var html_c8d5b66a21a549f2885df0f79ca29740 = $(`<div id="html_c8d5b66a21a549f2885df0f79ca29740" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_8cae7a3cc4eb4772b12d5ae0609c5161.setContent(html_c8d5b66a21a549f2885df0f79ca29740);
circle_marker_9e3a6419bb644fbcbadfa0344f8a94c3.bindPopup(popup_8cae7a3cc4eb4772b12d5ae0609c5161)
;
var circle_marker_81d9987e1b7e45be8b2592477749d446 = L.circleMarker(
[-26.19764, 28.31066],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_1379c75abe6b41f69a5f8fdb8c737797 = L.popup({"maxWidth": "100%"});
var html_4b86b127aa4f4302bf0f2f4f30f04c63 = $(`<div id="html_4b86b127aa4f4302bf0f2f4f30f04c63" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_1379c75abe6b41f69a5f8fdb8c737797.setContent(html_4b86b127aa4f4302bf0f2f4f30f04c63);
circle_marker_81d9987e1b7e45be8b2592477749d446.bindPopup(popup_1379c75abe6b41f69a5f8fdb8c737797)
;
var circle_marker_30b3580cf2a243dbab2d759bf7947754 = L.circleMarker(
[-26.199820000000003, 28.31069],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_42fe41cfb16b42fbaca66571c8e8919b = L.popup({"maxWidth": "100%"});
var html_f0786c7909f74f3cb473ef9ce2e6be00 = $(`<div id="html_f0786c7909f74f3cb473ef9ce2e6be00" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_42fe41cfb16b42fbaca66571c8e8919b.setContent(html_f0786c7909f74f3cb473ef9ce2e6be00);
circle_marker_30b3580cf2a243dbab2d759bf7947754.bindPopup(popup_42fe41cfb16b42fbaca66571c8e8919b)
;
var circle_marker_e33f8194830342abb4467dd7398171d8 = L.circleMarker(
[-26.19967, 28.31095],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_41ec1041cd4a4ae780543186cb75304e = L.popup({"maxWidth": "100%"});
var html_c3c22c4921db4754895d906f1d634617 = $(`<div id="html_c3c22c4921db4754895d906f1d634617" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_41ec1041cd4a4ae780543186cb75304e.setContent(html_c3c22c4921db4754895d906f1d634617);
circle_marker_e33f8194830342abb4467dd7398171d8.bindPopup(popup_41ec1041cd4a4ae780543186cb75304e)
;
var circle_marker_4797e819bb2f456d86215fb14b877b97 = L.circleMarker(
[-26.19996, 28.31046],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_aa7c941a23fa40b0b861a110c29aaee6 = L.popup({"maxWidth": "100%"});
var html_5c2e54e1f6a745e680868710f585abac = $(`<div id="html_5c2e54e1f6a745e680868710f585abac" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_aa7c941a23fa40b0b861a110c29aaee6.setContent(html_5c2e54e1f6a745e680868710f585abac);
circle_marker_4797e819bb2f456d86215fb14b877b97.bindPopup(popup_aa7c941a23fa40b0b861a110c29aaee6)
;
var circle_marker_c3a695a8908a4b5fac0dbe4f0e368cfe = L.circleMarker(
[-26.2004, 28.309790000000003],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_79be9f4115474680a751eb500bf22937 = L.popup({"maxWidth": "100%"});
var html_05feec8563ab49e186f56d167e4713d3 = $(`<div id="html_05feec8563ab49e186f56d167e4713d3" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_79be9f4115474680a751eb500bf22937.setContent(html_05feec8563ab49e186f56d167e4713d3);
circle_marker_c3a695a8908a4b5fac0dbe4f0e368cfe.bindPopup(popup_79be9f4115474680a751eb500bf22937)
;
var circle_marker_69662bd24e9245e4836d14159b0a2577 = L.circleMarker(
[-26.067520000000002, 28.234740000000002],
{"bubblingMouseEvents": true, "color": "#fabebe", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fabebe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_2cc1754a643947d5a00a3ddafc10fa9e = L.popup({"maxWidth": "100%"});
var html_3f0474752f56405687ab579b80facdef = $(`<div id="html_3f0474752f56405687ab579b80facdef" style="width: 100.0%; height: 100.0%;">29</div>`)[0];
popup_2cc1754a643947d5a00a3ddafc10fa9e.setContent(html_3f0474752f56405687ab579b80facdef);
circle_marker_69662bd24e9245e4836d14159b0a2577.bindPopup(popup_2cc1754a643947d5a00a3ddafc10fa9e)
;
var circle_marker_8477e76732b04adbbf643e674d64d513 = L.circleMarker(
[-26.067529999999998, 28.23483],
{"bubblingMouseEvents": true, "color": "#fabebe", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#fabebe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_0023a5445a594311848786b1c1061d91 = L.popup({"maxWidth": "100%"});
var html_e7e23e8b82ca484dbb4f4227255d9351 = $(`<div id="html_e7e23e8b82ca484dbb4f4227255d9351" style="width: 100.0%; height: 100.0%;">29</div>`)[0];
popup_0023a5445a594311848786b1c1061d91.setContent(html_e7e23e8b82ca484dbb4f4227255d9351);
circle_marker_8477e76732b04adbbf643e674d64d513.bindPopup(popup_0023a5445a594311848786b1c1061d91)
;
var circle_marker_5503e240747b41e6b44236e43b018a69 = L.circleMarker(
[-25.74036, 28.19112],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_53839227ba07408a9780ab283eac2013 = L.popup({"maxWidth": "100%"});
var html_a09c78ae00c04d5a9bad80f275a61027 = $(`<div id="html_a09c78ae00c04d5a9bad80f275a61027" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_53839227ba07408a9780ab283eac2013.setContent(html_a09c78ae00c04d5a9bad80f275a61027);
circle_marker_5503e240747b41e6b44236e43b018a69.bindPopup(popup_53839227ba07408a9780ab283eac2013)
;
var circle_marker_972b275144a34ac68f43e3c2031a2fba = L.circleMarker(
[-25.74055, 28.18913],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_ebf262b4d92c4ce8aa112ea7f37bf22e = L.popup({"maxWidth": "100%"});
var html_f977ef5c36874d4fb0aaaaecb95f8905 = $(`<div id="html_f977ef5c36874d4fb0aaaaecb95f8905" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_ebf262b4d92c4ce8aa112ea7f37bf22e.setContent(html_f977ef5c36874d4fb0aaaaecb95f8905);
circle_marker_972b275144a34ac68f43e3c2031a2fba.bindPopup(popup_ebf262b4d92c4ce8aa112ea7f37bf22e)
;
var circle_marker_51ac81632f1d4d588bfde23b107b85da = L.circleMarker(
[-26.38014, 28.388040000000004],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_8738826c056949aa882bd50f9b73eff1 = L.popup({"maxWidth": "100%"});
var html_880ff5e3566b4bcc9e4b15199e930085 = $(`<div id="html_880ff5e3566b4bcc9e4b15199e930085" style="width: 100.0%; height: 100.0%;">13</div>`)[0];
popup_8738826c056949aa882bd50f9b73eff1.setContent(html_880ff5e3566b4bcc9e4b15199e930085);
circle_marker_51ac81632f1d4d588bfde23b107b85da.bindPopup(popup_8738826c056949aa882bd50f9b73eff1)
;
var circle_marker_e51a51ee42dd40438e68e4f38367510e = L.circleMarker(
[-26.5628, 27.82767],
{"bubblingMouseEvents": true, "color": "#46f0f0", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#46f0f0", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_3517e9b5c0d746d3a7ca02354977f330 = L.popup({"maxWidth": "100%"});
var html_d4a8194e3c0843c2b56a8fc0ffa1c2da = $(`<div id="html_d4a8194e3c0843c2b56a8fc0ffa1c2da" style="width: 100.0%; height: 100.0%;">26</div>`)[0];
popup_3517e9b5c0d746d3a7ca02354977f330.setContent(html_d4a8194e3c0843c2b56a8fc0ffa1c2da);
circle_marker_e51a51ee42dd40438e68e4f38367510e.bindPopup(popup_3517e9b5c0d746d3a7ca02354977f330)
;
var circle_marker_2b2de09a271c4748bb7faad770a8e136 = L.circleMarker(
[-26.224009999999996, 28.252440000000004],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_16df417f089f43a487e33570141b33af = L.popup({"maxWidth": "100%"});
var html_fdfe23128f9c4f33ad69d3a62427e8d4 = $(`<div id="html_fdfe23128f9c4f33ad69d3a62427e8d4" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_16df417f089f43a487e33570141b33af.setContent(html_fdfe23128f9c4f33ad69d3a62427e8d4);
circle_marker_2b2de09a271c4748bb7faad770a8e136.bindPopup(popup_16df417f089f43a487e33570141b33af)
;
var circle_marker_ef49e6304d114042a78e59f7096486e4 = L.circleMarker(
[-26.2239, 28.252090000000003],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_7b58014d4af045ccafabbf97e5160b93 = L.popup({"maxWidth": "100%"});
var html_463157870f714ae69bbb6e76f46c8971 = $(`<div id="html_463157870f714ae69bbb6e76f46c8971" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_7b58014d4af045ccafabbf97e5160b93.setContent(html_463157870f714ae69bbb6e76f46c8971);
circle_marker_ef49e6304d114042a78e59f7096486e4.bindPopup(popup_7b58014d4af045ccafabbf97e5160b93)
;
var circle_marker_e5a067f2c8084437867d94e84e200efb = L.circleMarker(
[-26.22389, 28.251820000000002],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_b6c369ae8ed14b5fb8890e2823ef768d = L.popup({"maxWidth": "100%"});
var html_6e95a1e66a004e38bba6b0bcf89e9b37 = $(`<div id="html_6e95a1e66a004e38bba6b0bcf89e9b37" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_b6c369ae8ed14b5fb8890e2823ef768d.setContent(html_6e95a1e66a004e38bba6b0bcf89e9b37);
circle_marker_e5a067f2c8084437867d94e84e200efb.bindPopup(popup_b6c369ae8ed14b5fb8890e2823ef768d)
;
var circle_marker_9968abf5bedf43b188b93f1aa0a1d89c = L.circleMarker(
[-25.7388, 28.19616],
{"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_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_93010f2191c545b5ba69593e3e37b76e = L.popup({"maxWidth": "100%"});
var html_c51d76976ad84916b60c3a11241ed6c7 = $(`<div id="html_c51d76976ad84916b60c3a11241ed6c7" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_93010f2191c545b5ba69593e3e37b76e.setContent(html_c51d76976ad84916b60c3a11241ed6c7);
circle_marker_9968abf5bedf43b188b93f1aa0a1d89c.bindPopup(popup_93010f2191c545b5ba69593e3e37b76e)
;
var circle_marker_48cc45c23fc54f229d3909308f175d41 = L.circleMarker(
[-26.691329999999997, 27.79717],
{"bubblingMouseEvents": true, "color": "#bcf60c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bcf60c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_381e3ca7978a4547836f11e730a67403 = L.popup({"maxWidth": "100%"});
var html_909c0a3d36fb42bda82228fcfb87fcc1 = $(`<div id="html_909c0a3d36fb42bda82228fcfb87fcc1" style="width: 100.0%; height: 100.0%;">8</div>`)[0];
popup_381e3ca7978a4547836f11e730a67403.setContent(html_909c0a3d36fb42bda82228fcfb87fcc1);
circle_marker_48cc45c23fc54f229d3909308f175d41.bindPopup(popup_381e3ca7978a4547836f11e730a67403)
;
var circle_marker_da9c724202d3413d9fceae1336898f6d = L.circleMarker(
[-26.691309999999998, 27.79727],
{"bubblingMouseEvents": true, "color": "#bcf60c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bcf60c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);
var popup_60bb897c13e141e6955ab3a2b88883b1 = L.popup({"maxWidth": "100%"});
var html_5d0e06ebe4b04d6f885336aea30e1935 = $(`<div id="html_5d0e06ebe4b04d6f885336aea30e1935" style="width: 100.0%; height: 100.0%;">8</div>`)[0];
popup_60bb897c13e141e6955ab3a2b88883b1.setContent(html_5d0e06ebe4b04d6f885336aea30e1935);
circle_marker_da9c724202d3413d9fceae1336898f6d.bindPopup(popup_60bb897c13e141e6955ab3a2b88883b1)
;
var circle_marker_08a884a534a34366a3ddef94afc53403 = L.circleMarker(
[-26.69285, 27.797290000000004],
{"bubblingMouseEvents": true, "color": "#bcf60c", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#bcf60c", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_2a949a35c59d4c0ba06fbeb4a1795606);