-
Notifications
You must be signed in to change notification settings - Fork 0
/
2017.html
3032 lines (1604 loc) · 107 KB
/
2017.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_PREFER_CANVAS=false; 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_504439c94cef464db7be82fc9de12356 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_504439c94cef464db7be82fc9de12356" ></div>
</body>
<script>
var bounds = null;
var map_504439c94cef464db7be82fc9de12356 = L.map(
'map_504439c94cef464db7be82fc9de12356', {
center: [-25, 30],
zoom: 5,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_27245f71d16d495ab2a184d709544b5c = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_504439c94cef464db7be82fc9de12356);
var marker_c9969b8b26754018a03a5448a2e1528c = L.marker(
[-28.738297, 24.764238],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_f42edd31c67e403897a339ae2484675f = L.popup({maxWidth: '100%'
});
var html_6ba2c89edd234f3e971aac78673c3902 = $(`<div id="html_6ba2c89edd234f3e971aac78673c3902" style="width: 100.0%; height: 100.0%;">Kimberley 2017-07-24</div>`)[0];
popup_f42edd31c67e403897a339ae2484675f.setContent(html_6ba2c89edd234f3e971aac78673c3902);
marker_c9969b8b26754018a03a5448a2e1528c.bindPopup(popup_f42edd31c67e403897a339ae2484675f)
;
var marker_80540be56ddd466cae8e6eac55bb8092 = L.marker(
[-26.14754, 28.09925],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_d0d0786863c843219e984fa2d1ed1153 = L.popup({maxWidth: '100%'
});
var html_9e9f7a83ba9348bfbb9af87e3537cb9d = $(`<div id="html_9e9f7a83ba9348bfbb9af87e3537cb9d" style="width: 100.0%; height: 100.0%;">Genesis All-Suite Hotel 2017-07-27</div>`)[0];
popup_d0d0786863c843219e984fa2d1ed1153.setContent(html_9e9f7a83ba9348bfbb9af87e3537cb9d);
marker_80540be56ddd466cae8e6eac55bb8092.bindPopup(popup_d0d0786863c843219e984fa2d1ed1153)
;
var marker_23d134d422da4e3c9fcea6ebed885559 = L.marker(
[-25.746656, 28.24582],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_dba3373e0abc470bade94bab5ac04d04 = L.popup({maxWidth: '100%'
});
var html_7c6203bf5659436cb2d6e9eb09af038a = $(`<div id="html_7c6203bf5659436cb2d6e9eb09af038a" style="width: 100.0%; height: 100.0%;">1322 Backpackers 2017-08-04</div>`)[0];
popup_dba3373e0abc470bade94bab5ac04d04.setContent(html_7c6203bf5659436cb2d6e9eb09af038a);
marker_23d134d422da4e3c9fcea6ebed885559.bindPopup(popup_dba3373e0abc470bade94bab5ac04d04)
;
var marker_5a4d08d67c9f4e44bbce81372a9627cd = L.marker(
[-25.749665, 28.236155],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_c951345e5a434d0a9626b39e71b81f06 = L.popup({maxWidth: '100%'
});
var html_738b408d1ed948ecac7fbba2307be964 = $(`<div id="html_738b408d1ed948ecac7fbba2307be964" style="width: 100.0%; height: 100.0%;">Pick 'n Pay 2017-08-04</div>`)[0];
popup_c951345e5a434d0a9626b39e71b81f06.setContent(html_738b408d1ed948ecac7fbba2307be964);
marker_5a4d08d67c9f4e44bbce81372a9627cd.bindPopup(popup_c951345e5a434d0a9626b39e71b81f06)
;
var marker_b234b3108a1d47efac480b30c3e8c477 = L.marker(
[-25.861204, 28.250406],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_c22bc4be675b44f8ab71af6b30487168 = L.popup({maxWidth: '100%'
});
var html_ce3db489903348b68b41c9c7310c3fdb = $(`<div id="html_ce3db489903348b68b41c9c7310c3fdb" style="width: 100.0%; height: 100.0%;">Cape Union Mart 2017-08-05</div>`)[0];
popup_c22bc4be675b44f8ab71af6b30487168.setContent(html_ce3db489903348b68b41c9c7310c3fdb);
marker_b234b3108a1d47efac480b30c3e8c477.bindPopup(popup_c22bc4be675b44f8ab71af6b30487168)
;
var marker_bc6158d3630244daa8df0ea16af10a61 = L.marker(
[-25.967145, 27.662402],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_a576e44831a040b58a95f59d288a21be = L.popup({maxWidth: '100%'
});
var html_7ee90a5061b744348e628d6cabb4cc8a = $(`<div id="html_7ee90a5061b744348e628d6cabb4cc8a" style="width: 100.0%; height: 100.0%;">Maropeng Cradle of Humankind Museum. The Tumulus building 2017-08-06</div>`)[0];
popup_a576e44831a040b58a95f59d288a21be.setContent(html_7ee90a5061b744348e628d6cabb4cc8a);
marker_bc6158d3630244daa8df0ea16af10a61.bindPopup(popup_a576e44831a040b58a95f59d288a21be)
;
var marker_527f658431b54c8dbc8f34170a5310ed = L.marker(
[-26.707777, 27.095833],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_ca89582caf8947a5a1c397eb75793c70 = L.popup({maxWidth: '100%'
});
var html_76a38309ef204b22ae2626b83a19a4a2 = $(`<div id="html_76a38309ef204b22ae2626b83a19a4a2" style="width: 100.0%; height: 100.0%;">Potchefstroom 2017-08-07</div>`)[0];
popup_ca89582caf8947a5a1c397eb75793c70.setContent(html_76a38309ef204b22ae2626b83a19a4a2);
marker_527f658431b54c8dbc8f34170a5310ed.bindPopup(popup_ca89582caf8947a5a1c397eb75793c70)
;
var marker_75567fcbd1e842a9a6133955884b4ed4 = L.marker(
[-26.709421, 27.093789],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_6c6d10c602f0455d871988ade4e8be08 = L.popup({maxWidth: '100%'
});
var html_dfdee28e4f7b40e99374ef496521f5af = $(`<div id="html_dfdee28e4f7b40e99374ef496521f5af" style="width: 100.0%; height: 100.0%;">Adato Guesthouse 2017-08-07</div>`)[0];
popup_6c6d10c602f0455d871988ade4e8be08.setContent(html_dfdee28e4f7b40e99374ef496521f5af);
marker_75567fcbd1e842a9a6133955884b4ed4.bindPopup(popup_6c6d10c602f0455d871988ade4e8be08)
;
var marker_657736269aa14cd9bf707d3693bbfb04 = L.marker(
[-26.713935, 27.104182],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_ffd3946436d445bcade419125213c042 = L.popup({maxWidth: '100%'
});
var html_fe57e45418f14405891648c23f5f7475 = $(`<div id="html_fe57e45418f14405891648c23f5f7475" style="width: 100.0%; height: 100.0%;">ABSA 2017-08-07</div>`)[0];
popup_ffd3946436d445bcade419125213c042.setContent(html_fe57e45418f14405891648c23f5f7475);
marker_657736269aa14cd9bf707d3693bbfb04.bindPopup(popup_ffd3946436d445bcade419125213c042)
;
var marker_6c421effac664e5f8c0f1c32feaa23b2 = L.marker(
[-29.828486, 27.600176],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_6d76557384c64045b5a2349a6f2bdc89 = L.popup({maxWidth: '100%'
});
var html_4bb5db4b83f9406f93542a9c85ed9989 = $(`<div id="html_4bb5db4b83f9406f93542a9c85ed9989" style="width: 100.0%; height: 100.0%;">Malealea Lodge 2017-08-08</div>`)[0];
popup_6d76557384c64045b5a2349a6f2bdc89.setContent(html_4bb5db4b83f9406f93542a9c85ed9989);
marker_6c421effac664e5f8c0f1c32feaa23b2.bindPopup(popup_6d76557384c64045b5a2349a6f2bdc89)
;
var marker_7d9e167ac4404349a9c9a3f26bc1abb6 = L.marker(
[-29.442986, 27.703911],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_11a6480dcc634efd892a3e302cee6d0d = L.popup({maxWidth: '100%'
});
var html_3315c7cab99541e38da09f1aadf42383 = $(`<div id="html_3315c7cab99541e38da09f1aadf42383" style="width: 100.0%; height: 100.0%;">Roma Trading Post Lodge 2017-08-08</div>`)[0];
popup_11a6480dcc634efd892a3e302cee6d0d.setContent(html_3315c7cab99541e38da09f1aadf42383);
marker_7d9e167ac4404349a9c9a3f26bc1abb6.bindPopup(popup_11a6480dcc634efd892a3e302cee6d0d)
;
var marker_a0967fbd074d4476a594680d526d187f = L.marker(
[-25.970685, 27.791716],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_1e22a799a0d647ff957f2eb5f16a6b7f = L.popup({maxWidth: '100%'
});
var html_279542f47ba24881b65febcd6380208c = $(`<div id="html_279542f47ba24881b65febcd6380208c" style="width: 100.0%; height: 100.0%;">Rhino and Lion Nature Reserve 2017-08-08</div>`)[0];
popup_1e22a799a0d647ff957f2eb5f16a6b7f.setContent(html_279542f47ba24881b65febcd6380208c);
marker_a0967fbd074d4476a594680d526d187f.bindPopup(popup_1e22a799a0d647ff957f2eb5f16a6b7f)
;
var marker_d00da6c85db34609b2d734a698b102e4 = L.marker(
[-28.86722, 27.881749],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_9a6eb286080246bbbad9b0861f66317c = L.popup({maxWidth: '100%'
});
var html_848f25790fd74cb38f278e9ada7efe8c = $(`<div id="html_848f25790fd74cb38f278e9ada7efe8c" style="width: 100.0%; height: 100.0%;">Woodpecker Guesthouse 2017-08-08</div>`)[0];
popup_9a6eb286080246bbbad9b0861f66317c.setContent(html_848f25790fd74cb38f278e9ada7efe8c);
marker_d00da6c85db34609b2d734a698b102e4.bindPopup(popup_9a6eb286080246bbbad9b0861f66317c)
;
var marker_9b0b079904864725bea59ebac62f73bc = L.marker(
[-29.151971, 27.742755],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_7f7fc2e4b3ec4f8c968e0645ca96602c = L.popup({maxWidth: '100%'
});
var html_014556ab636f46b8b7f41c4739de8306 = $(`<div id="html_014556ab636f46b8b7f41c4739de8306" style="width: 100.0%; height: 100.0%;">Teyateyaneng 2017-08-08</div>`)[0];
popup_7f7fc2e4b3ec4f8c968e0645ca96602c.setContent(html_014556ab636f46b8b7f41c4739de8306);
marker_9b0b079904864725bea59ebac62f73bc.bindPopup(popup_7f7fc2e4b3ec4f8c968e0645ca96602c)
;
var marker_2bdf6e11ecaf466080653bb17b7f6267 = L.marker(
[-28.866891, 28.057941],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_330804a98c0f4ef6a1e1afad0c110330 = L.popup({maxWidth: '100%'
});
var html_973f71a638204fc6ae8d08406ccfefc7 = $(`<div id="html_973f71a638204fc6ae8d08406ccfefc7" style="width: 100.0%; height: 100.0%;">Hlotse (Leribe) 2017-08-08</div>`)[0];
popup_330804a98c0f4ef6a1e1afad0c110330.setContent(html_973f71a638204fc6ae8d08406ccfefc7);
marker_2bdf6e11ecaf466080653bb17b7f6267.bindPopup(popup_330804a98c0f4ef6a1e1afad0c110330)
;
var marker_9f0a8953846e41a58af584854cb5ce0e = L.marker(
[-28.823455, 28.07504],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_32d32e22e1414e0285522a9ebc64d496 = L.popup({maxWidth: '100%'
});
var html_ea23e10c6da840cf88ee364118390e8f = $(`<div id="html_ea23e10c6da840cf88ee364118390e8f" style="width: 100.0%; height: 100.0%;">Dinosaur Prints 2017-08-08</div>`)[0];
popup_32d32e22e1414e0285522a9ebc64d496.setContent(html_ea23e10c6da840cf88ee364118390e8f);
marker_9f0a8953846e41a58af584854cb5ce0e.bindPopup(popup_32d32e22e1414e0285522a9ebc64d496)
;
var marker_9f942db0816b48fd85d6eb3b24d6ef3c = L.marker(
[-27.982297, 26.737958],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_3aba9e67d42b4050a836f3b6d0859e00 = L.popup({maxWidth: '100%'
});
var html_4dfbbe06e7aa4aca892677fe8b516d33 = $(`<div id="html_4dfbbe06e7aa4aca892677fe8b516d33" style="width: 100.0%; height: 100.0%;">Welkom 2017-08-08</div>`)[0];
popup_3aba9e67d42b4050a836f3b6d0859e00.setContent(html_4dfbbe06e7aa4aca892677fe8b516d33);
marker_9f942db0816b48fd85d6eb3b24d6ef3c.bindPopup(popup_3aba9e67d42b4050a836f3b6d0859e00)
;
var marker_a8edd3ae7d904ed3897f2442f3d25cfa = L.marker(
[-32.140931, 25.509604],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_7818502f24b8414eb74db4b1bbec5d9d = L.popup({maxWidth: '100%'
});
var html_628a97a4d4564ca48e2d8aee2c270d43 = $(`<div id="html_628a97a4d4564ca48e2d8aee2c270d43" style="width: 100.0%; height: 100.0%;">Mountain Zebra National Park Entrance Gate 2017-08-08</div>`)[0];
popup_7818502f24b8414eb74db4b1bbec5d9d.setContent(html_628a97a4d4564ca48e2d8aee2c270d43);
marker_a8edd3ae7d904ed3897f2442f3d25cfa.bindPopup(popup_7818502f24b8414eb74db4b1bbec5d9d)
;
var marker_cb6bb052a7be4d0c94119281477f9e46 = L.marker(
[-29.335376, 27.776588],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_f63a63b061f2485a8159800d6eb99a96 = L.popup({maxWidth: '100%'
});
var html_b2386c25a1cd47cc9f6d8c517d1e2e3a = $(`<div id="html_b2386c25a1cd47cc9f6d8c517d1e2e3a" style="width: 100.0%; height: 100.0%;">Metolong Dam 2017-08-08</div>`)[0];
popup_f63a63b061f2485a8159800d6eb99a96.setContent(html_b2386c25a1cd47cc9f6d8c517d1e2e3a);
marker_cb6bb052a7be4d0c94119281477f9e46.bindPopup(popup_f63a63b061f2485a8159800d6eb99a96)
;
var marker_a0aa59667bd24f249b456724ca68ee1d = L.marker(
[-28.90155, 27.993914],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_76e5b1c89b014a4cba71e9302568a987 = L.popup({maxWidth: '100%'
});
var html_32621c3c482d42d597a6aa9fe15e5955 = $(`<div id="html_32621c3c482d42d597a6aa9fe15e5955" style="width: 100.0%; height: 100.0%;">Tsikoane ACL Mission 2017-08-09</div>`)[0];
popup_76e5b1c89b014a4cba71e9302568a987.setContent(html_32621c3c482d42d597a6aa9fe15e5955);
marker_a0aa59667bd24f249b456724ca68ee1d.bindPopup(popup_76e5b1c89b014a4cba71e9302568a987)
;
var marker_ae6a27ade2834d66a793e9fc0adb080e = L.marker(
[-29.84323, 28.043529],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_0f1a17e0a72042abaa840cc7b752503d = L.popup({maxWidth: '100%'
});
var html_bbd2e8d75c724342aac3ee8d1c536ee7 = $(`<div id="html_bbd2e8d75c724342aac3ee8d1c536ee7" style="width: 100.0%; height: 100.0%;">Semongkong Lodge 2017-08-09</div>`)[0];
popup_0f1a17e0a72042abaa840cc7b752503d.setContent(html_bbd2e8d75c724342aac3ee8d1c536ee7);
marker_ae6a27ade2834d66a793e9fc0adb080e.bindPopup(popup_0f1a17e0a72042abaa840cc7b752503d)
;
var marker_df2cf03467dd419eacfdc78bb6e94d49 = L.marker(
[-29.31389, 27.480687],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_196d3c2cada0447996b6400196edf835 = L.popup({maxWidth: '100%'
});
var html_f5d5d3dd181c4992b6ddbe7e0dd02f80 = $(`<div id="html_f5d5d3dd181c4992b6ddbe7e0dd02f80" style="width: 100.0%; height: 100.0%;">Ouh La La Cafè 2017-08-10</div>`)[0];
popup_196d3c2cada0447996b6400196edf835.setContent(html_f5d5d3dd181c4992b6ddbe7e0dd02f80);
marker_df2cf03467dd419eacfdc78bb6e94d49.bindPopup(popup_196d3c2cada0447996b6400196edf835)
;
var marker_7c608b671ee94d33a9c0e33b60e08046 = L.marker(
[-29.315899, 27.473669],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_11093405b6a24024987e4646b1d4f78c = L.popup({maxWidth: '100%'
});
var html_3c970cb14a0a4139aa303805a61be962 = $(`<div id="html_3c970cb14a0a4139aa303805a61be962" style="width: 100.0%; height: 100.0%;">Piri Piri 2017-08-10</div>`)[0];
popup_11093405b6a24024987e4646b1d4f78c.setContent(html_3c970cb14a0a4139aa303805a61be962);
marker_7c608b671ee94d33a9c0e33b60e08046.bindPopup(popup_11093405b6a24024987e4646b1d4f78c)
;
var marker_ba4b3a10e88c482485f8d87a9c8e4197 = L.marker(
[-29.313127, 27.478187],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_3a5913e3fc754fe6a12e4f46104c6f13 = L.popup({maxWidth: '100%'
});
var html_d96bea4a9ad7452ab41757aff147c9e4 = $(`<div id="html_d96bea4a9ad7452ab41757aff147c9e4" style="width: 100.0%; height: 100.0%;">Regal restaurant 2017-08-10</div>`)[0];
popup_3a5913e3fc754fe6a12e4f46104c6f13.setContent(html_d96bea4a9ad7452ab41757aff147c9e4);
marker_ba4b3a10e88c482485f8d87a9c8e4197.bindPopup(popup_3a5913e3fc754fe6a12e4f46104c6f13)
;
var marker_fde3443a65854a099f66a1a30bd3bb7c = L.marker(
[-33.579822, 22.205189],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_579164f9d2a04f47b713f30f1f177ff3 = L.popup({maxWidth: '100%'
});
var html_a05cab6dbed743b796229f1b0f3c1b9e = $(`<div id="html_a05cab6dbed743b796229f1b0f3c1b9e" style="width: 100.0%; height: 100.0%;">Backpackers Paradise and Joyrides 2017-08-10</div>`)[0];
popup_579164f9d2a04f47b713f30f1f177ff3.setContent(html_a05cab6dbed743b796229f1b0f3c1b9e);
marker_fde3443a65854a099f66a1a30bd3bb7c.bindPopup(popup_579164f9d2a04f47b713f30f1f177ff3)
;
var marker_d3e66ba34a954f9d97fce1a794106084 = L.marker(
[-29.116384, 26.215506],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_af5f8d86a9ff4254806b680b9bf53015 = L.popup({maxWidth: '100%'
});
var html_a2c1d2b1c9e24b629400ad7450b76c81 = $(`<div id="html_a2c1d2b1c9e24b629400ad7450b76c81" style="width: 100.0%; height: 100.0%;">Bloemfontein 2017-08-10</div>`)[0];
popup_af5f8d86a9ff4254806b680b9bf53015.setContent(html_a2c1d2b1c9e24b629400ad7450b76c81);
marker_d3e66ba34a954f9d97fce1a794106084.bindPopup(popup_af5f8d86a9ff4254806b680b9bf53015)
;
var marker_53b8067d23c8461794847f7e26de9562 = L.marker(
[-31.866391, 24.556957],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_f76d2c5f21af43ffa776e1aa791e8789 = L.popup({maxWidth: '100%'
});
var html_ab28f6d43d1e41a3b8371819478127ce = $(`<div id="html_ab28f6d43d1e41a3b8371819478127ce" style="width: 100.0%; height: 100.0%;">New Bethesda 2017-08-10</div>`)[0];
popup_f76d2c5f21af43ffa776e1aa791e8789.setContent(html_ab28f6d43d1e41a3b8371819478127ce);
marker_53b8067d23c8461794847f7e26de9562.bindPopup(popup_f76d2c5f21af43ffa776e1aa791e8789)
;
var marker_69a35e672426428fb7ea51f489bc5f2c = L.marker(
[-33.939762, 18.402489],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_ae22051c58454d4aa8928ff40bf41c3b = L.popup({maxWidth: '100%'
});
var html_c677f9c6228946a48eb066d67727fb19 = $(`<div id="html_c677f9c6228946a48eb066d67727fb19" style="width: 100.0%; height: 100.0%;">Cape Paradise Lodge 2017-08-11</div>`)[0];
popup_ae22051c58454d4aa8928ff40bf41c3b.setContent(html_c677f9c6228946a48eb066d67727fb19);
marker_69a35e672426428fb7ea51f489bc5f2c.bindPopup(popup_ae22051c58454d4aa8928ff40bf41c3b)
;
var marker_1d0ce295610e49fb9a069271af7a0cd2 = L.marker(
[-28.826963, 28.729169],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_40e752f5b456453bbce71f7247230ff9 = L.popup({maxWidth: '100%'
});
var html_9ee3c7c9b88f455eb9036dd339d1d837 = $(`<div id="html_9ee3c7c9b88f455eb9036dd339d1d837" style="width: 100.0%; height: 100.0%;">Afri-Ski Resort 2017-08-12</div>`)[0];
popup_40e752f5b456453bbce71f7247230ff9.setContent(html_9ee3c7c9b88f455eb9036dd339d1d837);
marker_1d0ce295610e49fb9a069271af7a0cd2.bindPopup(popup_40e752f5b456453bbce71f7247230ff9)
;
var marker_932e506ca2a3450795db6db9739808fd = L.marker(
[-29.317025, 27.477388],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_f93da332059c4d249590a11cf5b39a26 = L.popup({maxWidth: '100%'
});
var html_bdbb6b81dcf74d2bb46effa9d2135456 = $(`<div id="html_bdbb6b81dcf74d2bb46effa9d2135456" style="width: 100.0%; height: 100.0%;">Pioneer Mall (Pick n Pay) 2017-08-12</div>`)[0];
popup_f93da332059c4d249590a11cf5b39a26.setContent(html_bdbb6b81dcf74d2bb46effa9d2135456);
marker_932e506ca2a3450795db6db9739808fd.bindPopup(popup_f93da332059c4d249590a11cf5b39a26)
;
var marker_3ad99500a6c44aaabf58d553e67116da = L.marker(
[-28.75645, 28.259003],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_0f3ecbb4e29948959d39755ae0dced8d = L.popup({maxWidth: '100%'
});
var html_beb60921ce644576831379bb827ae96e = $(`<div id="html_beb60921ce644576831379bb827ae96e" style="width: 100.0%; height: 100.0%;">Building 2017-08-12</div>`)[0];
popup_0f3ecbb4e29948959d39755ae0dced8d.setContent(html_beb60921ce644576831379bb827ae96e);
marker_3ad99500a6c44aaabf58d553e67116da.bindPopup(popup_0f3ecbb4e29948959d39755ae0dced8d)
;
var marker_e9bcd9555d364207b4b1f0b52ec28169 = L.marker(
[-28.230833, 28.308888],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_27b5f4481d94433294b557c358daae30 = L.popup({maxWidth: '100%'
});
var html_b11f8eec425b4dd9babd2a50c1a41c9d = $(`<div id="html_b11f8eec425b4dd9babd2a50c1a41c9d" style="width: 100.0%; height: 100.0%;">Bethlehem 2017-08-13</div>`)[0];
popup_27b5f4481d94433294b557c358daae30.setContent(html_b11f8eec425b4dd9babd2a50c1a41c9d);
marker_e9bcd9555d364207b4b1f0b52ec28169.bindPopup(popup_27b5f4481d94433294b557c358daae30)
;
var marker_42698a9ea7cc4afa845289763bcaffe9 = L.marker(
[-28.225832, 28.328447],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_ebe5f071e72746f6b10d6807ffd22c6f = L.popup({maxWidth: '100%'
});
var html_96a3cfd101a54d919142a4836214c53a = $(`<div id="html_96a3cfd101a54d919142a4836214c53a" style="width: 100.0%; height: 100.0%;">Bokmakierie and Hoephoep Guest House 2017-08-13</div>`)[0];
popup_ebe5f071e72746f6b10d6807ffd22c6f.setContent(html_96a3cfd101a54d919142a4836214c53a);
marker_42698a9ea7cc4afa845289763bcaffe9.bindPopup(popup_ebe5f071e72746f6b10d6807ffd22c6f)
;
var marker_a1915d98c2be422aac390173352a6e56 = L.marker(
[-31.195411, 24.960055],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_8c1b7269a8af46c1be6631688f61ed87 = L.popup({maxWidth: '100%'
});
var html_84a68a5615ef472c972385a7cdbfc085 = $(`<div id="html_84a68a5615ef472c972385a7cdbfc085" style="width: 100.0%; height: 100.0%;">Graveyard 2017-08-14</div>`)[0];
popup_8c1b7269a8af46c1be6631688f61ed87.setContent(html_84a68a5615ef472c972385a7cdbfc085);
marker_a1915d98c2be422aac390173352a6e56.bindPopup(popup_8c1b7269a8af46c1be6631688f61ed87)
;
var marker_cd3fc29e9919456e9b6d59573b09c56e = L.marker(
[-31.86738, 24.552554],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_d44920f7ba734b7f9279e9fd7c1fdfbb = L.popup({maxWidth: '100%'
});
var html_160fe4f454d346edab1d04db613c3887 = $(`<div id="html_160fe4f454d346edab1d04db613c3887" style="width: 100.0%; height: 100.0%;">The Karoo Lamb 2017-08-14</div>`)[0];
popup_d44920f7ba734b7f9279e9fd7c1fdfbb.setContent(html_160fe4f454d346edab1d04db613c3887);
marker_cd3fc29e9919456e9b6d59573b09c56e.bindPopup(popup_d44920f7ba734b7f9279e9fd7c1fdfbb)
;
var marker_5384864677f54ed3891fefdc28edf36a = L.marker(
[-31.867108, 24.552388],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_931f18af7fd14e6ca6486f9c990863db = L.popup({maxWidth: '100%'
});
var html_c5b0bc2ca5414842a9b9df5c9ac87728 = $(`<div id="html_c5b0bc2ca5414842a9b9df5c9ac87728" style="width: 100.0%; height: 100.0%;">The Village Inn Restaurant & Karoo Kitchen 2017-08-14</div>`)[0];
popup_931f18af7fd14e6ca6486f9c990863db.setContent(html_c5b0bc2ca5414842a9b9df5c9ac87728);
marker_5384864677f54ed3891fefdc28edf36a.bindPopup(popup_931f18af7fd14e6ca6486f9c990863db)
;
var marker_ae0575d0f248435c816aacdb69ee2b87 = L.marker(
[-31.865883, 24.552184],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_b62646462fd6434a87a8bc4b01e6b1e8 = L.popup({maxWidth: '100%'
});
var html_5dd478ac657042f4a637228953f9e090 = $(`<div id="html_5dd478ac657042f4a637228953f9e090" style="width: 100.0%; height: 100.0%;">The Barn Restaurant & Pizzeria 2017-08-14</div>`)[0];
popup_b62646462fd6434a87a8bc4b01e6b1e8.setContent(html_5dd478ac657042f4a637228953f9e090);
marker_ae0575d0f248435c816aacdb69ee2b87.bindPopup(popup_b62646462fd6434a87a8bc4b01e6b1e8)
;
var marker_480b86ad151745e29e399ea67aa49e88 = L.marker(
[41.005386, 28.976826],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_f23bae958bb84acf85275a69c7fd8cad = L.popup({maxWidth: '100%'
});
var html_f776142c0ee84dc0817b21d47f545b1b = $(`<div id="html_f776142c0ee84dc0817b21d47f545b1b" style="width: 100.0%; height: 100.0%;">The Blue Mosque 2017-08-14</div>`)[0];
popup_f23bae958bb84acf85275a69c7fd8cad.setContent(html_f776142c0ee84dc0817b21d47f545b1b);
marker_480b86ad151745e29e399ea67aa49e88.bindPopup(popup_f23bae958bb84acf85275a69c7fd8cad)
;
var marker_216a33a81c3e4899b66c3f40bc9bb9eb = L.marker(
[41.008481, 28.979969],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_b5367b26bc484b04a313414406302b68 = L.popup({maxWidth: '100%'
});
var html_5bbd659386304b34890b90ee2f4ff3ae = $(`<div id="html_5bbd659386304b34890b90ee2f4ff3ae" style="width: 100.0%; height: 100.0%;">Hagia Sophia 2017-08-14</div>`)[0];
popup_b5367b26bc484b04a313414406302b68.setContent(html_5bbd659386304b34890b90ee2f4ff3ae);
marker_216a33a81c3e4899b66c3f40bc9bb9eb.bindPopup(popup_b5367b26bc484b04a313414406302b68)
;
var marker_3a3809493c694847b1f33cb043455fbb = L.marker(
[-34.035719, 23.048482],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_2eb681bd754248d88de312b4f11f0c95 = L.popup({maxWidth: '100%'
});
var html_2c523df9cf98436ea337a6c1e82e68e6 = $(`<div id="html_2c523df9cf98436ea337a6c1e82e68e6" style="width: 100.0%; height: 100.0%;">Knysna 2017-08-17</div>`)[0];
popup_2eb681bd754248d88de312b4f11f0c95.setContent(html_2c523df9cf98436ea337a6c1e82e68e6);
marker_3a3809493c694847b1f33cb043455fbb.bindPopup(popup_2eb681bd754248d88de312b4f11f0c95)
;
var marker_45c88d0f27224ec7b33677fd896a01b2 = L.marker(
[-34.041666, 23.0],
{
icon: new L.Icon.Default(),
}
).addTo(map_504439c94cef464db7be82fc9de12356);
var popup_b59ce1bad3a54648aff7c08c3b3a0953 = L.popup({maxWidth: '100%'
});
var html_62669fccc74e470ebdd4c7ee3d2d3e53 = $(`<div id="html_62669fccc74e470ebdd4c7ee3d2d3e53" style="width: 100.0%; height: 100.0%;">Belvedere 2017-08-20</div>`)[0];
popup_b59ce1bad3a54648aff7c08c3b3a0953.setContent(html_62669fccc74e470ebdd4c7ee3d2d3e53);