-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
8114 lines (5720 loc) · 267 KB
/
index.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://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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_3790e82e042541a49fcaad743cb4d31c {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_3790e82e042541a49fcaad743cb4d31c" ></div>
</body>
<script>
var bounds = null;
var map_3790e82e042541a49fcaad743cb4d31c = L.map(
'map_3790e82e042541a49fcaad743cb4d31c', {
center: [44.650837, 10.898436],
zoom: 16,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_8681d7566ba44dda80babfe86bd0469e = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": "Map data © <a href=\"https://openstreetmap.org\">OpenStreetMap</a> contributors, <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">CC-BY-SA</a>",
"detectRetina": false,
"maxNativeZoom": 19,
"maxZoom": 19,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_3790e82e042541a49fcaad743cb4d31c);
var feature_group_3578ec68541d40658926ac11422acd42 = L.featureGroup(
).addTo(map_3790e82e042541a49fcaad743cb4d31c);
var marker_cluster_892fb20512f6480da7cb36a7cf4d27d9 = L.markerClusterGroup({});
feature_group_3578ec68541d40658926ac11422acd42.addLayer(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var marker_8ebfa3e250ad4d199461557ef60f12fc = L.marker(
[2.0000003, 15.9999997],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_3a528085d6114289b40fc30fd26c7228 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_8ebfa3e250ad4d199461557ef60f12fc.setIcon(icon_3a528085d6114289b40fc30fd26c7228);
var popup_c0f1e3e7c576455393ba9da6e05340f9 = L.popup({maxWidth: '600'
});
var html_08c7f2badf0e43ea9580c6e7aedf4530 = $(`<div id="html_08c7f2badf0e43ea9580c6e7aedf4530" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_c0f1e3e7c576455393ba9da6e05340f9.setContent(html_08c7f2badf0e43ea9580c6e7aedf4530);
marker_8ebfa3e250ad4d199461557ef60f12fc.bindPopup(popup_c0f1e3e7c576455393ba9da6e05340f9)
;
var marker_1040930c14cf47ce90f48dc3d05f93b8 = L.marker(
[44.625061, 10.780898724743],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_011864dc3d5d46fd9d52b21c9e84791d = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_1040930c14cf47ce90f48dc3d05f93b8.setIcon(icon_011864dc3d5d46fd9d52b21c9e84791d);
var popup_c205851bcf974adfb35f529f745413c6 = L.popup({maxWidth: '600'
});
var html_455a874eef9c4c1f82a8f3e991e47889 = $(`<div id="html_455a874eef9c4c1f82a8f3e991e47889" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_c205851bcf974adfb35f529f745413c6.setContent(html_455a874eef9c4c1f82a8f3e991e47889);
marker_1040930c14cf47ce90f48dc3d05f93b8.bindPopup(popup_c205851bcf974adfb35f529f745413c6)
;
var marker_65392cdc8cc54dadad20ffce6f581e64 = L.marker(
[32.8962023, 13.2754884156506],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_77b5c06a91294a60a0ab87a6e5b26850 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_65392cdc8cc54dadad20ffce6f581e64.setIcon(icon_77b5c06a91294a60a0ab87a6e5b26850);
var popup_f7507aa7bac34df297624bd735d61fce = L.popup({maxWidth: '600'
});
var html_995397a3186947d099ac7a961df2de87 = $(`<div id="html_995397a3186947d099ac7a961df2de87" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_f7507aa7bac34df297624bd735d61fce.setContent(html_995397a3186947d099ac7a961df2de87);
marker_65392cdc8cc54dadad20ffce6f581e64.bindPopup(popup_f7507aa7bac34df297624bd735d61fce)
;
var marker_388ee92725154b1e9273c274bd8f8357 = L.marker(
[22.3743008, 49.4771176515971],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_7242ca8a5d9b4bbeae87b19f14386d53 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_388ee92725154b1e9273c274bd8f8357.setIcon(icon_7242ca8a5d9b4bbeae87b19f14386d53);
var popup_7419b264c284456eb7c043e344ad7a72 = L.popup({maxWidth: '600'
});
var html_c0e06e5ae4d24e24a5ae196044cddf04 = $(`<div id="html_c0e06e5ae4d24e24a5ae196044cddf04" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_7419b264c284456eb7c043e344ad7a72.setContent(html_c0e06e5ae4d24e24a5ae196044cddf04);
marker_388ee92725154b1e9273c274bd8f8357.bindPopup(popup_7419b264c284456eb7c043e344ad7a72)
;
var marker_abb1e310be9e4c4487b801334c1a64ef = L.marker(
[44.6905118, 10.8407336],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_d74a334fc6794c63a1b78c8c24d5eaba = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_abb1e310be9e4c4487b801334c1a64ef.setIcon(icon_d74a334fc6794c63a1b78c8c24d5eaba);
var popup_c244f3e199274b40bcf56e02a49f6903 = L.popup({maxWidth: '600'
});
var html_e1b2ac65786b42ec9c0b217d14307536 = $(`<div id="html_e1b2ac65786b42ec9c0b217d14307536" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_c244f3e199274b40bcf56e02a49f6903.setContent(html_e1b2ac65786b42ec9c0b217d14307536);
marker_abb1e310be9e4c4487b801334c1a64ef.bindPopup(popup_c244f3e199274b40bcf56e02a49f6903)
;
var marker_b8c7c78cd34c424facdc0da169655f55 = L.marker(
[44.5950245, 11.0529006],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_7b458564971e491fba3e48a57896da89 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_b8c7c78cd34c424facdc0da169655f55.setIcon(icon_7b458564971e491fba3e48a57896da89);
var popup_949729d7170f4afb90ffc432cffc17ea = L.popup({maxWidth: '600'
});
var html_b272b059840346278672573194661cff = $(`<div id="html_b272b059840346278672573194661cff" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_949729d7170f4afb90ffc432cffc17ea.setContent(html_b272b059840346278672573194661cff);
marker_b8c7c78cd34c424facdc0da169655f55.bindPopup(popup_949729d7170f4afb90ffc432cffc17ea)
;
var marker_d0bbd31f1d9548d8a1e2e8291438bcfc = L.marker(
[44.8372737, 11.6186451],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_5f536a2ed4ce485fa82f92727f9e0b35 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_d0bbd31f1d9548d8a1e2e8291438bcfc.setIcon(icon_5f536a2ed4ce485fa82f92727f9e0b35);
var popup_5c1946f2124c46adab788e112157875d = L.popup({maxWidth: '600'
});
var html_ab5c6efd81474c8baf1b8bf529f27cce = $(`<div id="html_ab5c6efd81474c8baf1b8bf529f27cce" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_5c1946f2124c46adab788e112157875d.setContent(html_ab5c6efd81474c8baf1b8bf529f27cce);
marker_d0bbd31f1d9548d8a1e2e8291438bcfc.bindPopup(popup_5c1946f2124c46adab788e112157875d)
;
var marker_0286e9184f824cd6bde037ca5447d778 = L.marker(
[63.2467777, 25.9209164],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_368187f8830b4f8a98bd59482e1a7012 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_0286e9184f824cd6bde037ca5447d778.setIcon(icon_368187f8830b4f8a98bd59482e1a7012);
var popup_9524d177162d4d9bb48176b388e78f29 = L.popup({maxWidth: '600'
});
var html_b91665512e3f4ba99a28f64404ae6ba6 = $(`<div id="html_b91665512e3f4ba99a28f64404ae6ba6" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_9524d177162d4d9bb48176b388e78f29.setContent(html_b91665512e3f4ba99a28f64404ae6ba6);
marker_0286e9184f824cd6bde037ca5447d778.bindPopup(popup_9524d177162d4d9bb48176b388e78f29)
;
var marker_3b9876baee1b4ab39ff558e3b22347d6 = L.marker(
[48.26344385, 8.16474879186534],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_fd16572c87b844919cd21cfa37575bb1 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_3b9876baee1b4ab39ff558e3b22347d6.setIcon(icon_fd16572c87b844919cd21cfa37575bb1);
var popup_5bc8bfdf6b2d4e81b677e8ce9789d14c = L.popup({maxWidth: '600'
});
var html_70aee20a9a2c4842a2938fbf05667a8d = $(`<div id="html_70aee20a9a2c4842a2938fbf05667a8d" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_5bc8bfdf6b2d4e81b677e8ce9789d14c.setContent(html_70aee20a9a2c4842a2938fbf05667a8d);
marker_3b9876baee1b4ab39ff558e3b22347d6.bindPopup(popup_5bc8bfdf6b2d4e81b677e8ce9789d14c)
;
var marker_3f96cf409d7f4feaa2ec79b9a714807e = L.marker(
[44.6482469, 10.9210346],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_e4c2e5b09ff24621baa1f2f10e161f04 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_3f96cf409d7f4feaa2ec79b9a714807e.setIcon(icon_e4c2e5b09ff24621baa1f2f10e161f04);
var popup_2e90827e82254994adc3cfd93a4c2fd3 = L.popup({maxWidth: '600'
});
var html_55c6f4fc36834688bdeba0dd81eaf982 = $(`<div id="html_55c6f4fc36834688bdeba0dd81eaf982" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_2e90827e82254994adc3cfd93a4c2fd3.setContent(html_55c6f4fc36834688bdeba0dd81eaf982);
marker_3f96cf409d7f4feaa2ec79b9a714807e.bindPopup(popup_2e90827e82254994adc3cfd93a4c2fd3)
;
var marker_f0ab6fe5764040b09b0aead1a8871fe2 = L.marker(
[51.0834196, 10.4234469],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_3ca629f1766f401a8665c9f4236123cf = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_f0ab6fe5764040b09b0aead1a8871fe2.setIcon(icon_3ca629f1766f401a8665c9f4236123cf);
var popup_6e010d5295d243ac8febc3bd573ed288 = L.popup({maxWidth: '600'
});
var html_e016895fb8954b34a7fdd7126fb0ebe4 = $(`<div id="html_e016895fb8954b34a7fdd7126fb0ebe4" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_6e010d5295d243ac8febc3bd573ed288.setContent(html_e016895fb8954b34a7fdd7126fb0ebe4);
marker_f0ab6fe5764040b09b0aead1a8871fe2.bindPopup(popup_6e010d5295d243ac8febc3bd573ed288)
;
var marker_cc040f45592a468c94926c1a1eb2ecfd = L.marker(
[32.896672, 13.1777923],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_0e4a24d2945846e2b94658fe35718827 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_cc040f45592a468c94926c1a1eb2ecfd.setIcon(icon_0e4a24d2945846e2b94658fe35718827);
var popup_7e968da74a6c438bbe28db37e16d3f08 = L.popup({maxWidth: '600'
});
var html_f7a5c4d006de4102a518a03d5d2e119b = $(`<div id="html_f7a5c4d006de4102a518a03d5d2e119b" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_7e968da74a6c438bbe28db37e16d3f08.setContent(html_f7a5c4d006de4102a518a03d5d2e119b);
marker_cc040f45592a468c94926c1a1eb2ecfd.bindPopup(popup_7e968da74a6c438bbe28db37e16d3f08)
;
var marker_e6e39d20b0f6490cb4bb75f8a2f1bda9 = L.marker(
[45.4371908, 12.3345898],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_9562fc3c4e354d0282845188f4cc933e = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_e6e39d20b0f6490cb4bb75f8a2f1bda9.setIcon(icon_9562fc3c4e354d0282845188f4cc933e);
var popup_6e8bac1e7fe045dea6fd53f2f8a73f68 = L.popup({maxWidth: '600'
});
var html_2b03c02c13d749b48b9db56e3f49fd9f = $(`<div id="html_2b03c02c13d749b48b9db56e3f49fd9f" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_6e8bac1e7fe045dea6fd53f2f8a73f68.setContent(html_2b03c02c13d749b48b9db56e3f49fd9f);
marker_e6e39d20b0f6490cb4bb75f8a2f1bda9.bindPopup(popup_6e8bac1e7fe045dea6fd53f2f8a73f68)
;
var marker_9033ae0dfde94328a7863710a2ce3ecb = L.marker(
[44.6568188, 10.9119155],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_10b7ef4bd69f46be87eb8b9c38fbceea = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_9033ae0dfde94328a7863710a2ce3ecb.setIcon(icon_10b7ef4bd69f46be87eb8b9c38fbceea);
var popup_e7c8ececf4ee4fa4bda165af55ec52d2 = L.popup({maxWidth: '600'
});
var html_96b46e8a854f49588b3c5033c137d0c9 = $(`<div id="html_96b46e8a854f49588b3c5033c137d0c9" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_e7c8ececf4ee4fa4bda165af55ec52d2.setContent(html_96b46e8a854f49588b3c5033c137d0c9);
marker_9033ae0dfde94328a7863710a2ce3ecb.bindPopup(popup_e7c8ececf4ee4fa4bda165af55ec52d2)
;
var marker_bb33f61388d941599c2408a7826a0489 = L.marker(
[44.4784141, 11.0090928],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_c5b4900f77b5472e8a9444a2b8508a28 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bb33f61388d941599c2408a7826a0489.setIcon(icon_c5b4900f77b5472e8a9444a2b8508a28);
var popup_d42d7f8bd0074d02b60d6d4df2d8eeee = L.popup({maxWidth: '600'
});
var html_1636d61f53cd411893c5ca06517c969b = $(`<div id="html_1636d61f53cd411893c5ca06517c969b" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_d42d7f8bd0074d02b60d6d4df2d8eeee.setContent(html_1636d61f53cd411893c5ca06517c969b);
marker_bb33f61388d941599c2408a7826a0489.bindPopup(popup_d42d7f8bd0074d02b60d6d4df2d8eeee)
;
var marker_90ce49e557d94201872ec5f5031c7c8a = L.marker(
[44.6449469, 10.9121646],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_26a74e0f0d3c44c08f9085bc9e202536 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_90ce49e557d94201872ec5f5031c7c8a.setIcon(icon_26a74e0f0d3c44c08f9085bc9e202536);
var popup_b1efca51209b4e999031f8ddfca6e57c = L.popup({maxWidth: '600'
});
var html_90978c44a37d469ba53a34cb53663e20 = $(`<div id="html_90978c44a37d469ba53a34cb53663e20" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_b1efca51209b4e999031f8ddfca6e57c.setContent(html_90978c44a37d469ba53a34cb53663e20);
marker_90ce49e557d94201872ec5f5031c7c8a.bindPopup(popup_b1efca51209b4e999031f8ddfca6e57c)
;
var marker_33bf9776970143e3b3446c3896db5596 = L.marker(
[44.5470555, 10.7754903],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_e17c52b0134c4cb2b95d8cbaacfaeb7a = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_33bf9776970143e3b3446c3896db5596.setIcon(icon_e17c52b0134c4cb2b95d8cbaacfaeb7a);
var popup_4b4cacd45dc440b488478992444da07e = L.popup({maxWidth: '600'
});
var html_04daa80fc33d4a95aa1d732bd4bb04b6 = $(`<div id="html_04daa80fc33d4a95aa1d732bd4bb04b6" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_4b4cacd45dc440b488478992444da07e.setContent(html_04daa80fc33d4a95aa1d732bd4bb04b6);
marker_33bf9776970143e3b3446c3896db5596.bindPopup(popup_4b4cacd45dc440b488478992444da07e)
;
var marker_2d979fff01b941929c441b45d8d8b857 = L.marker(
[37.9841493, 23.7279843],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_86dcfcc5d6f04e48b9c716d983334668 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_2d979fff01b941929c441b45d8d8b857.setIcon(icon_86dcfcc5d6f04e48b9c716d983334668);
var popup_cff3e9c9de644c59b1f738d8c4f2a27e = L.popup({maxWidth: '600'
});
var html_c1296649d1bc44fa906c6aa83f0ecd9f = $(`<div id="html_c1296649d1bc44fa906c6aa83f0ecd9f" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_cff3e9c9de644c59b1f738d8c4f2a27e.setContent(html_c1296649d1bc44fa906c6aa83f0ecd9f);
marker_2d979fff01b941929c441b45d8d8b857.bindPopup(popup_cff3e9c9de644c59b1f738d8c4f2a27e)
;
var marker_bb69169935094c599749ae9117ca6f45 = L.marker(
[39.1476519, 16.9150324903434],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_92aa00d9f78e4197b78e6070fbc36f23 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bb69169935094c599749ae9117ca6f45.setIcon(icon_92aa00d9f78e4197b78e6070fbc36f23);
var popup_2b7def9b32e74980a98868cf9f1ad7eb = L.popup({maxWidth: '600'
});
var html_0812b549bf2543c7b2db3bdc9757beae = $(`<div id="html_0812b549bf2543c7b2db3bdc9757beae" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_2b7def9b32e74980a98868cf9f1ad7eb.setContent(html_0812b549bf2543c7b2db3bdc9757beae);
marker_bb69169935094c599749ae9117ca6f45.bindPopup(popup_2b7def9b32e74980a98868cf9f1ad7eb)
;
var marker_353304c41c9449b78c1226f3ee2fc297 = L.marker(
[45.4715187, 9.1877351],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_d900f7576aa64693a8a052ab062ab20a = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_353304c41c9449b78c1226f3ee2fc297.setIcon(icon_d900f7576aa64693a8a052ab062ab20a);
var popup_9ef4067fc85d42ddb5e1435c12e43680 = L.popup({maxWidth: '600'
});
var html_e59957b57b4e4c87ae241d08f4cf73f5 = $(`<div id="html_e59957b57b4e4c87ae241d08f4cf73f5" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_9ef4067fc85d42ddb5e1435c12e43680.setContent(html_e59957b57b4e4c87ae241d08f4cf73f5);
marker_353304c41c9449b78c1226f3ee2fc297.bindPopup(popup_9ef4067fc85d42ddb5e1435c12e43680)
;
var marker_ddee53f6f8f646f59f02f1c887eb7683 = L.marker(
[39.0565974, 16.5249864],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_b2d04c49db014607bd3e3530b6975937 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_ddee53f6f8f646f59f02f1c887eb7683.setIcon(icon_b2d04c49db014607bd3e3530b6975937);
var popup_c788fff3c23049e19608f6442f25c5ec = L.popup({maxWidth: '600'
});
var html_acf609338f3543b1a0a621177cd73b4f = $(`<div id="html_acf609338f3543b1a0a621177cd73b4f" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_c788fff3c23049e19608f6442f25c5ec.setContent(html_acf609338f3543b1a0a621177cd73b4f);
marker_ddee53f6f8f646f59f02f1c887eb7683.bindPopup(popup_c788fff3c23049e19608f6442f25c5ec)
;
var marker_e98e2de1c2524a89ad776e846344a652 = L.marker(
[38.9076353, 16.5960465],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_b63b057d600448d89d715afb5e6a0293 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_e98e2de1c2524a89ad776e846344a652.setIcon(icon_b63b057d600448d89d715afb5e6a0293);
var popup_efc0e97c4a974701904705c7c4681ed4 = L.popup({maxWidth: '600'
});
var html_187ccf3bbe0341c6a7cd954a8ec1b6ff = $(`<div id="html_187ccf3bbe0341c6a7cd954a8ec1b6ff" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_efc0e97c4a974701904705c7c4681ed4.setContent(html_187ccf3bbe0341c6a7cd954a8ec1b6ff);
marker_e98e2de1c2524a89ad776e846344a652.bindPopup(popup_efc0e97c4a974701904705c7c4681ed4)
;
var marker_bb9cceab4b8e4f1fadb9f7e2f443ac55 = L.marker(
[43.7674894, 11.3166272],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_6fe0ba0dde244990bb23f07a1732b507 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bb9cceab4b8e4f1fadb9f7e2f443ac55.setIcon(icon_6fe0ba0dde244990bb23f07a1732b507);
var popup_40275d31fac24eacbdd874271a838036 = L.popup({maxWidth: '600'
});
var html_a92121da4b644a4786c53595211479fd = $(`<div id="html_a92121da4b644a4786c53595211479fd" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_40275d31fac24eacbdd874271a838036.setContent(html_a92121da4b644a4786c53595211479fd);
marker_bb9cceab4b8e4f1fadb9f7e2f443ac55.bindPopup(popup_40275d31fac24eacbdd874271a838036)
;
var marker_bfc71dce76d54c8eafef65082156d863 = L.marker(
[44.1060316, 9.8169172],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_8bb6272b9a4741d4835935ffedd7fdb9 = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bfc71dce76d54c8eafef65082156d863.setIcon(icon_8bb6272b9a4741d4835935ffedd7fdb9);
var popup_660abbd5e36a477e8dd920c16042b8f7 = L.popup({maxWidth: '600'
});
var html_9cc0c085c1644d45889d49143e9ecf20 = $(`<div id="html_9cc0c085c1644d45889d49143e9ecf20" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_660abbd5e36a477e8dd920c16042b8f7.setContent(html_9cc0c085c1644d45889d49143e9ecf20);
marker_bfc71dce76d54c8eafef65082156d863.bindPopup(popup_660abbd5e36a477e8dd920c16042b8f7)
;
var marker_19847d252e3d48e58000b983464fc4e9 = L.marker(
[43.8066689, 11.2930735],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_ac2565d7cd884e4d88a2a161654156cb = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_19847d252e3d48e58000b983464fc4e9.setIcon(icon_ac2565d7cd884e4d88a2a161654156cb);
var popup_cf1924fb47b34b0a89d74e8958400db4 = L.popup({maxWidth: '600'
});
var html_c9081e88731a4ca993143df03bc5fb88 = $(`<div id="html_c9081e88731a4ca993143df03bc5fb88" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_cf1924fb47b34b0a89d74e8958400db4.setContent(html_c9081e88731a4ca993143df03bc5fb88);
marker_19847d252e3d48e58000b983464fc4e9.bindPopup(popup_cf1924fb47b34b0a89d74e8958400db4)
;
var marker_6f54050e88db4c2c8f3db5f89ed0e357 = L.marker(
[43.7698712, 11.2555757],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_73f8e6554a7b4ea2aebb8691c67db54e = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_6f54050e88db4c2c8f3db5f89ed0e357.setIcon(icon_73f8e6554a7b4ea2aebb8691c67db54e);
var popup_d2cc982dd52c41ef8011bbd6933d2757 = L.popup({maxWidth: '600'
});
var html_8ec7df444f33439cb14bce9445ea8c31 = $(`<div id="html_8ec7df444f33439cb14bce9445ea8c31" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_d2cc982dd52c41ef8011bbd6933d2757.setContent(html_8ec7df444f33439cb14bce9445ea8c31);
marker_6f54050e88db4c2c8f3db5f89ed0e357.bindPopup(popup_d2cc982dd52c41ef8011bbd6933d2757)
;
var marker_c5acabd6287c4b8f927e940086d38192 = L.marker(
[44.1799513, 10.6477331],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);
var icon_d999fec3e901484e8d3ed8f50147285c = L.AwesomeMarkers.icon({
icon: 'bookmark',
iconColor: 'white',
markerColor: 'green',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_c5acabd6287c4b8f927e940086d38192.setIcon(icon_d999fec3e901484e8d3ed8f50147285c);
var popup_f6d4030a7dc04cb58397c9310745f819 = L.popup({maxWidth: '600'
});
var html_89333a0f93034fadb3bf056b3573e1a1 = $(`<div id="html_89333a0f93034fadb3bf056b3573e1a1" style="width: 100.0%; height: 100.0%;"><h3>nan</h3></div>`)[0];
popup_f6d4030a7dc04cb58397c9310745f819.setContent(html_89333a0f93034fadb3bf056b3573e1a1);
marker_c5acabd6287c4b8f927e940086d38192.bindPopup(popup_f6d4030a7dc04cb58397c9310745f819)
;
var marker_77e64548489b46a29a0644ded52ef968 = L.marker(
[39.1470277, 16.91544565],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_892fb20512f6480da7cb36a7cf4d27d9);