-
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_f74be0b65a1e4c6dbe2a0c559e01f3ee {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_f74be0b65a1e4c6dbe2a0c559e01f3ee" ></div>
</body>
<script>
var map_f74be0b65a1e4c6dbe2a0c559e01f3ee = L.map(
"map_f74be0b65a1e4c6dbe2a0c559e01f3ee",
{
center: [-26.14501530984204, 28.065907630619684],
crs: L.CRS.EPSG3857,
zoom: 9,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_cc971f6b15b6403a80bd21b51978cf8e = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var circle_marker_ee68d4f25f3647e9b5f367086c0e291b = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_54466b238e5c4b6fb4200d95347bcc41 = L.popup({"maxWidth": "100%"});
var html_1380f89a60704c9e9626a38e2b4d06b8 = $(`<div id="html_1380f89a60704c9e9626a38e2b4d06b8" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_54466b238e5c4b6fb4200d95347bcc41.setContent(html_1380f89a60704c9e9626a38e2b4d06b8);
circle_marker_ee68d4f25f3647e9b5f367086c0e291b.bindPopup(popup_54466b238e5c4b6fb4200d95347bcc41)
;
var circle_marker_63a17584bf0b4e1fa7fd24d3b77707e5 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_94c93d882a334b22bf04bc1ac851d546 = L.popup({"maxWidth": "100%"});
var html_74fc543ce71447d0b6de62573aab1f2e = $(`<div id="html_74fc543ce71447d0b6de62573aab1f2e" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_94c93d882a334b22bf04bc1ac851d546.setContent(html_74fc543ce71447d0b6de62573aab1f2e);
circle_marker_63a17584bf0b4e1fa7fd24d3b77707e5.bindPopup(popup_94c93d882a334b22bf04bc1ac851d546)
;
var circle_marker_7d099f5dd75b4546ab17868d1de274aa = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_bf44bb1b33724a78b2d5638b15b48f85 = L.popup({"maxWidth": "100%"});
var html_3ecf1272f299499dadd7177e9d63d636 = $(`<div id="html_3ecf1272f299499dadd7177e9d63d636" style="width: 100.0%; height: 100.0%;">26</div>`)[0];
popup_bf44bb1b33724a78b2d5638b15b48f85.setContent(html_3ecf1272f299499dadd7177e9d63d636);
circle_marker_7d099f5dd75b4546ab17868d1de274aa.bindPopup(popup_bf44bb1b33724a78b2d5638b15b48f85)
;
var circle_marker_2ad857499d2b49f8803467197c6f2225 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_26571ed3542d4c39a640ff2ad4fa15eb = L.popup({"maxWidth": "100%"});
var html_c8921265f1e64a2287bd8b73d20ab2d6 = $(`<div id="html_c8921265f1e64a2287bd8b73d20ab2d6" style="width: 100.0%; height: 100.0%;">41</div>`)[0];
popup_26571ed3542d4c39a640ff2ad4fa15eb.setContent(html_c8921265f1e64a2287bd8b73d20ab2d6);
circle_marker_2ad857499d2b49f8803467197c6f2225.bindPopup(popup_26571ed3542d4c39a640ff2ad4fa15eb)
;
var circle_marker_dc0d8f183715469a9b255c93c790ebf8 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_a4d321a2aba044328bd70d6e86d5d5b4 = L.popup({"maxWidth": "100%"});
var html_7df0b4bb91ef479598b5c6d8f6d01f6c = $(`<div id="html_7df0b4bb91ef479598b5c6d8f6d01f6c" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_a4d321a2aba044328bd70d6e86d5d5b4.setContent(html_7df0b4bb91ef479598b5c6d8f6d01f6c);
circle_marker_dc0d8f183715469a9b255c93c790ebf8.bindPopup(popup_a4d321a2aba044328bd70d6e86d5d5b4)
;
var circle_marker_58da7f60895f413b95a8e24423110d9c = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_45ff233940be43c5b4ec6c4f32a30bf7 = L.popup({"maxWidth": "100%"});
var html_192ddbbf9c5940e8bbf3e3c11f1708b8 = $(`<div id="html_192ddbbf9c5940e8bbf3e3c11f1708b8" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_45ff233940be43c5b4ec6c4f32a30bf7.setContent(html_192ddbbf9c5940e8bbf3e3c11f1708b8);
circle_marker_58da7f60895f413b95a8e24423110d9c.bindPopup(popup_45ff233940be43c5b4ec6c4f32a30bf7)
;
var circle_marker_60062645d63747e5bfa335c88e53d42e = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_d6a3d92a3dae467db44c538bb00660db = L.popup({"maxWidth": "100%"});
var html_fe065014de064c64ae0d479214a370af = $(`<div id="html_fe065014de064c64ae0d479214a370af" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_d6a3d92a3dae467db44c538bb00660db.setContent(html_fe065014de064c64ae0d479214a370af);
circle_marker_60062645d63747e5bfa335c88e53d42e.bindPopup(popup_d6a3d92a3dae467db44c538bb00660db)
;
var circle_marker_f9a95ce636654a5c9f86a3be7bc76b2f = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_710918ff5e29489c9e3075d6efde94f1 = L.popup({"maxWidth": "100%"});
var html_b4293e2cc4fb454bb1ab6e3bc1ae3c61 = $(`<div id="html_b4293e2cc4fb454bb1ab6e3bc1ae3c61" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_710918ff5e29489c9e3075d6efde94f1.setContent(html_b4293e2cc4fb454bb1ab6e3bc1ae3c61);
circle_marker_f9a95ce636654a5c9f86a3be7bc76b2f.bindPopup(popup_710918ff5e29489c9e3075d6efde94f1)
;
var circle_marker_4603fb36143047e0a47c4e34734bf940 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_bd816fa052484bb59df0e3b8c85b39ff = L.popup({"maxWidth": "100%"});
var html_99b3289a2abc40639d85167f56c33087 = $(`<div id="html_99b3289a2abc40639d85167f56c33087" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_bd816fa052484bb59df0e3b8c85b39ff.setContent(html_99b3289a2abc40639d85167f56c33087);
circle_marker_4603fb36143047e0a47c4e34734bf940.bindPopup(popup_bd816fa052484bb59df0e3b8c85b39ff)
;
var circle_marker_e6fde3de9f2a4cffa500012dea705312 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_a80898c2866c41ec852cb70d93d0e15a = L.popup({"maxWidth": "100%"});
var html_d7a0b79c24fd4c2b84c6df422e14259f = $(`<div id="html_d7a0b79c24fd4c2b84c6df422e14259f" style="width: 100.0%; height: 100.0%;">55</div>`)[0];
popup_a80898c2866c41ec852cb70d93d0e15a.setContent(html_d7a0b79c24fd4c2b84c6df422e14259f);
circle_marker_e6fde3de9f2a4cffa500012dea705312.bindPopup(popup_a80898c2866c41ec852cb70d93d0e15a)
;
var circle_marker_6830af469c25471c8063a08334fafa44 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_e041e5bd50414d4fa2c849d1d4177d7f = L.popup({"maxWidth": "100%"});
var html_614538b32257484db5289399a4c5c6cd = $(`<div id="html_614538b32257484db5289399a4c5c6cd" style="width: 100.0%; height: 100.0%;">13</div>`)[0];
popup_e041e5bd50414d4fa2c849d1d4177d7f.setContent(html_614538b32257484db5289399a4c5c6cd);
circle_marker_6830af469c25471c8063a08334fafa44.bindPopup(popup_e041e5bd50414d4fa2c849d1d4177d7f)
;
var circle_marker_1af7d633c8754e54ad765b0e1a4a3b4c = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_570ebd0fb8794732a685889646ebca25 = L.popup({"maxWidth": "100%"});
var html_81e391c03fda4f6f8d30b5045642c668 = $(`<div id="html_81e391c03fda4f6f8d30b5045642c668" style="width: 100.0%; height: 100.0%;">40</div>`)[0];
popup_570ebd0fb8794732a685889646ebca25.setContent(html_81e391c03fda4f6f8d30b5045642c668);
circle_marker_1af7d633c8754e54ad765b0e1a4a3b4c.bindPopup(popup_570ebd0fb8794732a685889646ebca25)
;
var circle_marker_1a6ffb0f6dd24855998b5cbce16749e2 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_1c2a537161354c8da92040d41fa28362 = L.popup({"maxWidth": "100%"});
var html_1bb7daed1ee54aa9a82e22ea1ba2f430 = $(`<div id="html_1bb7daed1ee54aa9a82e22ea1ba2f430" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_1c2a537161354c8da92040d41fa28362.setContent(html_1bb7daed1ee54aa9a82e22ea1ba2f430);
circle_marker_1a6ffb0f6dd24855998b5cbce16749e2.bindPopup(popup_1c2a537161354c8da92040d41fa28362)
;
var circle_marker_0eeb43f17c3347308631518b5ed68160 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_a708b91d5ee14f3984ada4b95f6c1905 = L.popup({"maxWidth": "100%"});
var html_38eab39ef34b467fa0012e92b470eb4c = $(`<div id="html_38eab39ef34b467fa0012e92b470eb4c" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_a708b91d5ee14f3984ada4b95f6c1905.setContent(html_38eab39ef34b467fa0012e92b470eb4c);
circle_marker_0eeb43f17c3347308631518b5ed68160.bindPopup(popup_a708b91d5ee14f3984ada4b95f6c1905)
;
var circle_marker_30f93df8974542779460a8d9428044e5 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_3542e6a619a4418e9753d53cd329d9ea = L.popup({"maxWidth": "100%"});
var html_2ffb941739604c2eb800306c2f4fca33 = $(`<div id="html_2ffb941739604c2eb800306c2f4fca33" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_3542e6a619a4418e9753d53cd329d9ea.setContent(html_2ffb941739604c2eb800306c2f4fca33);
circle_marker_30f93df8974542779460a8d9428044e5.bindPopup(popup_3542e6a619a4418e9753d53cd329d9ea)
;
var circle_marker_8d1a00a0cc4347c0b8c62fc9bf27d325 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_0eac88cceafe4993b9b5286fc54f2451 = L.popup({"maxWidth": "100%"});
var html_c8beea79adc7427fb5deee27a6974bfb = $(`<div id="html_c8beea79adc7427fb5deee27a6974bfb" style="width: 100.0%; height: 100.0%;">44</div>`)[0];
popup_0eac88cceafe4993b9b5286fc54f2451.setContent(html_c8beea79adc7427fb5deee27a6974bfb);
circle_marker_8d1a00a0cc4347c0b8c62fc9bf27d325.bindPopup(popup_0eac88cceafe4993b9b5286fc54f2451)
;
var circle_marker_9ac377c8e59148a59fdeb5f8cc7bb9f3 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_31918ae932ce48f986f4126e2238aeb5 = L.popup({"maxWidth": "100%"});
var html_9afe4f223d064dcdaf1ecf71d57054c1 = $(`<div id="html_9afe4f223d064dcdaf1ecf71d57054c1" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_31918ae932ce48f986f4126e2238aeb5.setContent(html_9afe4f223d064dcdaf1ecf71d57054c1);
circle_marker_9ac377c8e59148a59fdeb5f8cc7bb9f3.bindPopup(popup_31918ae932ce48f986f4126e2238aeb5)
;
var circle_marker_087d28b2a1b44294b30ff28096e16a28 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_d79077b9c2cd4a2c914c468b46d79b51 = L.popup({"maxWidth": "100%"});
var html_9025df5418514e99a3a3f32e561ecd40 = $(`<div id="html_9025df5418514e99a3a3f32e561ecd40" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_d79077b9c2cd4a2c914c468b46d79b51.setContent(html_9025df5418514e99a3a3f32e561ecd40);
circle_marker_087d28b2a1b44294b30ff28096e16a28.bindPopup(popup_d79077b9c2cd4a2c914c468b46d79b51)
;
var circle_marker_f74c989fd7cf44daa93361e7788f777c = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_83dc57b38aa14be6ad17c10f3601c3ae = L.popup({"maxWidth": "100%"});
var html_5e8aac0b5aef40b8af720f9b360ae4d7 = $(`<div id="html_5e8aac0b5aef40b8af720f9b360ae4d7" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_83dc57b38aa14be6ad17c10f3601c3ae.setContent(html_5e8aac0b5aef40b8af720f9b360ae4d7);
circle_marker_f74c989fd7cf44daa93361e7788f777c.bindPopup(popup_83dc57b38aa14be6ad17c10f3601c3ae)
;
var circle_marker_bf4c8340118d4614bc7c0f914210c737 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_fd1a55ef98224dafa2e4e59f4b619ab2 = L.popup({"maxWidth": "100%"});
var html_b260b1c8e4b84158a6494f4ac8f41b5e = $(`<div id="html_b260b1c8e4b84158a6494f4ac8f41b5e" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_fd1a55ef98224dafa2e4e59f4b619ab2.setContent(html_b260b1c8e4b84158a6494f4ac8f41b5e);
circle_marker_bf4c8340118d4614bc7c0f914210c737.bindPopup(popup_fd1a55ef98224dafa2e4e59f4b619ab2)
;
var circle_marker_0a7d7d56bbb540c788ab2cd14874e47f = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_e1162fd688ce4d4da19301360ba3dd6b = L.popup({"maxWidth": "100%"});
var html_d1f0641a5c46466d81bd508a26f32536 = $(`<div id="html_d1f0641a5c46466d81bd508a26f32536" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_e1162fd688ce4d4da19301360ba3dd6b.setContent(html_d1f0641a5c46466d81bd508a26f32536);
circle_marker_0a7d7d56bbb540c788ab2cd14874e47f.bindPopup(popup_e1162fd688ce4d4da19301360ba3dd6b)
;
var circle_marker_a76a9b47dbb54fe58dc0059c5af4f85b = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_e5bba8e7a372463997207bca8cdbf122 = L.popup({"maxWidth": "100%"});
var html_945552324d1d41848d6611dcdb796af2 = $(`<div id="html_945552324d1d41848d6611dcdb796af2" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_e5bba8e7a372463997207bca8cdbf122.setContent(html_945552324d1d41848d6611dcdb796af2);
circle_marker_a76a9b47dbb54fe58dc0059c5af4f85b.bindPopup(popup_e5bba8e7a372463997207bca8cdbf122)
;
var circle_marker_7464a529bb444f86b1798e924ae0fb3f = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_a89b7551b5384986b1e08a91d5ac2c92 = L.popup({"maxWidth": "100%"});
var html_fa6368c3d99a46fcbb5b1a58c1b4f324 = $(`<div id="html_fa6368c3d99a46fcbb5b1a58c1b4f324" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_a89b7551b5384986b1e08a91d5ac2c92.setContent(html_fa6368c3d99a46fcbb5b1a58c1b4f324);
circle_marker_7464a529bb444f86b1798e924ae0fb3f.bindPopup(popup_a89b7551b5384986b1e08a91d5ac2c92)
;
var circle_marker_fcc444c3063c4ed8a571b2fe078b8e1d = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_ad85c19d934742eba1a1c7267c9d240d = L.popup({"maxWidth": "100%"});
var html_b0458541b6ee40daae21ab5c083b45c2 = $(`<div id="html_b0458541b6ee40daae21ab5c083b45c2" style="width: 100.0%; height: 100.0%;">61</div>`)[0];
popup_ad85c19d934742eba1a1c7267c9d240d.setContent(html_b0458541b6ee40daae21ab5c083b45c2);
circle_marker_fcc444c3063c4ed8a571b2fe078b8e1d.bindPopup(popup_ad85c19d934742eba1a1c7267c9d240d)
;
var circle_marker_aac1e06596bf48dca13a80d80a937678 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_d476f2a17e864d39b4b060c6ae18c249 = L.popup({"maxWidth": "100%"});
var html_8729f39492454fa1a8e8e8efc18ed3a7 = $(`<div id="html_8729f39492454fa1a8e8e8efc18ed3a7" style="width: 100.0%; height: 100.0%;">57</div>`)[0];
popup_d476f2a17e864d39b4b060c6ae18c249.setContent(html_8729f39492454fa1a8e8e8efc18ed3a7);
circle_marker_aac1e06596bf48dca13a80d80a937678.bindPopup(popup_d476f2a17e864d39b4b060c6ae18c249)
;
var circle_marker_31e2c917e9a84718b5dbc4b9547dce31 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_8bd06b3ce6ee4d089fe82b3d898ed652 = L.popup({"maxWidth": "100%"});
var html_ccb415a927844cb6b6648900657a6696 = $(`<div id="html_ccb415a927844cb6b6648900657a6696" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_8bd06b3ce6ee4d089fe82b3d898ed652.setContent(html_ccb415a927844cb6b6648900657a6696);
circle_marker_31e2c917e9a84718b5dbc4b9547dce31.bindPopup(popup_8bd06b3ce6ee4d089fe82b3d898ed652)
;
var circle_marker_9b29f57d6f1843519ac5448ba6b42ecf = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_aaf1a5d9f1ac49f3b080bdb2563be5fe = L.popup({"maxWidth": "100%"});
var html_ee507e28d2b94a5daec2f19010e5d6e3 = $(`<div id="html_ee507e28d2b94a5daec2f19010e5d6e3" style="width: 100.0%; height: 100.0%;">54</div>`)[0];
popup_aaf1a5d9f1ac49f3b080bdb2563be5fe.setContent(html_ee507e28d2b94a5daec2f19010e5d6e3);
circle_marker_9b29f57d6f1843519ac5448ba6b42ecf.bindPopup(popup_aaf1a5d9f1ac49f3b080bdb2563be5fe)
;
var circle_marker_03d549b245f34772b98ea1961e762e05 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_287018c2973c4cadba4d279c240bf4d6 = L.popup({"maxWidth": "100%"});
var html_d00a22a5b47c4e8683a49f25a9f4670b = $(`<div id="html_d00a22a5b47c4e8683a49f25a9f4670b" style="width: 100.0%; height: 100.0%;">54</div>`)[0];
popup_287018c2973c4cadba4d279c240bf4d6.setContent(html_d00a22a5b47c4e8683a49f25a9f4670b);
circle_marker_03d549b245f34772b98ea1961e762e05.bindPopup(popup_287018c2973c4cadba4d279c240bf4d6)
;
var circle_marker_de9e3cb80f284d0aa0494e9d0c1c1173 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_a555850aaef74a989e2e74e0a647ccdc = L.popup({"maxWidth": "100%"});
var html_e1fc3c3060ed440a9546024e770c65fb = $(`<div id="html_e1fc3c3060ed440a9546024e770c65fb" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_a555850aaef74a989e2e74e0a647ccdc.setContent(html_e1fc3c3060ed440a9546024e770c65fb);
circle_marker_de9e3cb80f284d0aa0494e9d0c1c1173.bindPopup(popup_a555850aaef74a989e2e74e0a647ccdc)
;
var circle_marker_5e814feb8d3c4dd3a67a007317e5de81 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_40532d50d03c465c92f7778e10ac6ca2 = L.popup({"maxWidth": "100%"});
var html_9ec891aaf8774b06b75e924e98bea72a = $(`<div id="html_9ec891aaf8774b06b75e924e98bea72a" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_40532d50d03c465c92f7778e10ac6ca2.setContent(html_9ec891aaf8774b06b75e924e98bea72a);
circle_marker_5e814feb8d3c4dd3a67a007317e5de81.bindPopup(popup_40532d50d03c465c92f7778e10ac6ca2)
;
var circle_marker_4858e6eedc31426aab9bf3f86f18da36 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_48c0906becd34b9aa737e0cc8c13669c = L.popup({"maxWidth": "100%"});
var html_f4c806c274ba49598905edc8ed2ec86b = $(`<div id="html_f4c806c274ba49598905edc8ed2ec86b" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_48c0906becd34b9aa737e0cc8c13669c.setContent(html_f4c806c274ba49598905edc8ed2ec86b);
circle_marker_4858e6eedc31426aab9bf3f86f18da36.bindPopup(popup_48c0906becd34b9aa737e0cc8c13669c)
;
var circle_marker_c72c13ebde4b4fd38f84b531eb604730 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_bd0ea686bcfb489b94290dfca20efb6b = L.popup({"maxWidth": "100%"});
var html_f6abee32190e4c8ba34f9fbd5628cb94 = $(`<div id="html_f6abee32190e4c8ba34f9fbd5628cb94" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_bd0ea686bcfb489b94290dfca20efb6b.setContent(html_f6abee32190e4c8ba34f9fbd5628cb94);
circle_marker_c72c13ebde4b4fd38f84b531eb604730.bindPopup(popup_bd0ea686bcfb489b94290dfca20efb6b)
;
var circle_marker_75459961a88d43889e9278a04ae512d8 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_5293370cb0c548a2abe1c1a2e5152d2c = L.popup({"maxWidth": "100%"});
var html_c84b21e88e124dc8ba9789ee120414bb = $(`<div id="html_c84b21e88e124dc8ba9789ee120414bb" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_5293370cb0c548a2abe1c1a2e5152d2c.setContent(html_c84b21e88e124dc8ba9789ee120414bb);
circle_marker_75459961a88d43889e9278a04ae512d8.bindPopup(popup_5293370cb0c548a2abe1c1a2e5152d2c)
;
var circle_marker_72529b945a434bd993de8d2a2f7b96cf = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_3c191bd86e0b4e0c82a33828e19d34d9 = L.popup({"maxWidth": "100%"});
var html_03e75d267ede4fa5b8ab8a64a41ccc86 = $(`<div id="html_03e75d267ede4fa5b8ab8a64a41ccc86" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_3c191bd86e0b4e0c82a33828e19d34d9.setContent(html_03e75d267ede4fa5b8ab8a64a41ccc86);
circle_marker_72529b945a434bd993de8d2a2f7b96cf.bindPopup(popup_3c191bd86e0b4e0c82a33828e19d34d9)
;
var circle_marker_5f1b9a9114df41be8d32dab6a60b177b = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_7c093046260442ff92abec392004093f = L.popup({"maxWidth": "100%"});
var html_27a1d60dce9248769a9051e00375c523 = $(`<div id="html_27a1d60dce9248769a9051e00375c523" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_7c093046260442ff92abec392004093f.setContent(html_27a1d60dce9248769a9051e00375c523);
circle_marker_5f1b9a9114df41be8d32dab6a60b177b.bindPopup(popup_7c093046260442ff92abec392004093f)
;
var circle_marker_257c4345af9c4296827bb5af6d9c6f54 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_b0fca4f5238e47c6bef87b15acdd2cb5 = L.popup({"maxWidth": "100%"});
var html_4d3d5d92b9ac4e508b7da320c261a8ee = $(`<div id="html_4d3d5d92b9ac4e508b7da320c261a8ee" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_b0fca4f5238e47c6bef87b15acdd2cb5.setContent(html_4d3d5d92b9ac4e508b7da320c261a8ee);
circle_marker_257c4345af9c4296827bb5af6d9c6f54.bindPopup(popup_b0fca4f5238e47c6bef87b15acdd2cb5)
;
var circle_marker_62585520ebef424dabd4c7722aa4b467 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_30bbfc6b20d7475ebd0f99bc89337567 = L.popup({"maxWidth": "100%"});
var html_cffc58f5c17f49bcb6ed13612e0e332c = $(`<div id="html_cffc58f5c17f49bcb6ed13612e0e332c" style="width: 100.0%; height: 100.0%;">43</div>`)[0];
popup_30bbfc6b20d7475ebd0f99bc89337567.setContent(html_cffc58f5c17f49bcb6ed13612e0e332c);
circle_marker_62585520ebef424dabd4c7722aa4b467.bindPopup(popup_30bbfc6b20d7475ebd0f99bc89337567)
;
var circle_marker_2812bcf775dd4ca690df7f7b2c7cdbfa = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_b4ce6d7874ac4ed2b8533d619ad5bc26 = L.popup({"maxWidth": "100%"});
var html_6d5149d3dc6c487cbd6b2fe2ebf94e7b = $(`<div id="html_6d5149d3dc6c487cbd6b2fe2ebf94e7b" style="width: 100.0%; height: 100.0%;">29</div>`)[0];
popup_b4ce6d7874ac4ed2b8533d619ad5bc26.setContent(html_6d5149d3dc6c487cbd6b2fe2ebf94e7b);
circle_marker_2812bcf775dd4ca690df7f7b2c7cdbfa.bindPopup(popup_b4ce6d7874ac4ed2b8533d619ad5bc26)
;
var circle_marker_af67b117c4b34e5cb94bb7f49066f88f = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_0e9ed57a75d44f39b87a1103905ea8d7 = L.popup({"maxWidth": "100%"});
var html_bf9005d1c91a40be98cc5e1ef5d70c35 = $(`<div id="html_bf9005d1c91a40be98cc5e1ef5d70c35" style="width: 100.0%; height: 100.0%;">29</div>`)[0];
popup_0e9ed57a75d44f39b87a1103905ea8d7.setContent(html_bf9005d1c91a40be98cc5e1ef5d70c35);
circle_marker_af67b117c4b34e5cb94bb7f49066f88f.bindPopup(popup_0e9ed57a75d44f39b87a1103905ea8d7)
;
var circle_marker_ebfb1d3c05024691b37e3aebdfab93e9 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_9dd19e1e16ca4276b0720135c6413469 = L.popup({"maxWidth": "100%"});
var html_f650073a9b654534b92e40af5445c5f0 = $(`<div id="html_f650073a9b654534b92e40af5445c5f0" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_9dd19e1e16ca4276b0720135c6413469.setContent(html_f650073a9b654534b92e40af5445c5f0);
circle_marker_ebfb1d3c05024691b37e3aebdfab93e9.bindPopup(popup_9dd19e1e16ca4276b0720135c6413469)
;
var circle_marker_afe26ad04eb74c76baba2b46d16f51c9 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_52bfb0c9db3e4931a283993825959dcc = L.popup({"maxWidth": "100%"});
var html_65c5f692e37b4710ba1bd97d71cc7216 = $(`<div id="html_65c5f692e37b4710ba1bd97d71cc7216" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_52bfb0c9db3e4931a283993825959dcc.setContent(html_65c5f692e37b4710ba1bd97d71cc7216);
circle_marker_afe26ad04eb74c76baba2b46d16f51c9.bindPopup(popup_52bfb0c9db3e4931a283993825959dcc)
;
var circle_marker_c7b2496c84a5473b8b2e72c1cbe0982a = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_7a31879013124a59ac16316ff62455c1 = L.popup({"maxWidth": "100%"});
var html_adf47ba343d84ca39546e53dc7108cf4 = $(`<div id="html_adf47ba343d84ca39546e53dc7108cf4" style="width: 100.0%; height: 100.0%;">13</div>`)[0];
popup_7a31879013124a59ac16316ff62455c1.setContent(html_adf47ba343d84ca39546e53dc7108cf4);
circle_marker_c7b2496c84a5473b8b2e72c1cbe0982a.bindPopup(popup_7a31879013124a59ac16316ff62455c1)
;
var circle_marker_52052e6a012949958c790dea259e726d = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_3e113cb1b4964e66925b5b9757241878 = L.popup({"maxWidth": "100%"});
var html_b186218f7320499691de85ed2b4c8706 = $(`<div id="html_b186218f7320499691de85ed2b4c8706" style="width: 100.0%; height: 100.0%;">26</div>`)[0];
popup_3e113cb1b4964e66925b5b9757241878.setContent(html_b186218f7320499691de85ed2b4c8706);
circle_marker_52052e6a012949958c790dea259e726d.bindPopup(popup_3e113cb1b4964e66925b5b9757241878)
;
var circle_marker_7c265d97291d452186eee2c5d01e647f = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_9a85aa3a913c4df48fad39be257a1853 = L.popup({"maxWidth": "100%"});
var html_3e86b77ad44742129cc44fb5c1b0cc5c = $(`<div id="html_3e86b77ad44742129cc44fb5c1b0cc5c" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_9a85aa3a913c4df48fad39be257a1853.setContent(html_3e86b77ad44742129cc44fb5c1b0cc5c);
circle_marker_7c265d97291d452186eee2c5d01e647f.bindPopup(popup_9a85aa3a913c4df48fad39be257a1853)
;
var circle_marker_ac7496d1dd544fa3840bbaa41834e983 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_3e7f0e4c25cc4f8688366735e32af574 = L.popup({"maxWidth": "100%"});
var html_dfdebcca076a45f7ad3511e9d0363f7b = $(`<div id="html_dfdebcca076a45f7ad3511e9d0363f7b" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_3e7f0e4c25cc4f8688366735e32af574.setContent(html_dfdebcca076a45f7ad3511e9d0363f7b);
circle_marker_ac7496d1dd544fa3840bbaa41834e983.bindPopup(popup_3e7f0e4c25cc4f8688366735e32af574)
;
var circle_marker_03311ed5a8ae49e78c2baf286e31980e = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_d92b69e2231b4243920bd93a6e4ef2ad = L.popup({"maxWidth": "100%"});
var html_ec8e7b2028e74a8a990ec8bf736664c4 = $(`<div id="html_ec8e7b2028e74a8a990ec8bf736664c4" style="width: 100.0%; height: 100.0%;">35</div>`)[0];
popup_d92b69e2231b4243920bd93a6e4ef2ad.setContent(html_ec8e7b2028e74a8a990ec8bf736664c4);
circle_marker_03311ed5a8ae49e78c2baf286e31980e.bindPopup(popup_d92b69e2231b4243920bd93a6e4ef2ad)
;
var circle_marker_48538d57553d4c32a3c32b6658b97d6c = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_27a95ec9bdfb47ad889a2454ccfc40a8 = L.popup({"maxWidth": "100%"});
var html_aa6890cdf6944e3f83ac520d6834a9bd = $(`<div id="html_aa6890cdf6944e3f83ac520d6834a9bd" style="width: 100.0%; height: 100.0%;">19</div>`)[0];
popup_27a95ec9bdfb47ad889a2454ccfc40a8.setContent(html_aa6890cdf6944e3f83ac520d6834a9bd);
circle_marker_48538d57553d4c32a3c32b6658b97d6c.bindPopup(popup_27a95ec9bdfb47ad889a2454ccfc40a8)
;
var circle_marker_c22db9e852ce43eaa27f82765766d051 = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_9eb638cc8ab74b23aefccb180bedd225 = L.popup({"maxWidth": "100%"});
var html_3cc6ab9397d0482693039e2dcd14ee65 = $(`<div id="html_3cc6ab9397d0482693039e2dcd14ee65" style="width: 100.0%; height: 100.0%;">8</div>`)[0];
popup_9eb638cc8ab74b23aefccb180bedd225.setContent(html_3cc6ab9397d0482693039e2dcd14ee65);
circle_marker_c22db9e852ce43eaa27f82765766d051.bindPopup(popup_9eb638cc8ab74b23aefccb180bedd225)
;
var circle_marker_cd657534a7914d68a19ee403065a6cfb = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);
var popup_ca9533e040ab485f93fbce5c40157510 = L.popup({"maxWidth": "100%"});
var html_a37e231fd7ec4f808f4b6529b70b270b = $(`<div id="html_a37e231fd7ec4f808f4b6529b70b270b" style="width: 100.0%; height: 100.0%;">8</div>`)[0];
popup_ca9533e040ab485f93fbce5c40157510.setContent(html_a37e231fd7ec4f808f4b6529b70b270b);
circle_marker_cd657534a7914d68a19ee403065a6cfb.bindPopup(popup_ca9533e040ab485f93fbce5c40157510)
;
var circle_marker_423a43ccef3441c5904f97b126ebcfab = 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_f74be0b65a1e4c6dbe2a0c559e01f3ee);