-
Notifications
You must be signed in to change notification settings - Fork 0
/
test1.html
2245 lines (1186 loc) · 94.3 KB
/
test1.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_1cdf49b2153a4f5fbdb9922733fc35c3 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://leaflet.github.io/Leaflet.heat/dist/leaflet-heat.js"></script>
</head>
<body>
<div class="folium-map" id="map_1cdf49b2153a4f5fbdb9922733fc35c3" ></div>
</body>
<script>
var map_1cdf49b2153a4f5fbdb9922733fc35c3 = L.map(
"map_1cdf49b2153a4f5fbdb9922733fc35c3",
{
center: [40.187, -4.0364],
crs: L.CRS.EPSG3857,
zoom: 6,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_5b1023ee70b748739230192f24dcec7c = 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_1cdf49b2153a4f5fbdb9922733fc35c3);
var heat_map_f3385be63d8441fdb006e213ec88428e = L.heatLayer(
[[40.187, -4.0364], [40.4238, -3.5613], [40.3057, -3.7329], [40.1061, -3.6492], [40.6351, -4.0049], [40.3928, -3.4819], [41.3278, 2.0947], [39.9887, -3.7658], [40.4238, -3.5613], [40.3272, -3.7635], [40.4238, -3.5613], [40.4554, -3.4697], [40.2504, -3.8306], [40.4165, -3.7026], [40.6572, -4.6995], [40.5161, -3.5232], [40.482, -3.36], [40.5429, -3.4546], [40.3458, -3.8249], [40.4239, -3.5326], [41.6333, 2.4], [40.4165, -3.7026], [40.482, -3.36], [40.4165, -3.7026], [40.4165, -3.7026], [40.5475, -3.642], [40.1908, -3.6789], [40.4165, -3.7026], [40.5526, -3.2508], [41.5748, 2.2331], [39.9635, -4.8308], [40.2842, -3.7941], [40.532, -3.4784], [40.068, -3.738], [41.3888, 2.159], [41.5266, 2.1868], [41.3324, 1.6496], [40.5937, -3.2453], [40.4165, -3.7026], [40.3272, -3.7635], [40.2125, -3.8548], [40.1989, -3.797], [40.4165, -3.7026], [40.4165, -3.7026], [40.1591, -3.621], [40.2415, -3.7], [40.2074, -3.5706], [40.5901, -3.3515], [40.2774, -3.2775], [40.057, -3.6048], [40.5882, -3.6988], [41.2177, -4.5215], [41.3373, 1.3425], [39.8581, -4.0226], [40.1553, -4.1146], [40.3458, -3.8249], [40.3223, -3.865], [40.2842, -3.7941], [40.2842, -3.7941], [40.5035, -3.5278], [42.0748, 2.2968], [41.5437, 1.8941], [40.4165, -3.7026], [40.4165, -3.7026], [40.4165, -3.7026], [40.7247, -3.1731], [41.9161, 1.1852], [41.3436, 2.0366], [41.35, 2.0833], [40.6668, -3.1991], [41.4466, 1.9719], [41.4347, 1.793], [41.2239, 1.7251], [40.8935, -4.5813], [41.3888, 2.159], [41.6086, 2.1353], [41.5905, 2.2412], [41.5159, 2.1246], [41.5096, 2.3936], [41.6466, 2.7413], [41.6276, 2.6889], [41.5833, 2.3333], [40.2842, -3.7941], [40.0042, -3.5723], [39.9819, -4.2835], [40.0408, -3.8998], [40.012, -3.7925]],
{"blur": 15, "max": 1.0, "maxZoom": 18, "minOpacity": 0.5, "radius": 25}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var marker_5df879f5e0844b30b32fcb5757d28e3c = L.marker(
[40.187, -4.0364],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_85cb905985204bf785c1c09302fb2188 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_5df879f5e0844b30b32fcb5757d28e3c.setIcon(icon_85cb905985204bf785c1c09302fb2188);
var popup_2ed7addbbd60451ba8b13a5d6fca8951 = L.popup({"maxWidth": "100%"});
var html_ade34a0bae904704a1913b59e45e05d1 = $(`<div id="html_ade34a0bae904704a1913b59e45e05d1" style="width: 100.0%; height: 100.0%;">Number delivered: 27</div>`)[0];
popup_2ed7addbbd60451ba8b13a5d6fca8951.setContent(html_ade34a0bae904704a1913b59e45e05d1);
marker_5df879f5e0844b30b32fcb5757d28e3c.bindPopup(popup_2ed7addbbd60451ba8b13a5d6fca8951)
;
var marker_b749cef4f21149edbe50c70bca95ea14 = L.marker(
[40.4238, -3.5613],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_07eb3fe64dd14332a042d6d8af5eb88d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b749cef4f21149edbe50c70bca95ea14.setIcon(icon_07eb3fe64dd14332a042d6d8af5eb88d);
var popup_dca4fff997f1448e94fb1cda3c318ecd = L.popup({"maxWidth": "100%"});
var html_18d92e0fc1594d00a96bfa00fedcff34 = $(`<div id="html_18d92e0fc1594d00a96bfa00fedcff34" style="width: 100.0%; height: 100.0%;">Number delivered: 24</div>`)[0];
popup_dca4fff997f1448e94fb1cda3c318ecd.setContent(html_18d92e0fc1594d00a96bfa00fedcff34);
marker_b749cef4f21149edbe50c70bca95ea14.bindPopup(popup_dca4fff997f1448e94fb1cda3c318ecd)
;
var marker_74edf57d2d734fa0a22cff3aa42fc25f = L.marker(
[40.3057, -3.7329],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_136d5b3d5c5e4a5d84a6f5c2071ff4bc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_74edf57d2d734fa0a22cff3aa42fc25f.setIcon(icon_136d5b3d5c5e4a5d84a6f5c2071ff4bc);
var popup_80e322160d6c432ebe0bb8a95c541421 = L.popup({"maxWidth": "100%"});
var html_4d8382aee37446e1a88513240100ab1c = $(`<div id="html_4d8382aee37446e1a88513240100ab1c" style="width: 100.0%; height: 100.0%;">Number delivered: 21</div>`)[0];
popup_80e322160d6c432ebe0bb8a95c541421.setContent(html_4d8382aee37446e1a88513240100ab1c);
marker_74edf57d2d734fa0a22cff3aa42fc25f.bindPopup(popup_80e322160d6c432ebe0bb8a95c541421)
;
var marker_050d285f89fe48fcb07d280cf86a1403 = L.marker(
[40.1061, -3.6492],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_ea04671271694f8fa9756626e154e2ab = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_050d285f89fe48fcb07d280cf86a1403.setIcon(icon_ea04671271694f8fa9756626e154e2ab);
var popup_6cebefd7ab7b4c14855ee9833f0df104 = L.popup({"maxWidth": "100%"});
var html_7f9565a9cf4c405aa030bc2e80c584ff = $(`<div id="html_7f9565a9cf4c405aa030bc2e80c584ff" style="width: 100.0%; height: 100.0%;">Number delivered: 15</div>`)[0];
popup_6cebefd7ab7b4c14855ee9833f0df104.setContent(html_7f9565a9cf4c405aa030bc2e80c584ff);
marker_050d285f89fe48fcb07d280cf86a1403.bindPopup(popup_6cebefd7ab7b4c14855ee9833f0df104)
;
var marker_35c2fd0f6ef54ab0a33d9a21eb3ab055 = L.marker(
[40.6351, -4.0049],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_6960b4d58ca049c99db4151392777f2d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_35c2fd0f6ef54ab0a33d9a21eb3ab055.setIcon(icon_6960b4d58ca049c99db4151392777f2d);
var popup_3046b703d4f44f61b9fcef063ff69a96 = L.popup({"maxWidth": "100%"});
var html_b0db8526410940e483f7c30b17a57596 = $(`<div id="html_b0db8526410940e483f7c30b17a57596" style="width: 100.0%; height: 100.0%;">Number delivered: 14</div>`)[0];
popup_3046b703d4f44f61b9fcef063ff69a96.setContent(html_b0db8526410940e483f7c30b17a57596);
marker_35c2fd0f6ef54ab0a33d9a21eb3ab055.bindPopup(popup_3046b703d4f44f61b9fcef063ff69a96)
;
var marker_e6849c9206b6405491e735ecfe76f3c4 = L.marker(
[40.3928, -3.4819],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_e9efa33493f4452fa35db2670648c5f2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_e6849c9206b6405491e735ecfe76f3c4.setIcon(icon_e9efa33493f4452fa35db2670648c5f2);
var popup_3c6143ecfcb3486cb998cd27f91bc9dc = L.popup({"maxWidth": "100%"});
var html_8b8f8b1dc66a42259532f56e5afae3a0 = $(`<div id="html_8b8f8b1dc66a42259532f56e5afae3a0" style="width: 100.0%; height: 100.0%;">Number delivered: 12</div>`)[0];
popup_3c6143ecfcb3486cb998cd27f91bc9dc.setContent(html_8b8f8b1dc66a42259532f56e5afae3a0);
marker_e6849c9206b6405491e735ecfe76f3c4.bindPopup(popup_3c6143ecfcb3486cb998cd27f91bc9dc)
;
var marker_f6a8419da4344ccd966e62ce0f3268b1 = L.marker(
[41.3278, 2.0947],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_a2db8740c2e14ea4a3ff2a62abaf8f47 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_f6a8419da4344ccd966e62ce0f3268b1.setIcon(icon_a2db8740c2e14ea4a3ff2a62abaf8f47);
var popup_1f67553a9a8e4a64bc189efaf04d7210 = L.popup({"maxWidth": "100%"});
var html_a09bd524d2954d3ea4d1f2ae12691d26 = $(`<div id="html_a09bd524d2954d3ea4d1f2ae12691d26" style="width: 100.0%; height: 100.0%;">Number delivered: 12</div>`)[0];
popup_1f67553a9a8e4a64bc189efaf04d7210.setContent(html_a09bd524d2954d3ea4d1f2ae12691d26);
marker_f6a8419da4344ccd966e62ce0f3268b1.bindPopup(popup_1f67553a9a8e4a64bc189efaf04d7210)
;
var marker_06a681b09a67495991ed87f216901db6 = L.marker(
[39.9887, -3.7658],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_410697eb06c948ce86049e52dc127f3d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_06a681b09a67495991ed87f216901db6.setIcon(icon_410697eb06c948ce86049e52dc127f3d);
var popup_881b77b778fb4c1d9bb3813560cdc5e4 = L.popup({"maxWidth": "100%"});
var html_c2807a0298f44319b2522b59b21b97d5 = $(`<div id="html_c2807a0298f44319b2522b59b21b97d5" style="width: 100.0%; height: 100.0%;">Number delivered: 12</div>`)[0];
popup_881b77b778fb4c1d9bb3813560cdc5e4.setContent(html_c2807a0298f44319b2522b59b21b97d5);
marker_06a681b09a67495991ed87f216901db6.bindPopup(popup_881b77b778fb4c1d9bb3813560cdc5e4)
;
var marker_2d4fdc00ef8f4060a3f8b7070a8ee574 = L.marker(
[40.4238, -3.5613],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_2cd39b46360a4b3ab7b00325ae41710c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2d4fdc00ef8f4060a3f8b7070a8ee574.setIcon(icon_2cd39b46360a4b3ab7b00325ae41710c);
var popup_41cc6ead1b054cbfbf1a5ebcf7b5111e = L.popup({"maxWidth": "100%"});
var html_1bf00de2d6e2403f8ceace7c0ac7574d = $(`<div id="html_1bf00de2d6e2403f8ceace7c0ac7574d" style="width: 100.0%; height: 100.0%;">Number delivered: 11</div>`)[0];
popup_41cc6ead1b054cbfbf1a5ebcf7b5111e.setContent(html_1bf00de2d6e2403f8ceace7c0ac7574d);
marker_2d4fdc00ef8f4060a3f8b7070a8ee574.bindPopup(popup_41cc6ead1b054cbfbf1a5ebcf7b5111e)
;
var marker_56eef2fee91643ffbc55e4b2572ef4a8 = L.marker(
[40.3272, -3.7635],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_ef2e28ce54024604adcc27db4ab0d833 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_56eef2fee91643ffbc55e4b2572ef4a8.setIcon(icon_ef2e28ce54024604adcc27db4ab0d833);
var popup_4a7ccc70d949463098ad5fe9fe15cf0b = L.popup({"maxWidth": "100%"});
var html_d6b4e0eb82b74a5385de7fb9333c7600 = $(`<div id="html_d6b4e0eb82b74a5385de7fb9333c7600" style="width: 100.0%; height: 100.0%;">Number delivered: 9</div>`)[0];
popup_4a7ccc70d949463098ad5fe9fe15cf0b.setContent(html_d6b4e0eb82b74a5385de7fb9333c7600);
marker_56eef2fee91643ffbc55e4b2572ef4a8.bindPopup(popup_4a7ccc70d949463098ad5fe9fe15cf0b)
;
var marker_27332d3545c84ae9810ad4d1639370b2 = L.marker(
[40.4238, -3.5613],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_80ca84f3853f4842bbfd39de20bc1792 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_27332d3545c84ae9810ad4d1639370b2.setIcon(icon_80ca84f3853f4842bbfd39de20bc1792);
var popup_57ddbd67536240ea8078f79d32d5dd6d = L.popup({"maxWidth": "100%"});
var html_17e5b265fa1340acb216f211b1174679 = $(`<div id="html_17e5b265fa1340acb216f211b1174679" style="width: 100.0%; height: 100.0%;">Number delivered: 8</div>`)[0];
popup_57ddbd67536240ea8078f79d32d5dd6d.setContent(html_17e5b265fa1340acb216f211b1174679);
marker_27332d3545c84ae9810ad4d1639370b2.bindPopup(popup_57ddbd67536240ea8078f79d32d5dd6d)
;
var marker_aa5528f84d51445abc6982e72a1b3d51 = L.marker(
[40.4554, -3.4697],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_60cd5c64aa024f988d8617fd583077e8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_aa5528f84d51445abc6982e72a1b3d51.setIcon(icon_60cd5c64aa024f988d8617fd583077e8);
var popup_2083d4fa21e5478680f683c527d64772 = L.popup({"maxWidth": "100%"});
var html_c59ef2973a414ac9b8400e1ccfd697b2 = $(`<div id="html_c59ef2973a414ac9b8400e1ccfd697b2" style="width: 100.0%; height: 100.0%;">Number delivered: 8</div>`)[0];
popup_2083d4fa21e5478680f683c527d64772.setContent(html_c59ef2973a414ac9b8400e1ccfd697b2);
marker_aa5528f84d51445abc6982e72a1b3d51.bindPopup(popup_2083d4fa21e5478680f683c527d64772)
;
var marker_d4926079e5e443eba84556c8a59d9da8 = L.marker(
[40.2504, -3.8306],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_2416424080ea4ff980baa4f693bb0e78 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d4926079e5e443eba84556c8a59d9da8.setIcon(icon_2416424080ea4ff980baa4f693bb0e78);
var popup_f11f7a3d6d82451e878c4304ca83ce2e = L.popup({"maxWidth": "100%"});
var html_393f6d725e864065845aca036fcd1735 = $(`<div id="html_393f6d725e864065845aca036fcd1735" style="width: 100.0%; height: 100.0%;">Number delivered: 7</div>`)[0];
popup_f11f7a3d6d82451e878c4304ca83ce2e.setContent(html_393f6d725e864065845aca036fcd1735);
marker_d4926079e5e443eba84556c8a59d9da8.bindPopup(popup_f11f7a3d6d82451e878c4304ca83ce2e)
;
var marker_4ba339a1328143f2ac65cf6f2053c076 = L.marker(
[40.4165, -3.7026],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_9504a194004044539d8eeb6f1e2bb167 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_4ba339a1328143f2ac65cf6f2053c076.setIcon(icon_9504a194004044539d8eeb6f1e2bb167);
var popup_053ebda00f9a437c83f53d3cdfbc2c47 = L.popup({"maxWidth": "100%"});
var html_3c1a2f36abad48d3a87b1bce4f8fd4b0 = $(`<div id="html_3c1a2f36abad48d3a87b1bce4f8fd4b0" style="width: 100.0%; height: 100.0%;">Number delivered: 7</div>`)[0];
popup_053ebda00f9a437c83f53d3cdfbc2c47.setContent(html_3c1a2f36abad48d3a87b1bce4f8fd4b0);
marker_4ba339a1328143f2ac65cf6f2053c076.bindPopup(popup_053ebda00f9a437c83f53d3cdfbc2c47)
;
var marker_d0293f4d6b0d4672b300a273ba9884ca = L.marker(
[40.6572, -4.6995],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_bd51ae8ff2f349eb956944e6200ae4f7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d0293f4d6b0d4672b300a273ba9884ca.setIcon(icon_bd51ae8ff2f349eb956944e6200ae4f7);
var popup_36e9f168b60e45c6a642bd8ad24567ea = L.popup({"maxWidth": "100%"});
var html_e033486f5ee0462b8674c8980c8f9318 = $(`<div id="html_e033486f5ee0462b8674c8980c8f9318" style="width: 100.0%; height: 100.0%;">Number delivered: 7</div>`)[0];
popup_36e9f168b60e45c6a642bd8ad24567ea.setContent(html_e033486f5ee0462b8674c8980c8f9318);
marker_d0293f4d6b0d4672b300a273ba9884ca.bindPopup(popup_36e9f168b60e45c6a642bd8ad24567ea)
;
var marker_f78646d5115e4f94b642156caf2e20ab = L.marker(
[40.5161, -3.5232],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_2d829ac5c25a44dca83254c95ea34ba0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_f78646d5115e4f94b642156caf2e20ab.setIcon(icon_2d829ac5c25a44dca83254c95ea34ba0);
var popup_2cfab1d728924f69ab0ba68bc59cc9ff = L.popup({"maxWidth": "100%"});
var html_76a112efe8684cbea6271d8c97920acc = $(`<div id="html_76a112efe8684cbea6271d8c97920acc" style="width: 100.0%; height: 100.0%;">Number delivered: 6</div>`)[0];
popup_2cfab1d728924f69ab0ba68bc59cc9ff.setContent(html_76a112efe8684cbea6271d8c97920acc);
marker_f78646d5115e4f94b642156caf2e20ab.bindPopup(popup_2cfab1d728924f69ab0ba68bc59cc9ff)
;
var marker_b6f5d07fc88f4617934c99c21291b3f2 = L.marker(
[40.482, -3.36],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_d57e245656b24c4a9242f973e0327efd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b6f5d07fc88f4617934c99c21291b3f2.setIcon(icon_d57e245656b24c4a9242f973e0327efd);
var popup_f4416d41e59740f1901014ec71d4740a = L.popup({"maxWidth": "100%"});
var html_1795c4db63164cd58eff4b7f393009d7 = $(`<div id="html_1795c4db63164cd58eff4b7f393009d7" style="width: 100.0%; height: 100.0%;">Number delivered: 5</div>`)[0];
popup_f4416d41e59740f1901014ec71d4740a.setContent(html_1795c4db63164cd58eff4b7f393009d7);
marker_b6f5d07fc88f4617934c99c21291b3f2.bindPopup(popup_f4416d41e59740f1901014ec71d4740a)
;
var marker_8860ce44ddcc4a07a8e7cc7d0065889e = L.marker(
[40.5429, -3.4546],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_608717ef019c4e5ca66e26a1e5e8108d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_8860ce44ddcc4a07a8e7cc7d0065889e.setIcon(icon_608717ef019c4e5ca66e26a1e5e8108d);
var popup_0c46185154794ba5a3b7adf540d1249f = L.popup({"maxWidth": "100%"});
var html_cd26c681d7e641bcb9ea19a36bccb10d = $(`<div id="html_cd26c681d7e641bcb9ea19a36bccb10d" style="width: 100.0%; height: 100.0%;">Number delivered: 5</div>`)[0];
popup_0c46185154794ba5a3b7adf540d1249f.setContent(html_cd26c681d7e641bcb9ea19a36bccb10d);
marker_8860ce44ddcc4a07a8e7cc7d0065889e.bindPopup(popup_0c46185154794ba5a3b7adf540d1249f)
;
var marker_99cf32d645d247cf9c4be4e0006a094b = L.marker(
[40.3458, -3.8249],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_5fe0451f4f7f4a8180040d297b1eb2db = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_99cf32d645d247cf9c4be4e0006a094b.setIcon(icon_5fe0451f4f7f4a8180040d297b1eb2db);
var popup_32e162fcad834106b35f01522f396f2d = L.popup({"maxWidth": "100%"});
var html_84e47568d5bb4291baf78ca2e4fc7c23 = $(`<div id="html_84e47568d5bb4291baf78ca2e4fc7c23" style="width: 100.0%; height: 100.0%;">Number delivered: 5</div>`)[0];
popup_32e162fcad834106b35f01522f396f2d.setContent(html_84e47568d5bb4291baf78ca2e4fc7c23);
marker_99cf32d645d247cf9c4be4e0006a094b.bindPopup(popup_32e162fcad834106b35f01522f396f2d)
;
var marker_6da2f01aad0946689e298415ae7f99a9 = L.marker(
[40.4239, -3.5326],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_d6c292f2e2f14c819f8e80f576672408 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_6da2f01aad0946689e298415ae7f99a9.setIcon(icon_d6c292f2e2f14c819f8e80f576672408);
var popup_da78822774ed4ef488a25220bc81b49a = L.popup({"maxWidth": "100%"});
var html_ec4638dc3f644b0298a8e8bdaaf4b582 = $(`<div id="html_ec4638dc3f644b0298a8e8bdaaf4b582" style="width: 100.0%; height: 100.0%;">Number delivered: 5</div>`)[0];
popup_da78822774ed4ef488a25220bc81b49a.setContent(html_ec4638dc3f644b0298a8e8bdaaf4b582);
marker_6da2f01aad0946689e298415ae7f99a9.bindPopup(popup_da78822774ed4ef488a25220bc81b49a)
;
var marker_8bd7e2cb176c4390bf982d1fd42be850 = L.marker(
[41.6333, 2.4],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_9cdfa02aa1c64b6287ef2110b52b6e78 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_8bd7e2cb176c4390bf982d1fd42be850.setIcon(icon_9cdfa02aa1c64b6287ef2110b52b6e78);
var popup_3132b1f229c04d68b50de21264370367 = L.popup({"maxWidth": "100%"});
var html_a2dfc3420eb546369fc508101773cf39 = $(`<div id="html_a2dfc3420eb546369fc508101773cf39" style="width: 100.0%; height: 100.0%;">Number delivered: 5</div>`)[0];
popup_3132b1f229c04d68b50de21264370367.setContent(html_a2dfc3420eb546369fc508101773cf39);
marker_8bd7e2cb176c4390bf982d1fd42be850.bindPopup(popup_3132b1f229c04d68b50de21264370367)
;
var marker_ca97041eea7d43bc84ad8f21efdc23c2 = L.marker(
[40.4165, -3.7026],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_f416987725a0474e871f5c0815e65955 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ca97041eea7d43bc84ad8f21efdc23c2.setIcon(icon_f416987725a0474e871f5c0815e65955);
var popup_4a6225bc614b414385cf8c29f7e31730 = L.popup({"maxWidth": "100%"});
var html_5a2727f315964cfcb5fbfe71f5faf2f5 = $(`<div id="html_5a2727f315964cfcb5fbfe71f5faf2f5" style="width: 100.0%; height: 100.0%;">Number delivered: 4</div>`)[0];
popup_4a6225bc614b414385cf8c29f7e31730.setContent(html_5a2727f315964cfcb5fbfe71f5faf2f5);
marker_ca97041eea7d43bc84ad8f21efdc23c2.bindPopup(popup_4a6225bc614b414385cf8c29f7e31730)
;
var marker_2fe8d6e7abaf4c04920fd02a411a7f90 = L.marker(
[40.482, -3.36],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_4afb1ea44ed243cdb8b88dd9c0b6599b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2fe8d6e7abaf4c04920fd02a411a7f90.setIcon(icon_4afb1ea44ed243cdb8b88dd9c0b6599b);
var popup_ad9764d220234503bae77b855d3e8398 = L.popup({"maxWidth": "100%"});
var html_17547efc02c241d5be5d0da3fe715816 = $(`<div id="html_17547efc02c241d5be5d0da3fe715816" style="width: 100.0%; height: 100.0%;">Number delivered: 4</div>`)[0];
popup_ad9764d220234503bae77b855d3e8398.setContent(html_17547efc02c241d5be5d0da3fe715816);
marker_2fe8d6e7abaf4c04920fd02a411a7f90.bindPopup(popup_ad9764d220234503bae77b855d3e8398)
;
var marker_7df2be4bab34445080d8ada812b9a599 = L.marker(
[40.4165, -3.7026],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_05646cb7127948088c42b2e5996d659d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_7df2be4bab34445080d8ada812b9a599.setIcon(icon_05646cb7127948088c42b2e5996d659d);
var popup_a6d856e23e25497e935e3daf4633bc1d = L.popup({"maxWidth": "100%"});
var html_331a53e72db848e2aca0a94a336a8056 = $(`<div id="html_331a53e72db848e2aca0a94a336a8056" style="width: 100.0%; height: 100.0%;">Number delivered: 4</div>`)[0];
popup_a6d856e23e25497e935e3daf4633bc1d.setContent(html_331a53e72db848e2aca0a94a336a8056);
marker_7df2be4bab34445080d8ada812b9a599.bindPopup(popup_a6d856e23e25497e935e3daf4633bc1d)
;
var marker_d9089323dd124f95831d3c55ff77c275 = L.marker(
[40.4165, -3.7026],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_6b0d0e5117c248f7912c1834a56c77ba = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d9089323dd124f95831d3c55ff77c275.setIcon(icon_6b0d0e5117c248f7912c1834a56c77ba);
var popup_676ca6612f15463bb1d5e8cdea4b92ee = L.popup({"maxWidth": "100%"});
var html_30651ab45fcb4c5e9a263b9738e1132d = $(`<div id="html_30651ab45fcb4c5e9a263b9738e1132d" style="width: 100.0%; height: 100.0%;">Number delivered: 4</div>`)[0];
popup_676ca6612f15463bb1d5e8cdea4b92ee.setContent(html_30651ab45fcb4c5e9a263b9738e1132d);
marker_d9089323dd124f95831d3c55ff77c275.bindPopup(popup_676ca6612f15463bb1d5e8cdea4b92ee)
;
var marker_ca17a0a599bc45758a736fda3bbdfcda = L.marker(
[40.5475, -3.642],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_1f22839d4c1d40ea9651498a88658196 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ca17a0a599bc45758a736fda3bbdfcda.setIcon(icon_1f22839d4c1d40ea9651498a88658196);
var popup_341b71d9233941288e87dd1f2aca25ac = L.popup({"maxWidth": "100%"});
var html_2382a7c1c2e546d3a8521781cb0b7ca0 = $(`<div id="html_2382a7c1c2e546d3a8521781cb0b7ca0" style="width: 100.0%; height: 100.0%;">Number delivered: 4</div>`)[0];
popup_341b71d9233941288e87dd1f2aca25ac.setContent(html_2382a7c1c2e546d3a8521781cb0b7ca0);
marker_ca17a0a599bc45758a736fda3bbdfcda.bindPopup(popup_341b71d9233941288e87dd1f2aca25ac)
;
var marker_aef1945c418946e78539c0e8fdb89f23 = L.marker(
[40.1908, -3.6789],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_4928b610f4bc481c9f89a78ccfcf6be9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_aef1945c418946e78539c0e8fdb89f23.setIcon(icon_4928b610f4bc481c9f89a78ccfcf6be9);
var popup_e1d1db18b2f24cc1807281b015384e9e = L.popup({"maxWidth": "100%"});
var html_7f07483fecdc44b09bec5b7c61a24478 = $(`<div id="html_7f07483fecdc44b09bec5b7c61a24478" style="width: 100.0%; height: 100.0%;">Number delivered: 3</div>`)[0];
popup_e1d1db18b2f24cc1807281b015384e9e.setContent(html_7f07483fecdc44b09bec5b7c61a24478);
marker_aef1945c418946e78539c0e8fdb89f23.bindPopup(popup_e1d1db18b2f24cc1807281b015384e9e)
;
var marker_68aba2504e1048bd8458842f7b2e6f50 = L.marker(
[40.4165, -3.7026],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_9dc933f36c104efd987bcd5c8f087c34 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_68aba2504e1048bd8458842f7b2e6f50.setIcon(icon_9dc933f36c104efd987bcd5c8f087c34);
var popup_86d04f45388949c68db5a8ae965a5f1d = L.popup({"maxWidth": "100%"});
var html_ec48e2d2b3b549c8a248de91c60e3978 = $(`<div id="html_ec48e2d2b3b549c8a248de91c60e3978" style="width: 100.0%; height: 100.0%;">Number delivered: 3</div>`)[0];
popup_86d04f45388949c68db5a8ae965a5f1d.setContent(html_ec48e2d2b3b549c8a248de91c60e3978);
marker_68aba2504e1048bd8458842f7b2e6f50.bindPopup(popup_86d04f45388949c68db5a8ae965a5f1d)
;
var marker_ad93939097664194a68ebdc211e1dc5d = L.marker(
[40.5526, -3.2508],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_acda90e9364f4d7d85c7475974bdf3ea = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ad93939097664194a68ebdc211e1dc5d.setIcon(icon_acda90e9364f4d7d85c7475974bdf3ea);
var popup_0d257ce7ec10498197bb77041fb2a939 = L.popup({"maxWidth": "100%"});
var html_5b6866234d5148be81c3dd77d4c6d11d = $(`<div id="html_5b6866234d5148be81c3dd77d4c6d11d" style="width: 100.0%; height: 100.0%;">Number delivered: 3</div>`)[0];
popup_0d257ce7ec10498197bb77041fb2a939.setContent(html_5b6866234d5148be81c3dd77d4c6d11d);
marker_ad93939097664194a68ebdc211e1dc5d.bindPopup(popup_0d257ce7ec10498197bb77041fb2a939)
;
var marker_936b8bbc7e3b4965924c0ad78e7b250f = L.marker(
[41.5748, 2.2331],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_7a9daf6f100d4473987968e984053698 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_936b8bbc7e3b4965924c0ad78e7b250f.setIcon(icon_7a9daf6f100d4473987968e984053698);
var popup_4c9cc97edd8b4c10835796a4a91f474c = L.popup({"maxWidth": "100%"});
var html_bb81a4807e3945de8a3c13fb98a1ac0a = $(`<div id="html_bb81a4807e3945de8a3c13fb98a1ac0a" style="width: 100.0%; height: 100.0%;">Number delivered: 3</div>`)[0];
popup_4c9cc97edd8b4c10835796a4a91f474c.setContent(html_bb81a4807e3945de8a3c13fb98a1ac0a);
marker_936b8bbc7e3b4965924c0ad78e7b250f.bindPopup(popup_4c9cc97edd8b4c10835796a4a91f474c)
;
var marker_2dfc6c0280a54f87b04c1605e6f6f39d = L.marker(
[39.9635, -4.8308],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_d8c3405912ca46d98ecb74ff5c4911b9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2dfc6c0280a54f87b04c1605e6f6f39d.setIcon(icon_d8c3405912ca46d98ecb74ff5c4911b9);
var popup_dd59e5b0981040889949f097b02d056a = L.popup({"maxWidth": "100%"});
var html_78bbc0c4f17e437495ef1712cfee51d6 = $(`<div id="html_78bbc0c4f17e437495ef1712cfee51d6" style="width: 100.0%; height: 100.0%;">Number delivered: 3</div>`)[0];
popup_dd59e5b0981040889949f097b02d056a.setContent(html_78bbc0c4f17e437495ef1712cfee51d6);
marker_2dfc6c0280a54f87b04c1605e6f6f39d.bindPopup(popup_dd59e5b0981040889949f097b02d056a)
;
var marker_e4485939088c4c6c873f189c58e5bb16 = L.marker(
[40.2842, -3.7941],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_681f22f75fd24a8e8ce07b1c96d3eb97 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_e4485939088c4c6c873f189c58e5bb16.setIcon(icon_681f22f75fd24a8e8ce07b1c96d3eb97);
var popup_09f13029528048ffb2e1b37000b8163b = L.popup({"maxWidth": "100%"});
var html_03e9d89095a947ce8f725132f716d58a = $(`<div id="html_03e9d89095a947ce8f725132f716d58a" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_09f13029528048ffb2e1b37000b8163b.setContent(html_03e9d89095a947ce8f725132f716d58a);
marker_e4485939088c4c6c873f189c58e5bb16.bindPopup(popup_09f13029528048ffb2e1b37000b8163b)
;
var marker_d69e336caeef49af99d0149664df4e49 = L.marker(
[40.532, -3.4784],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_c829532056d844d49d690ffd0e237ebb = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d69e336caeef49af99d0149664df4e49.setIcon(icon_c829532056d844d49d690ffd0e237ebb);
var popup_c81e3b2dd13e44a6b85d1423d30a5f3a = L.popup({"maxWidth": "100%"});
var html_5ff09fe6e347429bac9d602c4be20b78 = $(`<div id="html_5ff09fe6e347429bac9d602c4be20b78" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_c81e3b2dd13e44a6b85d1423d30a5f3a.setContent(html_5ff09fe6e347429bac9d602c4be20b78);
marker_d69e336caeef49af99d0149664df4e49.bindPopup(popup_c81e3b2dd13e44a6b85d1423d30a5f3a)
;
var marker_71283fe3ef054c8cbb5ea1c9bf877dce = L.marker(
[40.068, -3.738],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_20c37ca836cd401da6240c93d4dc11b7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_71283fe3ef054c8cbb5ea1c9bf877dce.setIcon(icon_20c37ca836cd401da6240c93d4dc11b7);
var popup_725022e50e57402a98ded8fa7c1d6c6e = L.popup({"maxWidth": "100%"});
var html_9f4d31cf61f14981be8a68fd8ec8b367 = $(`<div id="html_9f4d31cf61f14981be8a68fd8ec8b367" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_725022e50e57402a98ded8fa7c1d6c6e.setContent(html_9f4d31cf61f14981be8a68fd8ec8b367);
marker_71283fe3ef054c8cbb5ea1c9bf877dce.bindPopup(popup_725022e50e57402a98ded8fa7c1d6c6e)
;
var marker_e727a12f5f6e4d72a32af54c2acfdd21 = L.marker(
[41.3888, 2.159],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_28e55ae3792f4a76ba55af96fafeba89 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_e727a12f5f6e4d72a32af54c2acfdd21.setIcon(icon_28e55ae3792f4a76ba55af96fafeba89);
var popup_fa9fd65208844fae846ede035a162217 = L.popup({"maxWidth": "100%"});
var html_4fa45cbecc5c4b5aa8d375c3bdd649a1 = $(`<div id="html_4fa45cbecc5c4b5aa8d375c3bdd649a1" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_fa9fd65208844fae846ede035a162217.setContent(html_4fa45cbecc5c4b5aa8d375c3bdd649a1);
marker_e727a12f5f6e4d72a32af54c2acfdd21.bindPopup(popup_fa9fd65208844fae846ede035a162217)
;
var marker_80f5ec5eaa744e53849679b7cfbac010 = L.marker(
[41.5266, 2.1868],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_651edbce44c74512b2ea9adf093fd749 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_80f5ec5eaa744e53849679b7cfbac010.setIcon(icon_651edbce44c74512b2ea9adf093fd749);
var popup_2b7b3b21e2184104b6cbe34df98ecc5b = L.popup({"maxWidth": "100%"});
var html_7f5dad6ff2974ae6af6f14a7569a5492 = $(`<div id="html_7f5dad6ff2974ae6af6f14a7569a5492" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_2b7b3b21e2184104b6cbe34df98ecc5b.setContent(html_7f5dad6ff2974ae6af6f14a7569a5492);
marker_80f5ec5eaa744e53849679b7cfbac010.bindPopup(popup_2b7b3b21e2184104b6cbe34df98ecc5b)
;
var marker_37af0a9dccf34c33adcd7e760ef4cb73 = L.marker(
[41.3324, 1.6496],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);
var icon_27ad4b372dc14947ad3df5582441f5fc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_37af0a9dccf34c33adcd7e760ef4cb73.setIcon(icon_27ad4b372dc14947ad3df5582441f5fc);
var popup_9d67ba1dbfca427d9c13b063613ea382 = L.popup({"maxWidth": "100%"});
var html_7b566f71e93840f0aab02dd918620691 = $(`<div id="html_7b566f71e93840f0aab02dd918620691" style="width: 100.0%; height: 100.0%;">Number delivered: 2</div>`)[0];
popup_9d67ba1dbfca427d9c13b063613ea382.setContent(html_7b566f71e93840f0aab02dd918620691);
marker_37af0a9dccf34c33adcd7e760ef4cb73.bindPopup(popup_9d67ba1dbfca427d9c13b063613ea382)
;
var marker_fc501620189547d8a10175aabd4dd274 = L.marker(
[40.5937, -3.2453],
{}
).addTo(map_1cdf49b2153a4f5fbdb9922733fc35c3);