forked from spyros-briakos/Airbnb-Data-Exploration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
9563 lines (4550 loc) · 348 KB
/
map.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_431498d3b19b4aca8bfc452c3834da47 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_431498d3b19b4aca8bfc452c3834da47" ></div>
</body>
<script>
var map_431498d3b19b4aca8bfc452c3834da47 = L.map(
"map_431498d3b19b4aca8bfc452c3834da47",
{
center: [37.98888, 23.76431],
crs: L.CRS.EPSG3857,
zoom: 14,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_357534daacfb4a0197ba4930c75c67b9 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "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_431498d3b19b4aca8bfc452c3834da47);
var marker_0628e97cb49b406e8423b2352f0285ef = L.marker(
[37.98888, 23.76431],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_11116244c4e84a828c46775647c47110 = L.popup({"maxWidth": "100%"});
var html_951918e8590d4bb58048fdf32b086e04 = $(`<div id="html_951918e8590d4bb58048fdf32b086e04" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_11116244c4e84a828c46775647c47110.setContent(html_951918e8590d4bb58048fdf32b086e04);
marker_0628e97cb49b406e8423b2352f0285ef.bindPopup(popup_11116244c4e84a828c46775647c47110)
;
var marker_e6ba82934e4544d6b05a3b6780fd8172 = L.marker(
[37.98843, 23.76345],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_6f134a1f894541f58b8b8f06585bcb41 = L.popup({"maxWidth": "100%"});
var html_34cd1d6883f94e29826826e0b71e0933 = $(`<div id="html_34cd1d6883f94e29826826e0b71e0933" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_6f134a1f894541f58b8b8f06585bcb41.setContent(html_34cd1d6883f94e29826826e0b71e0933);
marker_e6ba82934e4544d6b05a3b6780fd8172.bindPopup(popup_6f134a1f894541f58b8b8f06585bcb41)
;
var marker_5f7145eaf1c641788a78e9e4bfa207e7 = L.marker(
[37.98783, 23.76479],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_4486e2082a904b988810c9e96b142af0 = L.popup({"maxWidth": "100%"});
var html_4d2c95d5f2524b6d876d8f4d60418062 = $(`<div id="html_4d2c95d5f2524b6d876d8f4d60418062" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_4486e2082a904b988810c9e96b142af0.setContent(html_4d2c95d5f2524b6d876d8f4d60418062);
marker_5f7145eaf1c641788a78e9e4bfa207e7.bindPopup(popup_4486e2082a904b988810c9e96b142af0)
;
var marker_e7ac157781c24cb8818b1cc8964956f3 = L.marker(
[37.98861, 23.76422],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_5de8c19ef14440bd9251ad7b8be55545 = L.popup({"maxWidth": "100%"});
var html_d4b1e65ef94248a5862c96981b62b2bc = $(`<div id="html_d4b1e65ef94248a5862c96981b62b2bc" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_5de8c19ef14440bd9251ad7b8be55545.setContent(html_d4b1e65ef94248a5862c96981b62b2bc);
marker_e7ac157781c24cb8818b1cc8964956f3.bindPopup(popup_5de8c19ef14440bd9251ad7b8be55545)
;
var marker_b5334c96a42a4c308514735f83a2b287 = L.marker(
[37.9895, 23.76356],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_107d0eec74dd43c09ee3854ec3166731 = L.popup({"maxWidth": "100%"});
var html_554a1fb4acdf4d8bbec19807ac06a34c = $(`<div id="html_554a1fb4acdf4d8bbec19807ac06a34c" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_107d0eec74dd43c09ee3854ec3166731.setContent(html_554a1fb4acdf4d8bbec19807ac06a34c);
marker_b5334c96a42a4c308514735f83a2b287.bindPopup(popup_107d0eec74dd43c09ee3854ec3166731)
;
var marker_9bab1b10143d4d1aae3dbd2b02a90b79 = L.marker(
[37.98893, 23.76475],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_8398fe5afc2145e4ad0f7d6822531c18 = L.popup({"maxWidth": "100%"});
var html_158e04bc657944b4887468c97fce37ad = $(`<div id="html_158e04bc657944b4887468c97fce37ad" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_8398fe5afc2145e4ad0f7d6822531c18.setContent(html_158e04bc657944b4887468c97fce37ad);
marker_9bab1b10143d4d1aae3dbd2b02a90b79.bindPopup(popup_8398fe5afc2145e4ad0f7d6822531c18)
;
var marker_cc4dd96316ee4a5d8332511a00f89184 = L.marker(
[37.9768, 23.72924],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_ecc4e4700dca4651820c687f1d85add0 = L.popup({"maxWidth": "100%"});
var html_d8b8107d1b7a42908b1359d1843c669e = $(`<div id="html_d8b8107d1b7a42908b1359d1843c669e" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_ecc4e4700dca4651820c687f1d85add0.setContent(html_d8b8107d1b7a42908b1359d1843c669e);
marker_cc4dd96316ee4a5d8332511a00f89184.bindPopup(popup_ecc4e4700dca4651820c687f1d85add0)
;
var marker_47a0049cb0bd4cb993279702c4ab209e = L.marker(
[37.97962, 23.71589],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_545ec56dc3d2463c895ee1ea75cc7467 = L.popup({"maxWidth": "100%"});
var html_056e4bce2b5b4e41ae95a3ee2470d65e = $(`<div id="html_056e4bce2b5b4e41ae95a3ee2470d65e" style="width: 100.0%; height: 100.0%;">Private room</div>`)[0];
popup_545ec56dc3d2463c895ee1ea75cc7467.setContent(html_056e4bce2b5b4e41ae95a3ee2470d65e);
marker_47a0049cb0bd4cb993279702c4ab209e.bindPopup(popup_545ec56dc3d2463c895ee1ea75cc7467)
;
var marker_ae8b513a2b3d481f82c297dba9687dc3 = L.marker(
[37.99052, 23.76593],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_309957c6f0394f99bd1255dd5ba59489 = L.popup({"maxWidth": "100%"});
var html_0cc3a20a92bb494d9508cc3cb38a1fe6 = $(`<div id="html_0cc3a20a92bb494d9508cc3cb38a1fe6" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_309957c6f0394f99bd1255dd5ba59489.setContent(html_0cc3a20a92bb494d9508cc3cb38a1fe6);
marker_ae8b513a2b3d481f82c297dba9687dc3.bindPopup(popup_309957c6f0394f99bd1255dd5ba59489)
;
var marker_d21d57f4dd6049c490be34e2e5d69b20 = L.marker(
[37.97075, 23.74259],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_0df331c18acf43aba1dad1774073b408 = L.popup({"maxWidth": "100%"});
var html_d8b4d9de5fe44115b986e73e9ff362e0 = $(`<div id="html_d8b4d9de5fe44115b986e73e9ff362e0" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_0df331c18acf43aba1dad1774073b408.setContent(html_d8b4d9de5fe44115b986e73e9ff362e0);
marker_d21d57f4dd6049c490be34e2e5d69b20.bindPopup(popup_0df331c18acf43aba1dad1774073b408)
;
var marker_894739538cee4b82906eeb6028102739 = L.marker(
[37.97969000000001, 23.729],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_44d50d264be44724ab17c1c5fae1ea82 = L.popup({"maxWidth": "100%"});
var html_8824eca8ba1247718d367c96de699107 = $(`<div id="html_8824eca8ba1247718d367c96de699107" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_44d50d264be44724ab17c1c5fae1ea82.setContent(html_8824eca8ba1247718d367c96de699107);
marker_894739538cee4b82906eeb6028102739.bindPopup(popup_44d50d264be44724ab17c1c5fae1ea82)
;
var marker_5a919e935aac4799a65ed86d27759bde = L.marker(
[37.99674, 23.73838],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_45508a6294a8446b9d8d74cb9d5d959f = L.popup({"maxWidth": "100%"});
var html_83c55b211f17487082d3f7e4a6e6435b = $(`<div id="html_83c55b211f17487082d3f7e4a6e6435b" style="width: 100.0%; height: 100.0%;">Private room</div>`)[0];
popup_45508a6294a8446b9d8d74cb9d5d959f.setContent(html_83c55b211f17487082d3f7e4a6e6435b);
marker_5a919e935aac4799a65ed86d27759bde.bindPopup(popup_45508a6294a8446b9d8d74cb9d5d959f)
;
var marker_379aba0b05994160bf4d9d90c9b986ec = L.marker(
[38.00087, 23.72186],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_b1b26405e3c44bdb8884f65b1103b959 = L.popup({"maxWidth": "100%"});
var html_08a6fbe38acf41c3b683907f4844323e = $(`<div id="html_08a6fbe38acf41c3b683907f4844323e" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_b1b26405e3c44bdb8884f65b1103b959.setContent(html_08a6fbe38acf41c3b683907f4844323e);
marker_379aba0b05994160bf4d9d90c9b986ec.bindPopup(popup_b1b26405e3c44bdb8884f65b1103b959)
;
var marker_691f0d8f97224b6fa56bf9043b03dfc1 = L.marker(
[37.97692, 23.7304],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_11485e88731640e08ba039ae66ca98c3 = L.popup({"maxWidth": "100%"});
var html_5663e47ec2eb4fedb8be2cbf6ebcc660 = $(`<div id="html_5663e47ec2eb4fedb8be2cbf6ebcc660" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_11485e88731640e08ba039ae66ca98c3.setContent(html_5663e47ec2eb4fedb8be2cbf6ebcc660);
marker_691f0d8f97224b6fa56bf9043b03dfc1.bindPopup(popup_11485e88731640e08ba039ae66ca98c3)
;
var marker_d70f208b9bb94134a3a2f35ea1711fd7 = L.marker(
[37.96811, 23.74345],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_bc8f7135d04a46f39b5a8075930af655 = L.popup({"maxWidth": "100%"});
var html_c9977d95f62d4006a2c38d20da3e0d34 = $(`<div id="html_c9977d95f62d4006a2c38d20da3e0d34" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_bc8f7135d04a46f39b5a8075930af655.setContent(html_c9977d95f62d4006a2c38d20da3e0d34);
marker_d70f208b9bb94134a3a2f35ea1711fd7.bindPopup(popup_bc8f7135d04a46f39b5a8075930af655)
;
var marker_f9bbc3bb9fea418990482c659b582e8d = L.marker(
[37.99095, 23.72195],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_c1fe67fd6766472cb46d262799b7c0ed = L.popup({"maxWidth": "100%"});
var html_ba0379713486449fb6bc752fab38a02f = $(`<div id="html_ba0379713486449fb6bc752fab38a02f" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_c1fe67fd6766472cb46d262799b7c0ed.setContent(html_ba0379713486449fb6bc752fab38a02f);
marker_f9bbc3bb9fea418990482c659b582e8d.bindPopup(popup_c1fe67fd6766472cb46d262799b7c0ed)
;
var marker_8f3817d73a6e4f2aaa6f60149c9d2f41 = L.marker(
[37.96543, 23.74025],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_71810c87766a4169b8507bcd86f1ed75 = L.popup({"maxWidth": "100%"});
var html_f7acce36fd0b438eb73a2bb4b9896f03 = $(`<div id="html_f7acce36fd0b438eb73a2bb4b9896f03" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_71810c87766a4169b8507bcd86f1ed75.setContent(html_f7acce36fd0b438eb73a2bb4b9896f03);
marker_8f3817d73a6e4f2aaa6f60149c9d2f41.bindPopup(popup_71810c87766a4169b8507bcd86f1ed75)
;
var marker_168e65eb2a9d491e9c88fa14dbb9218b = L.marker(
[37.99121, 23.75891],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_c3694de0109c4e33a0480496f6f2af27 = L.popup({"maxWidth": "100%"});
var html_3f91a89d251144108547bcbed81a874d = $(`<div id="html_3f91a89d251144108547bcbed81a874d" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_c3694de0109c4e33a0480496f6f2af27.setContent(html_3f91a89d251144108547bcbed81a874d);
marker_168e65eb2a9d491e9c88fa14dbb9218b.bindPopup(popup_c3694de0109c4e33a0480496f6f2af27)
;
var marker_c57eb0fe319b42ba94088cedba84648d = L.marker(
[38.00292, 23.73599],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_b78c834f59584fdb9bd9e6df236c109b = L.popup({"maxWidth": "100%"});
var html_b097243a5a7c4d788bb4edb22c9fbdfa = $(`<div id="html_b097243a5a7c4d788bb4edb22c9fbdfa" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_b78c834f59584fdb9bd9e6df236c109b.setContent(html_b097243a5a7c4d788bb4edb22c9fbdfa);
marker_c57eb0fe319b42ba94088cedba84648d.bindPopup(popup_b78c834f59584fdb9bd9e6df236c109b)
;
var marker_15eb9b4657b64cfdb8c4f7125bad936c = L.marker(
[37.99429, 23.70901],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_704b12e361864e3081f4aad2d96a1d94 = L.popup({"maxWidth": "100%"});
var html_b47dad010bc84061a0920b7154c34a9f = $(`<div id="html_b47dad010bc84061a0920b7154c34a9f" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_704b12e361864e3081f4aad2d96a1d94.setContent(html_b47dad010bc84061a0920b7154c34a9f);
marker_15eb9b4657b64cfdb8c4f7125bad936c.bindPopup(popup_704b12e361864e3081f4aad2d96a1d94)
;
var marker_9dc4ea016f04469aaddd7cd976e09391 = L.marker(
[38.00721, 23.73335],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_7cb30ff9f93e49d5b0960f81dae43e7e = L.popup({"maxWidth": "100%"});
var html_41be4e2384e04848bc672616d6891306 = $(`<div id="html_41be4e2384e04848bc672616d6891306" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_7cb30ff9f93e49d5b0960f81dae43e7e.setContent(html_41be4e2384e04848bc672616d6891306);
marker_9dc4ea016f04469aaddd7cd976e09391.bindPopup(popup_7cb30ff9f93e49d5b0960f81dae43e7e)
;
var marker_844168ab0b024f78b68624629d8d9314 = L.marker(
[37.96528, 23.72413],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_3b8ba4888a404ced80a1ecd8cfc4848f = L.popup({"maxWidth": "100%"});
var html_2317a3bf76de4216b05a48a33ff4e0e5 = $(`<div id="html_2317a3bf76de4216b05a48a33ff4e0e5" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_3b8ba4888a404ced80a1ecd8cfc4848f.setContent(html_2317a3bf76de4216b05a48a33ff4e0e5);
marker_844168ab0b024f78b68624629d8d9314.bindPopup(popup_3b8ba4888a404ced80a1ecd8cfc4848f)
;
var marker_f7ec787638884df7bf37efe05af45c7f = L.marker(
[37.96403, 23.74407],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_777619637bb94351936dcda170125f38 = L.popup({"maxWidth": "100%"});
var html_6a64e4821cb241069fc9680ddba4d779 = $(`<div id="html_6a64e4821cb241069fc9680ddba4d779" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_777619637bb94351936dcda170125f38.setContent(html_6a64e4821cb241069fc9680ddba4d779);
marker_f7ec787638884df7bf37efe05af45c7f.bindPopup(popup_777619637bb94351936dcda170125f38)
;
var marker_9f400793477a4529a6ebdf1fc77467da = L.marker(
[37.97447, 23.72917],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_7d6229ffd0e349b38ea8b6319a437287 = L.popup({"maxWidth": "100%"});
var html_5ec08306c85d4e7a87ddf22683a1984d = $(`<div id="html_5ec08306c85d4e7a87ddf22683a1984d" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_7d6229ffd0e349b38ea8b6319a437287.setContent(html_5ec08306c85d4e7a87ddf22683a1984d);
marker_9f400793477a4529a6ebdf1fc77467da.bindPopup(popup_7d6229ffd0e349b38ea8b6319a437287)
;
var marker_a6657bad4ac54001809928630052c7b4 = L.marker(
[37.99183, 23.7298],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_46d61d225aa14f578dc18a00c16493b7 = L.popup({"maxWidth": "100%"});
var html_a77a001aed8942d1a0cff442fd626c24 = $(`<div id="html_a77a001aed8942d1a0cff442fd626c24" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_46d61d225aa14f578dc18a00c16493b7.setContent(html_a77a001aed8942d1a0cff442fd626c24);
marker_a6657bad4ac54001809928630052c7b4.bindPopup(popup_46d61d225aa14f578dc18a00c16493b7)
;
var marker_7153d801329148c39fc30547cfdffdf6 = L.marker(
[37.98041, 23.73166],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_2473726ad931440192fb11680fa25bb6 = L.popup({"maxWidth": "100%"});
var html_a0fa1f9016d34094b0c2c67a0cc9666d = $(`<div id="html_a0fa1f9016d34094b0c2c67a0cc9666d" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_2473726ad931440192fb11680fa25bb6.setContent(html_a0fa1f9016d34094b0c2c67a0cc9666d);
marker_7153d801329148c39fc30547cfdffdf6.bindPopup(popup_2473726ad931440192fb11680fa25bb6)
;
var marker_e0c1a4ccf11c43d9bbf10fb5c97cf4d2 = L.marker(
[37.9726, 23.72536],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_20fd6032452440729e05263effe88263 = L.popup({"maxWidth": "100%"});
var html_cca64b680706439b81711f9ad67b736f = $(`<div id="html_cca64b680706439b81711f9ad67b736f" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_20fd6032452440729e05263effe88263.setContent(html_cca64b680706439b81711f9ad67b736f);
marker_e0c1a4ccf11c43d9bbf10fb5c97cf4d2.bindPopup(popup_20fd6032452440729e05263effe88263)
;
var marker_e4fe6d0f9f974acda8289ae7f716e841 = L.marker(
[37.97162, 23.74482],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_99a32231816b43819e3b625fe9acc34c = L.popup({"maxWidth": "100%"});
var html_392f810fe84f46c5a5a3e9b5c0c0c260 = $(`<div id="html_392f810fe84f46c5a5a3e9b5c0c0c260" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_99a32231816b43819e3b625fe9acc34c.setContent(html_392f810fe84f46c5a5a3e9b5c0c0c260);
marker_e4fe6d0f9f974acda8289ae7f716e841.bindPopup(popup_99a32231816b43819e3b625fe9acc34c)
;
var marker_55ae3d470f534e04b55f3f8df7edef0b = L.marker(
[38.00237, 23.74913],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_108a44c7a6024a90ab570dfff48d6356 = L.popup({"maxWidth": "100%"});
var html_36b388a8963a4174be00b69ac83d6075 = $(`<div id="html_36b388a8963a4174be00b69ac83d6075" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_108a44c7a6024a90ab570dfff48d6356.setContent(html_36b388a8963a4174be00b69ac83d6075);
marker_55ae3d470f534e04b55f3f8df7edef0b.bindPopup(popup_108a44c7a6024a90ab570dfff48d6356)
;
var marker_011460d2a12f41bb93e3834b1f756472 = L.marker(
[38.00128, 23.74832],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_31ca74cab0174ff4a92deb0fba4fba1c = L.popup({"maxWidth": "100%"});
var html_51f07c9cae03447ab89a8909e97d6a9a = $(`<div id="html_51f07c9cae03447ab89a8909e97d6a9a" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_31ca74cab0174ff4a92deb0fba4fba1c.setContent(html_51f07c9cae03447ab89a8909e97d6a9a);
marker_011460d2a12f41bb93e3834b1f756472.bindPopup(popup_31ca74cab0174ff4a92deb0fba4fba1c)
;
var marker_81b24e4e67e54aa9a07b890d346520d1 = L.marker(
[37.96828, 23.75031],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_7984de75d4c94e788b5835b2c5e89feb = L.popup({"maxWidth": "100%"});
var html_6ced15fe257843d28e11dc275e94972a = $(`<div id="html_6ced15fe257843d28e11dc275e94972a" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_7984de75d4c94e788b5835b2c5e89feb.setContent(html_6ced15fe257843d28e11dc275e94972a);
marker_81b24e4e67e54aa9a07b890d346520d1.bindPopup(popup_7984de75d4c94e788b5835b2c5e89feb)
;
var marker_86d41f04046b4715b70715ef4ec0ec48 = L.marker(
[37.97501, 23.74844],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_cba72b41c5674159bb923d2c60731a84 = L.popup({"maxWidth": "100%"});
var html_ae5f444a22864cd4a25543410438a202 = $(`<div id="html_ae5f444a22864cd4a25543410438a202" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_cba72b41c5674159bb923d2c60731a84.setContent(html_ae5f444a22864cd4a25543410438a202);
marker_86d41f04046b4715b70715ef4ec0ec48.bindPopup(popup_cba72b41c5674159bb923d2c60731a84)
;
var marker_79c4dd2c3a9f4aaeae52d43596955796 = L.marker(
[37.96849, 23.74206],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_cd6d409e08a34fd1bb00b9d40b3abaf4 = L.popup({"maxWidth": "100%"});
var html_3d80941ba84f4b3f8679e8bc340fb25c = $(`<div id="html_3d80941ba84f4b3f8679e8bc340fb25c" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_cd6d409e08a34fd1bb00b9d40b3abaf4.setContent(html_3d80941ba84f4b3f8679e8bc340fb25c);
marker_79c4dd2c3a9f4aaeae52d43596955796.bindPopup(popup_cd6d409e08a34fd1bb00b9d40b3abaf4)
;
var marker_309f62719f93432890240e345d51db90 = L.marker(
[37.97673, 23.739320000000006],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_be0ce3b9e9e842a0bbd6d5806f57d011 = L.popup({"maxWidth": "100%"});
var html_c5f7322b159d4cbeb54e5408ed31283e = $(`<div id="html_c5f7322b159d4cbeb54e5408ed31283e" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_be0ce3b9e9e842a0bbd6d5806f57d011.setContent(html_c5f7322b159d4cbeb54e5408ed31283e);
marker_309f62719f93432890240e345d51db90.bindPopup(popup_be0ce3b9e9e842a0bbd6d5806f57d011)
;
var marker_53a30cb7bbd644e9b9c4b94eb9d1f0d0 = L.marker(
[37.97684, 23.74206],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_2e2acc8556d74f1f82aa4caad1cc98dd = L.popup({"maxWidth": "100%"});
var html_df2f596e76ba446099d82c4ec19dbe1a = $(`<div id="html_df2f596e76ba446099d82c4ec19dbe1a" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_2e2acc8556d74f1f82aa4caad1cc98dd.setContent(html_df2f596e76ba446099d82c4ec19dbe1a);
marker_53a30cb7bbd644e9b9c4b94eb9d1f0d0.bindPopup(popup_2e2acc8556d74f1f82aa4caad1cc98dd)
;
var marker_463d023a650040cc812ef8e64d836c7a = L.marker(
[37.98652, 23.73528],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_077b024b91c44b6587ba66d725bfe8dd = L.popup({"maxWidth": "100%"});
var html_f6720f61f56c4471a67a84aaa8b4c5ad = $(`<div id="html_f6720f61f56c4471a67a84aaa8b4c5ad" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_077b024b91c44b6587ba66d725bfe8dd.setContent(html_f6720f61f56c4471a67a84aaa8b4c5ad);
marker_463d023a650040cc812ef8e64d836c7a.bindPopup(popup_077b024b91c44b6587ba66d725bfe8dd)
;
var marker_47376a6f0a13409eb6ff49423874c303 = L.marker(
[37.96791, 23.72933],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_a2e730a1e2a647d2aec9c20578f3bf17 = L.popup({"maxWidth": "100%"});
var html_0831e6c73d2841c6817de2f62604a53d = $(`<div id="html_0831e6c73d2841c6817de2f62604a53d" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_a2e730a1e2a647d2aec9c20578f3bf17.setContent(html_0831e6c73d2841c6817de2f62604a53d);
marker_47376a6f0a13409eb6ff49423874c303.bindPopup(popup_a2e730a1e2a647d2aec9c20578f3bf17)
;
var marker_1eee49cf22cc426b8cda941e3e9931b7 = L.marker(
[37.96648, 23.74561],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_b173e70d3b6e40089440fd495146b72a = L.popup({"maxWidth": "100%"});
var html_e487d0f1ce954547b2d7eba1da1b6ec6 = $(`<div id="html_e487d0f1ce954547b2d7eba1da1b6ec6" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_b173e70d3b6e40089440fd495146b72a.setContent(html_e487d0f1ce954547b2d7eba1da1b6ec6);
marker_1eee49cf22cc426b8cda941e3e9931b7.bindPopup(popup_b173e70d3b6e40089440fd495146b72a)
;
var marker_e8e88918b5644911b3872d5646e6dc23 = L.marker(
[38.00773, 23.7387],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_9b3d6dd2f2cc405888e9d0b6a7504b18 = L.popup({"maxWidth": "100%"});
var html_391d3120d45b49fba5cb81328cdec6ed = $(`<div id="html_391d3120d45b49fba5cb81328cdec6ed" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_9b3d6dd2f2cc405888e9d0b6a7504b18.setContent(html_391d3120d45b49fba5cb81328cdec6ed);
marker_e8e88918b5644911b3872d5646e6dc23.bindPopup(popup_9b3d6dd2f2cc405888e9d0b6a7504b18)
;
var marker_233b788f79e146c1b3773291fdd94447 = L.marker(
[37.97537, 23.73337],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_711fda569303488c8c984919f44cc2e1 = L.popup({"maxWidth": "100%"});
var html_aca93427668340cbbbec17087c470595 = $(`<div id="html_aca93427668340cbbbec17087c470595" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_711fda569303488c8c984919f44cc2e1.setContent(html_aca93427668340cbbbec17087c470595);
marker_233b788f79e146c1b3773291fdd94447.bindPopup(popup_711fda569303488c8c984919f44cc2e1)
;
var marker_40777d56a96e4505a3cab75ce7f535b6 = L.marker(
[37.97911, 23.70917],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_d9e2f47152ac4836a36dbd2689320796 = L.popup({"maxWidth": "100%"});
var html_205bf1b6d00b46ef97355f3b6615302b = $(`<div id="html_205bf1b6d00b46ef97355f3b6615302b" style="width: 100.0%; height: 100.0%;">Private room</div>`)[0];
popup_d9e2f47152ac4836a36dbd2689320796.setContent(html_205bf1b6d00b46ef97355f3b6615302b);
marker_40777d56a96e4505a3cab75ce7f535b6.bindPopup(popup_d9e2f47152ac4836a36dbd2689320796)
;
var marker_a79f600cd6124baaa669826cbc8da680 = L.marker(
[37.97904000000001, 23.70738],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_fc755ffaf93d40138d8b160f83fe517d = L.popup({"maxWidth": "100%"});
var html_5a179ce98fb648aeb35f3c17ae0b79e0 = $(`<div id="html_5a179ce98fb648aeb35f3c17ae0b79e0" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_fc755ffaf93d40138d8b160f83fe517d.setContent(html_5a179ce98fb648aeb35f3c17ae0b79e0);
marker_a79f600cd6124baaa669826cbc8da680.bindPopup(popup_fc755ffaf93d40138d8b160f83fe517d)
;
var marker_904362eddfbb48a7b5428c0bc8e42a8d = L.marker(
[37.98429, 23.72914],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_87d46292a3cd4011bea2c990a8274d97 = L.popup({"maxWidth": "100%"});
var html_ab2054550ec04d53a2a0c7c0e75933e5 = $(`<div id="html_ab2054550ec04d53a2a0c7c0e75933e5" style="width: 100.0%; height: 100.0%;">Private room</div>`)[0];
popup_87d46292a3cd4011bea2c990a8274d97.setContent(html_ab2054550ec04d53a2a0c7c0e75933e5);
marker_904362eddfbb48a7b5428c0bc8e42a8d.bindPopup(popup_87d46292a3cd4011bea2c990a8274d97)
;
var marker_03fb05db2e8d4e0d876f9eb912d46327 = L.marker(
[37.98448, 23.72699],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_6aabaa6e6bba49b7a7198b46fc7313b9 = L.popup({"maxWidth": "100%"});
var html_b17c940d5eb645feabf374dbbdd01a8d = $(`<div id="html_b17c940d5eb645feabf374dbbdd01a8d" style="width: 100.0%; height: 100.0%;">Private room</div>`)[0];
popup_6aabaa6e6bba49b7a7198b46fc7313b9.setContent(html_b17c940d5eb645feabf374dbbdd01a8d);
marker_03fb05db2e8d4e0d876f9eb912d46327.bindPopup(popup_6aabaa6e6bba49b7a7198b46fc7313b9)
;
var marker_13b011db7b1e4c29b412390e993fe783 = L.marker(
[37.98532, 23.72782],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_b07d580439014cf4864c15bb9659a955 = L.popup({"maxWidth": "100%"});
var html_6161c8da356f47249a58d02db84ee746 = $(`<div id="html_6161c8da356f47249a58d02db84ee746" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_b07d580439014cf4864c15bb9659a955.setContent(html_6161c8da356f47249a58d02db84ee746);
marker_13b011db7b1e4c29b412390e993fe783.bindPopup(popup_b07d580439014cf4864c15bb9659a955)
;
var marker_5341ea83d0b048c3af63658cd2ff6758 = L.marker(
[37.9603, 23.7367],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_2752dd1183de4afd83763e043247bb3f = L.popup({"maxWidth": "100%"});
var html_9e5993256f4643b48c14a6d5962c183c = $(`<div id="html_9e5993256f4643b48c14a6d5962c183c" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_2752dd1183de4afd83763e043247bb3f.setContent(html_9e5993256f4643b48c14a6d5962c183c);
marker_5341ea83d0b048c3af63658cd2ff6758.bindPopup(popup_2752dd1183de4afd83763e043247bb3f)
;
var marker_531db5f93f8f4e0987bcf3e2644c6b19 = L.marker(
[37.97952, 23.72367],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_8b92042535f74e2096c0c45187586388 = L.popup({"maxWidth": "100%"});
var html_49f4a34fe7d84b74a8a9e52bc5d6d5c3 = $(`<div id="html_49f4a34fe7d84b74a8a9e52bc5d6d5c3" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_8b92042535f74e2096c0c45187586388.setContent(html_49f4a34fe7d84b74a8a9e52bc5d6d5c3);
marker_531db5f93f8f4e0987bcf3e2644c6b19.bindPopup(popup_8b92042535f74e2096c0c45187586388)
;
var marker_9661322bc59c48a9a998843fc6de3759 = L.marker(
[38.01719, 23.74506],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_c585e32cbf4c463ca59ff6a04935dd3d = L.popup({"maxWidth": "100%"});
var html_3ea1eb8b21554031b92f73a2a1757882 = $(`<div id="html_3ea1eb8b21554031b92f73a2a1757882" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_c585e32cbf4c463ca59ff6a04935dd3d.setContent(html_3ea1eb8b21554031b92f73a2a1757882);
marker_9661322bc59c48a9a998843fc6de3759.bindPopup(popup_c585e32cbf4c463ca59ff6a04935dd3d)
;
var marker_dfbeaa73610245c1a2f1fdf28060f8c2 = L.marker(
[37.9858, 23.72328],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);
var popup_26eaf618ca49446f81466371f03bb85b = L.popup({"maxWidth": "100%"});
var html_d4c2ba8a6144454699e9ebd3ec0a0577 = $(`<div id="html_d4c2ba8a6144454699e9ebd3ec0a0577" style="width: 100.0%; height: 100.0%;">Entire home/apt</div>`)[0];
popup_26eaf618ca49446f81466371f03bb85b.setContent(html_d4c2ba8a6144454699e9ebd3ec0a0577);
marker_dfbeaa73610245c1a2f1fdf28060f8c2.bindPopup(popup_26eaf618ca49446f81466371f03bb85b)
;
var marker_00c0d7504bec43d9b8a3f8afdc1e4668 = L.marker(
[37.9813, 23.72258],
{}
).addTo(map_431498d3b19b4aca8bfc452c3834da47);