-
Notifications
You must be signed in to change notification settings - Fork 0
/
2018.html
5332 lines (2804 loc) · 189 KB
/
2018.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_341edbfca8ba4e5ebc9fa5d06bbd66f2 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_341edbfca8ba4e5ebc9fa5d06bbd66f2" ></div>
</body>
<script>
var bounds = null;
var map_341edbfca8ba4e5ebc9fa5d06bbd66f2 = L.map(
'map_341edbfca8ba4e5ebc9fa5d06bbd66f2', {
center: [44, 51],
zoom: 5,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_80d0096d425b46e3a59e7ca4bdab138f = 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_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var marker_b3d430d38c974d31b723c11a13153fc8 = L.marker(
[51.128325, 71.422369],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_06638428e26347cfaf5fd936dd1b0869 = L.popup({maxWidth: '100%'
});
var html_f37deb26f96047b48383797a2d8abfb3 = $(`<div id="html_f37deb26f96047b48383797a2d8abfb3" style="width: 100.0%; height: 100.0%;">Северное Cияние 2018-06-26</div>`)[0];
popup_06638428e26347cfaf5fd936dd1b0869.setContent(html_f37deb26f96047b48383797a2d8abfb3);
marker_b3d430d38c974d31b723c11a13153fc8.bindPopup(popup_06638428e26347cfaf5fd936dd1b0869)
;
var marker_395d16549a4f45b2bcf8914ca4c359e6 = L.marker(
[43.247484, 76.964214],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_c8415b1505fd4e9180b04ce9f9b1b58e = L.popup({maxWidth: '100%'
});
var html_b4f16d2d31ff43c7b00e5493d6932f63 = $(`<div id="html_b4f16d2d31ff43c7b00e5493d6932f63" style="width: 100.0%; height: 100.0%;">Guest House on Sadovaya 2018-06-26</div>`)[0];
popup_c8415b1505fd4e9180b04ce9f9b1b58e.setContent(html_b4f16d2d31ff43c7b00e5493d6932f63);
marker_395d16549a4f45b2bcf8914ca4c359e6.bindPopup(popup_c8415b1505fd4e9180b04ce9f9b1b58e)
;
var marker_bd141ef0770c45e5ab71829e4326ccda = L.marker(
[43.238564, 76.945441],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_c4fc71595ed04e8ca73f9cbb1b21ebc9 = L.popup({maxWidth: '100%'
});
var html_222458f9a10f4016b8496d622a88fb6d = $(`<div id="html_222458f9a10f4016b8496d622a88fb6d" style="width: 100.0%; height: 100.0%;">Монумент независимости Казахстана 2018-06-27</div>`)[0];
popup_c4fc71595ed04e8ca73f9cbb1b21ebc9.setContent(html_222458f9a10f4016b8496d622a88fb6d);
marker_bd141ef0770c45e5ab71829e4326ccda.bindPopup(popup_c4fc71595ed04e8ca73f9cbb1b21ebc9)
;
var marker_30054478634f4ea195fd618a344e9b65 = L.marker(
[42.875476, 74.589029],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_96a65d0a9ded4252a91d226acb6e376f = L.popup({maxWidth: '100%'
});
var html_4e0082b31e7c4866b618d7461281a17f = $(`<div id="html_4e0082b31e7c4866b618d7461281a17f" style="width: 100.0%; height: 100.0%;">Chilipeppers 2018-06-28</div>`)[0];
popup_96a65d0a9ded4252a91d226acb6e376f.setContent(html_4e0082b31e7c4866b618d7461281a17f);
marker_30054478634f4ea195fd618a344e9b65.bindPopup(popup_96a65d0a9ded4252a91d226acb6e376f)
;
var marker_de0f6cfa3b5a4c22ab13cbf47f35bf64 = L.marker(
[42.875936, 74.593997],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_1c6cf4e5c0bb4c19a84cfc528cb40fa1 = L.popup({maxWidth: '100%'
});
var html_593a5023892d408786f07c48e06d1b3a = $(`<div id="html_593a5023892d408786f07c48e06d1b3a" style="width: 100.0%; height: 100.0%;">Vinoteka 2018-06-29</div>`)[0];
popup_1c6cf4e5c0bb4c19a84cfc528cb40fa1.setContent(html_593a5023892d408786f07c48e06d1b3a);
marker_de0f6cfa3b5a4c22ab13cbf47f35bf64.bindPopup(popup_1c6cf4e5c0bb4c19a84cfc528cb40fa1)
;
var marker_58ef607ed7ca4758abcd183553f5e3d8 = L.marker(
[42.880433, 74.589928],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_afe60411ca824f098e94d99fee6bd173 = L.popup({maxWidth: '100%'
});
var html_116af7aa81264b40819d762f03ceaef8 = $(`<div id="html_116af7aa81264b40819d762f03ceaef8" style="width: 100.0%; height: 100.0%;">pur:pur 2018-06-29</div>`)[0];
popup_afe60411ca824f098e94d99fee6bd173.setContent(html_116af7aa81264b40819d762f03ceaef8);
marker_58ef607ed7ca4758abcd183553f5e3d8.bindPopup(popup_afe60411ca824f098e94d99fee6bd173)
;
var marker_7f23ebb45182473abb59451c8e482aa8 = L.marker(
[42.8789, 74.571091],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_a762cace15f24efbbfa87d3fecf4e408 = L.popup({maxWidth: '100%'
});
var html_ef13d964b2dd49d9917fc514947171a2 = $(`<div id="html_ef13d964b2dd49d9917fc514947171a2" style="width: 100.0%; height: 100.0%;">Viva Guesthouse Bishkek 2018-06-30</div>`)[0];
popup_a762cace15f24efbbfa87d3fecf4e408.setContent(html_ef13d964b2dd49d9917fc514947171a2);
marker_7f23ebb45182473abb59451c8e482aa8.bindPopup(popup_a762cace15f24efbbfa87d3fecf4e408)
;
var marker_28e1d7ebddc040a19a4cdf844038ba65 = L.marker(
[42.490572, 78.40684],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_5f79ad6285f24b8ebd1ff23a1bf260d5 = L.popup({maxWidth: '100%'
});
var html_46e6155872e448a98e67af250fdf2741 = $(`<div id="html_46e6155872e448a98e67af250fdf2741" style="width: 100.0%; height: 100.0%;">Teskeys Guest House 2018-06-30</div>`)[0];
popup_5f79ad6285f24b8ebd1ff23a1bf260d5.setContent(html_46e6155872e448a98e67af250fdf2741);
marker_28e1d7ebddc040a19a4cdf844038ba65.bindPopup(popup_5f79ad6285f24b8ebd1ff23a1bf260d5)
;
var marker_e3b2da001048407783134952d9b33c7c = L.marker(
[42.488008, 78.403659],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_102a275a99ff4984810c9736167d159b = L.popup({maxWidth: '100%'
});
var html_b2eefa52d8d14a7c931f13295202364d = $(`<div id="html_b2eefa52d8d14a7c931f13295202364d" style="width: 100.0%; height: 100.0%;">Lighthouse Karakol 2018-07-01</div>`)[0];
popup_102a275a99ff4984810c9736167d159b.setContent(html_b2eefa52d8d14a7c931f13295202364d);
marker_e3b2da001048407783134952d9b33c7c.bindPopup(popup_102a275a99ff4984810c9736167d159b)
;
var marker_0ffc9c051e8b4eb3b55378696d75e4a6 = L.marker(
[42.876482, 74.597843],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_32821a28878845ed920353e2c191fb64 = L.popup({maxWidth: '100%'
});
var html_349178a475b343239bde54dc1e7aac64 = $(`<div id="html_349178a475b343239bde54dc1e7aac64" style="width: 100.0%; height: 100.0%;">кафе Баласагын 2018-07-02</div>`)[0];
popup_32821a28878845ed920353e2c191fb64.setContent(html_349178a475b343239bde54dc1e7aac64);
marker_0ffc9c051e8b4eb3b55378696d75e4a6.bindPopup(popup_32821a28878845ed920353e2c191fb64)
;
var marker_a78b7fc81942431da20c3558668a515f = L.marker(
[40.545936, 72.800111],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_9a7348028cef4dc2bef5749622be1509 = L.popup({maxWidth: '100%'
});
var html_1f3f037c54cd4347ab3b2420ba3ad415 = $(`<div id="html_1f3f037c54cd4347ab3b2420ba3ad415" style="width: 100.0%; height: 100.0%;">Osh Guesthouse 2018-07-03</div>`)[0];
popup_9a7348028cef4dc2bef5749622be1509.setContent(html_1f3f037c54cd4347ab3b2420ba3ad415);
marker_a78b7fc81942431da20c3558668a515f.bindPopup(popup_9a7348028cef4dc2bef5749622be1509)
;
var marker_f7810ad5457f415d9e20139b94c1a659 = L.marker(
[40.531241, 72.796828],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_6606feab204047d5b423ba6ec280b26c = L.popup({maxWidth: '100%'
});
var html_8cef7e6a488f472ca6316f8e6e84be63 = $(`<div id="html_8cef7e6a488f472ca6316f8e6e84be63" style="width: 100.0%; height: 100.0%;">Царский Двор 2018-07-03</div>`)[0];
popup_6606feab204047d5b423ba6ec280b26c.setContent(html_8cef7e6a488f472ca6316f8e6e84be63);
marker_f7810ad5457f415d9e20139b94c1a659.bindPopup(popup_6606feab204047d5b423ba6ec280b26c)
;
var marker_d5cc5fb58d3c4cb08a871a58b838bdd4 = L.marker(
[39.01252, 73.559965],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_d84c1aa39f684aca8e576fe7bb34211f = L.popup({maxWidth: '100%'
});
var html_049c241921764955ad2210e344aa384d = $(`<div id="html_049c241921764955ad2210e344aa384d" style="width: 100.0%; height: 100.0%;">Қарокӯл 2018-07-04</div>`)[0];
popup_d84c1aa39f684aca8e576fe7bb34211f.setContent(html_049c241921764955ad2210e344aa384d);
marker_d5cc5fb58d3c4cb08a871a58b838bdd4.bindPopup(popup_d84c1aa39f684aca8e576fe7bb34211f)
;
var marker_051682e103a0405abef956eae1c3fdb9 = L.marker(
[38.170956, 73.966883],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_749257bb13304fcb97cef801f5c796bb = L.popup({maxWidth: '100%'
});
var html_449f0981190d46a28f2c9b671eaacf3d = $(`<div id="html_449f0981190d46a28f2c9b671eaacf3d" style="width: 100.0%; height: 100.0%;">Мурғоб 2018-07-04</div>`)[0];
popup_749257bb13304fcb97cef801f5c796bb.setContent(html_449f0981190d46a28f2c9b671eaacf3d);
marker_051682e103a0405abef956eae1c3fdb9.bindPopup(popup_749257bb13304fcb97cef801f5c796bb)
;
var marker_2b9ad4cf3e9b46549c406ff34a520a63 = L.marker(
[37.721919, 72.961642],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_1485721c58284724aca5523c5fc70358 = L.popup({maxWidth: '100%'
});
var html_ed2d4531cb424492a2535fddac4f3a16 = $(`<div id="html_ed2d4531cb424492a2535fddac4f3a16" style="width: 100.0%; height: 100.0%;">Булункул (Bulunkul) 2018-07-04</div>`)[0];
popup_1485721c58284724aca5523c5fc70358.setContent(html_ed2d4531cb424492a2535fddac4f3a16);
marker_2b9ad4cf3e9b46549c406ff34a520a63.bindPopup(popup_1485721c58284724aca5523c5fc70358)
;
var marker_e96a6d89d14c4144a57f59c9c4805426 = L.marker(
[36.963015, 72.268763],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_998e1ae372164d429c00403471e9c2e1 = L.popup({maxWidth: '100%'
});
var html_979c57870c9f4741af137dd62964e3d5 = $(`<div id="html_979c57870c9f4741af137dd62964e3d5" style="width: 100.0%; height: 100.0%;">Yamchun 2018-07-04</div>`)[0];
popup_998e1ae372164d429c00403471e9c2e1.setContent(html_979c57870c9f4741af137dd62964e3d5);
marker_e96a6d89d14c4144a57f59c9c4805426.bindPopup(popup_998e1ae372164d429c00403471e9c2e1)
;
var marker_4b5d4d2ae4044adbae335c4dc798e4e4 = L.marker(
[37.490369, 71.549325],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_f86639c5d08f46378263bd58b86f031b = L.popup({maxWidth: '100%'
});
var html_ac604cf6fdaa4344861b7c9346838dd2 = $(`<div id="html_ac604cf6fdaa4344861b7c9346838dd2" style="width: 100.0%; height: 100.0%;">Хоруғ 2018-07-04</div>`)[0];
popup_f86639c5d08f46378263bd58b86f031b.setContent(html_ac604cf6fdaa4344861b7c9346838dd2);
marker_4b5d4d2ae4044adbae335c4dc798e4e4.bindPopup(popup_f86639c5d08f46378263bd58b86f031b)
;
var marker_6f2bc025cbba4f82ac04b65a3638beb1 = L.marker(
[40.543154, 72.792432],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_9bbd074d50aa4840b0f1550fac73f5eb = L.popup({maxWidth: '100%'
});
var html_f13531ea72e04a569bda9fa238e8c7e3 = $(`<div id="html_f13531ea72e04a569bda9fa238e8c7e3" style="width: 100.0%; height: 100.0%;">Bike shop corner at bazar 2018-07-04</div>`)[0];
popup_9bbd074d50aa4840b0f1550fac73f5eb.setContent(html_f13531ea72e04a569bda9fa238e8c7e3);
marker_6f2bc025cbba4f82ac04b65a3638beb1.bindPopup(popup_9bbd074d50aa4840b0f1550fac73f5eb)
;
var marker_9baa9e9b298e4435a1d83a06d59abac2 = L.marker(
[40.535868, 72.80855],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_9f3ddf085f884812a4693a80535e9de9 = L.popup({maxWidth: '100%'
});
var html_44561c4a70fc4beb9a516556f047b55d = $(`<div id="html_44561c4a70fc4beb9a516556f047b55d" style="width: 100.0%; height: 100.0%;">Гипермаркет "ФРУНЗЕ" 2018-07-04</div>`)[0];
popup_9f3ddf085f884812a4693a80535e9de9.setContent(html_44561c4a70fc4beb9a516556f047b55d);
marker_9baa9e9b298e4435a1d83a06d59abac2.bindPopup(popup_9f3ddf085f884812a4693a80535e9de9)
;
var marker_4654d176d02d4bb6b15c4627ea7946ea = L.marker(
[39.785466, 73.222674],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_e27057fadae64147a8b7e61d7a203391 = L.popup({maxWidth: '100%'
});
var html_075de6f720384e0da5b8a08623c3d75a = $(`<div id="html_075de6f720384e0da5b8a08623c3d75a" style="width: 100.0%; height: 100.0%;">Good bread and cool valley 2018-07-05</div>`)[0];
popup_e27057fadae64147a8b7e61d7a203391.setContent(html_075de6f720384e0da5b8a08623c3d75a);
marker_4654d176d02d4bb6b15c4627ea7946ea.bindPopup(popup_e27057fadae64147a8b7e61d7a203391)
;
var marker_3b59bd2bfc1f4ccc8d6b02d082e2e826 = L.marker(
[39.726788, 73.248145],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_acec7fd3c06642589016936b26fcd4fd = L.popup({maxWidth: '100%'
});
var html_5444ebd6653444daa000f4e8a3cd4e60 = $(`<div id="html_5444ebd6653444daa000f4e8a3cd4e60" style="width: 100.0%; height: 100.0%;">Кафе Акун 2018-07-05</div>`)[0];
popup_acec7fd3c06642589016936b26fcd4fd.setContent(html_5444ebd6653444daa000f4e8a3cd4e60);
marker_3b59bd2bfc1f4ccc8d6b02d082e2e826.bindPopup(popup_acec7fd3c06642589016936b26fcd4fd)
;
var marker_7c508ea8c7a04d5a83b7e1c5436dc966 = L.marker(
[39.730812, 73.246619],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_21e8406bad6d44edb69917d35b4908e9 = L.popup({maxWidth: '100%'
});
var html_502da60032f240db951ab7365f3e4708 = $(`<div id="html_502da60032f240db951ab7365f3e4708" style="width: 100.0%; height: 100.0%;">My Position 2018-07-05</div>`)[0];
popup_21e8406bad6d44edb69917d35b4908e9.setContent(html_502da60032f240db951ab7365f3e4708);
marker_7c508ea8c7a04d5a83b7e1c5436dc966.bindPopup(popup_21e8406bad6d44edb69917d35b4908e9)
;
var marker_b11b89225ef54f80a0d3479fda1baad4 = L.marker(
[39.014073, 73.565947],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_20b6379532a841f897b001c5d363281a = L.popup({maxWidth: '100%'
});
var html_643eb7296c8a431b915155666a4634cc = $(`<div id="html_643eb7296c8a431b915155666a4634cc" style="width: 100.0%; height: 100.0%;">проживание в семье и Юрт пребывания 2018-07-06</div>`)[0];
popup_20b6379532a841f897b001c5d363281a.setContent(html_643eb7296c8a431b915155666a4634cc);
marker_b11b89225ef54f80a0d3479fda1baad4.bindPopup(popup_20b6379532a841f897b001c5d363281a)
;
var marker_1bfd84d39b254d549bcc4caa29cfaaf6 = L.marker(
[38.178923, 73.976037],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_cb75daee5a8f4f4286752ce992353fdf = L.popup({maxWidth: '100%'
});
var html_7fbfe6e539834a95afe9c3e8e8edc3d2 = $(`<div id="html_7fbfe6e539834a95afe9c3e8e8edc3d2" style="width: 100.0%; height: 100.0%;">My Position 2018-07-06</div>`)[0];
popup_cb75daee5a8f4f4286752ce992353fdf.setContent(html_7fbfe6e539834a95afe9c3e8e8edc3d2);
marker_1bfd84d39b254d549bcc4caa29cfaaf6.bindPopup(popup_cb75daee5a8f4f4286752ce992353fdf)
;
var marker_02766dfb76264f599da7b9d527a823a6 = L.marker(
[37.052342, 72.67537],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_a8aaeebc42634150a1c1f6607b01fb4a = L.popup({maxWidth: '100%'
});
var html_afcd8257bdcb4e1eb5663abd8b0e05e8 = $(`<div id="html_afcd8257bdcb4e1eb5663abd8b0e05e8" style="width: 100.0%; height: 100.0%;">Лангар 2018-07-07</div>`)[0];
popup_a8aaeebc42634150a1c1f6607b01fb4a.setContent(html_afcd8257bdcb4e1eb5663abd8b0e05e8);
marker_02766dfb76264f599da7b9d527a823a6.bindPopup(popup_a8aaeebc42634150a1c1f6607b01fb4a)
;
var marker_71d4d0b29af246048ee9c08b3153e1f2 = L.marker(
[37.705745, 72.946209],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_c282ecbb50194bb6bc4accce90a9904b = L.popup({maxWidth: '100%'
});
var html_4efb620c44b8447aa7631e587c74d81e = $(`<div id="html_4efb620c44b8447aa7631e587c74d81e" style="width: 100.0%; height: 100.0%;">Gebäude 2018-07-07</div>`)[0];
popup_c282ecbb50194bb6bc4accce90a9904b.setContent(html_4efb620c44b8447aa7631e587c74d81e);
marker_71d4d0b29af246048ee9c08b3153e1f2.bindPopup(popup_c282ecbb50194bb6bc4accce90a9904b)
;
var marker_1824b192426d428aa451ba71ecb0c5f5 = L.marker(
[39.767566, 64.423128],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_ab0f0bfd78534314acf1c41fcf28bfbd = L.popup({maxWidth: '100%'
});
var html_7735f61c06214164a9fc8eadbb8c28a5 = $(`<div id="html_7735f61c06214164a9fc8eadbb8c28a5" style="width: 100.0%; height: 100.0%;">Buxoro 2018-07-07</div>`)[0];
popup_ab0f0bfd78534314acf1c41fcf28bfbd.setContent(html_7735f61c06214164a9fc8eadbb8c28a5);
marker_1824b192426d428aa451ba71ecb0c5f5.bindPopup(popup_ab0f0bfd78534314acf1c41fcf28bfbd)
;
var marker_03026c7579954489908bcf1c6fa81067 = L.marker(
[41.377698, 60.362005],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_7b77e4c400124f85a856fa1894708123 = L.popup({maxWidth: '100%'
});
var html_d66ed5d3b8894a4da5c501ab5607d04a = $(`<div id="html_d66ed5d3b8894a4da5c501ab5607d04a" style="width: 100.0%; height: 100.0%;">Xiva 2018-07-07</div>`)[0];
popup_7b77e4c400124f85a856fa1894708123.setContent(html_d66ed5d3b8894a4da5c501ab5607d04a);
marker_03026c7579954489908bcf1c6fa81067.bindPopup(popup_7b77e4c400124f85a856fa1894708123)
;
var marker_1d1e437a94a143218fc9b411aa372e50 = L.marker(
[37.047442, 72.665572],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_89dd1e77c2e64e8691aea92f5cda6d6f = L.popup({maxWidth: '100%'
});
var html_41fc54c4475f401ba58aa88aa222ef62 = $(`<div id="html_41fc54c4475f401ba58aa88aa222ef62" style="width: 100.0%; height: 100.0%;">Nigina Guest house Langar 2018-07-07</div>`)[0];
popup_89dd1e77c2e64e8691aea92f5cda6d6f.setContent(html_41fc54c4475f401ba58aa88aa222ef62);
marker_1d1e437a94a143218fc9b411aa372e50.bindPopup(popup_89dd1e77c2e64e8691aea92f5cda6d6f)
;
var marker_e75ace8ca6b0462fa24b412c421f62a2 = L.marker(
[38.45413, 70.78864],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_f9eaa577b21e46498f1112abeb4b1082 = L.popup({maxWidth: '100%'
});
var html_a9391df30c384f79b40f5371965b4d69 = $(`<div id="html_a9391df30c384f79b40f5371965b4d69" style="width: 100.0%; height: 100.0%;">Қалъаи Хумб 2018-07-08</div>`)[0];
popup_f9eaa577b21e46498f1112abeb4b1082.setContent(html_a9391df30c384f79b40f5371965b4d69);
marker_e75ace8ca6b0462fa24b412c421f62a2.bindPopup(popup_f9eaa577b21e46498f1112abeb4b1082)
;
var marker_07b5a898532849ed9c7d2fc3d1dbba05 = L.marker(
[36.140807, -5.3541403],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_632d70dd68eb4905a45f448a1ae8526f = L.popup({maxWidth: '100%'
});
var html_359655039d9c44ddb5230740b934712f = $(`<div id="html_359655039d9c44ddb5230740b934712f" style="width: 100.0%; height: 100.0%;">Gibraltar 2018-07-08</div>`)[0];
popup_632d70dd68eb4905a45f448a1ae8526f.setContent(html_359655039d9c44ddb5230740b934712f);
marker_07b5a898532849ed9c7d2fc3d1dbba05.bindPopup(popup_632d70dd68eb4905a45f448a1ae8526f)
;
var marker_d929c3ce2dc04724bcb939fd9c0c2b42 = L.marker(
[36.726815, 71.614224],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_c042541c2fea4ef89deae3fd7bd48570 = L.popup({maxWidth: '100%'
});
var html_b99fe26e1ed44e55a068d412d14ca8cc = $(`<div id="html_b99fe26e1ed44e55a068d412d14ca8cc" style="width: 100.0%; height: 100.0%;">Ишкошим 2018-07-09</div>`)[0];
popup_c042541c2fea4ef89deae3fd7bd48570.setContent(html_b99fe26e1ed44e55a068d412d14ca8cc);
marker_d929c3ce2dc04724bcb939fd9c0c2b42.bindPopup(popup_c042541c2fea4ef89deae3fd7bd48570)
;
var marker_80c3c1986a6848fb9abfeac1098818ef = L.marker(
[38.565475, 68.812291],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_77c4f9d71a3a42579b7b540ebf158130 = L.popup({maxWidth: '100%'
});
var html_458de286bafe47ba953261d67d036b8e = $(`<div id="html_458de286bafe47ba953261d67d036b8e" style="width: 100.0%; height: 100.0%;">Green House Hostel 2018-07-12</div>`)[0];
popup_77c4f9d71a3a42579b7b540ebf158130.setContent(html_458de286bafe47ba953261d67d036b8e);
marker_80c3c1986a6848fb9abfeac1098818ef.bindPopup(popup_77c4f9d71a3a42579b7b540ebf158130)
;
var marker_29053553abb14007bad8ba2e4649fa53 = L.marker(
[38.561933, 68.814536],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_019e5e73826144f598714e99d16037af = L.popup({maxWidth: '100%'
});
var html_16c2d9c8f78042aeab9898175467515b = $(`<div id="html_16c2d9c8f78042aeab9898175467515b" style="width: 100.0%; height: 100.0%;">Europa.tj 2018-07-12</div>`)[0];
popup_019e5e73826144f598714e99d16037af.setContent(html_16c2d9c8f78042aeab9898175467515b);
marker_29053553abb14007bad8ba2e4649fa53.bindPopup(popup_019e5e73826144f598714e99d16037af)
;
var marker_ab614d0830884cae85e3ed8a2e031c2a = L.marker(
[41.379203, 60.362375],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_a9446212b84e4cf1ad4ceb84c3e1a9d3 = L.popup({maxWidth: '100%'
});
var html_2fe6fecb030a45c5ae2de47c1a313dd2 = $(`<div id="html_2fe6fecb030a45c5ae2de47c1a313dd2" style="width: 100.0%; height: 100.0%;">Islambek 2018-07-12</div>`)[0];
popup_a9446212b84e4cf1ad4ceb84c3e1a9d3.setContent(html_2fe6fecb030a45c5ae2de47c1a313dd2);
marker_ab614d0830884cae85e3ed8a2e031c2a.bindPopup(popup_a9446212b84e4cf1ad4ceb84c3e1a9d3)
;
var marker_9431acdd021f4b6cb50a3781d23e397e = L.marker(
[39.659001, 66.963496],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_b7281da8580443069b11b70e598473ce = L.popup({maxWidth: '100%'
});
var html_9f217780cec74481956ad8ac9c9ef9bb = $(`<div id="html_9f217780cec74481956ad8ac9c9ef9bb" style="width: 100.0%; height: 100.0%;">Besh Chinor 2018-07-14</div>`)[0];
popup_b7281da8580443069b11b70e598473ce.setContent(html_9f217780cec74481956ad8ac9c9ef9bb);
marker_9431acdd021f4b6cb50a3781d23e397e.bindPopup(popup_b7281da8580443069b11b70e598473ce)
;
var marker_fa7b35d8be52448a866ecee96fa1e375 = L.marker(
[39.650105, 66.977956],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_6746b837cfdd4775b1b9de0cb29b0a75 = L.popup({maxWidth: '100%'
});
var html_226ebd8cfad7415195ae98ad0fd0aff5 = $(`<div id="html_226ebd8cfad7415195ae98ad0fd0aff5" style="width: 100.0%; height: 100.0%;">Jahongir B&B 2018-07-14</div>`)[0];
popup_6746b837cfdd4775b1b9de0cb29b0a75.setContent(html_226ebd8cfad7415195ae98ad0fd0aff5);
marker_fa7b35d8be52448a866ecee96fa1e375.bindPopup(popup_6746b837cfdd4775b1b9de0cb29b0a75)
;
var marker_7f6db9de83b543b1ae1f9c7803a74100 = L.marker(
[39.662569, 66.987966],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_80c98b2741ee4d9fb885c8f0c8971417 = L.popup({maxWidth: '100%'
});
var html_fae52b0ae07d40adbd16b2380577f787 = $(`<div id="html_fae52b0ae07d40adbd16b2380577f787" style="width: 100.0%; height: 100.0%;">Мемориальный комплекс Шахи-Зинда 2018-07-14</div>`)[0];
popup_80c98b2741ee4d9fb885c8f0c8971417.setContent(html_fae52b0ae07d40adbd16b2380577f787);
marker_7f6db9de83b543b1ae1f9c7803a74100.bindPopup(popup_80c98b2741ee4d9fb885c8f0c8971417)
;
var marker_4bb6c2983a41495786d35c7d37e80058 = L.marker(
[39.649519, 66.963493],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_1f92929083fe46f8921c3bf3a7b119bd = L.popup({maxWidth: '100%'
});
var html_584946432b414f0cb6efac22c1fb7b8f = $(`<div id="html_584946432b414f0cb6efac22c1fb7b8f" style="width: 100.0%; height: 100.0%;">Unknown Place 2018-07-14</div>`)[0];
popup_1f92929083fe46f8921c3bf3a7b119bd.setContent(html_584946432b414f0cb6efac22c1fb7b8f);
marker_4bb6c2983a41495786d35c7d37e80058.bindPopup(popup_1f92929083fe46f8921c3bf3a7b119bd)
;
var marker_385b9bfcd4994587b9653dde507db338 = L.marker(
[39.653011, 66.972725],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_3cdf87c5a9604d2f9fabca821226a33a = L.popup({maxWidth: '100%'
});
var html_823201cb58704325a74258cf67f1abc8 = $(`<div id="html_823201cb58704325a74258cf67f1abc8" style="width: 100.0%; height: 100.0%;">Ucell 2018-07-14</div>`)[0];
popup_3cdf87c5a9604d2f9fabca821226a33a.setContent(html_823201cb58704325a74258cf67f1abc8);
marker_385b9bfcd4994587b9653dde507db338.bindPopup(popup_3cdf87c5a9604d2f9fabca821226a33a)
;
var marker_a4c82f254d264f939b65e17753dfcb22 = L.marker(
[39.660754, 66.980038],
{
icon: new L.Icon.Default(),
}
).addTo(map_341edbfca8ba4e5ebc9fa5d06bbd66f2);
var popup_62689619ed984f3e852683e9cc65ce3c = L.popup({maxWidth: '100%'
});
var html_d53513b6d6b646728740b4c5b84f4988 = $(`<div id="html_d53513b6d6b646728740b4c5b84f4988" style="width: 100.0%; height: 100.0%;">Bibi Xanom 2018-07-14</div>`)[0];
popup_62689619ed984f3e852683e9cc65ce3c.setContent(html_d53513b6d6b646728740b4c5b84f4988);