-
Notifications
You must be signed in to change notification settings - Fork 0
/
map_stations.html
5948 lines (3528 loc) · 296 KB
/
map_stations.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_59556a86bac7475aafb95f01d22b9625 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<style>@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');</style>
<p style="font-family: 'Roboto Slab', sans-serif;color:blue;">This map is part of the article <a href="http://www.simboli.eu/blog/lets-analyze-e-bike-sharing-stations-of-madrid/">'let’s analyze e-bike sharing stations of Madrid'</a>.</p>
<div style="position:
fixed;
background-color:white;
bottom: 50px;
left: 50px;
width: 150px;
height: 90px;
border:2px solid black;
padding: 3px;
z-index:9999;
font-size:14px;
font-family:Aleo, Times New Roman">Legend<br/>
<i style="color:red">City center</i><br>
<i style="color:orange">Other neighborhoods</i>
</div>
<style>@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');</style>
<div style="position:
fixed;
top: 50px;
left: 100px;
width: 450px;
height: 60px;
background-color: white
border:2px solid red;
padding: 3px;
z-index:9999;
font-size:13px;
font-family:font-family: 'Roboto Slab', sans-serif">
<h3 style="text-shadow: 0 0 2px white; color:#0000b3">Map of BiciMAD stations in Madrid</h3>
</div>
<div class="folium-map" id="map_59556a86bac7475aafb95f01d22b9625" ></div>
</body>
<script>
var bounds = null;
var map_59556a86bac7475aafb95f01d22b9625 = L.map(
'map_59556a86bac7475aafb95f01d22b9625', {
center: [40.417, -3.703],
zoom: 13,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_5dfdae52b387494582e5201bf79cdfd6 = L.tileLayer(
'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png',
{
"attribution": "<a href=https://www.simboli.eu/>Simboli.EU</a>",
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_59556a86bac7475aafb95f01d22b9625);
var marker_ca311a03d60641918d135dc4fb3cddf6 = L.marker(
[40.4168961, -3.7024255],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_6023911abd444d0fb683dc8cf6b294b8 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_ca311a03d60641918d135dc4fb3cddf6.setIcon(icon_6023911abd444d0fb683dc8cf6b294b8);
var popup_073f5e3a9b104f1ebf84a0b979dda9ec = L.popup({maxWidth: '300'
});
var html_3c9856de9fb446e5bede7c4c7a8de0fa = $(`<div id="html_3c9856de9fb446e5bede7c4c7a8de0fa" style="width: 100.0%; height: 100.0%;"><h4>Station Puerta del Sol A</h4> <b>Number: </b>1a<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Puerta del Sol nº 1<br/> <b>Latitude: </b>40.41689<br/> <b>Longitude: </b>-3.70242<br/><br/> <a href="http://www.google.com/maps/place/40.4168961,-3.7024255">Open with Google Maps</a></div>`)[0];
popup_073f5e3a9b104f1ebf84a0b979dda9ec.setContent(html_3c9856de9fb446e5bede7c4c7a8de0fa);
marker_ca311a03d60641918d135dc4fb3cddf6.bindPopup(popup_073f5e3a9b104f1ebf84a0b979dda9ec)
;
var marker_7872aa1770aa4771b6e6f029cf192290 = L.marker(
[40.4170009, -3.7024207000000002],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_53b8b641511f4fe79aa9cd90e81b2bf4 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_7872aa1770aa4771b6e6f029cf192290.setIcon(icon_53b8b641511f4fe79aa9cd90e81b2bf4);
var popup_931bee4663dc4c8a99a36cef0e982e2b = L.popup({maxWidth: '300'
});
var html_02f03ba504894baca97e43ab3f6aaf24 = $(`<div id="html_02f03ba504894baca97e43ab3f6aaf24" style="width: 100.0%; height: 100.0%;"><h4>Station Puerta del Sol B</h4> <b>Number: </b>1b<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Puerta del Sol nº 1<br/> <b>Latitude: </b>40.41700<br/> <b>Longitude: </b>-3.70242<br/><br/> <a href="http://www.google.com/maps/place/40.4170009,-3.7024207000000002">Open with Google Maps</a></div>`)[0];
popup_931bee4663dc4c8a99a36cef0e982e2b.setContent(html_02f03ba504894baca97e43ab3f6aaf24);
marker_7872aa1770aa4771b6e6f029cf192290.bindPopup(popup_931bee4663dc4c8a99a36cef0e982e2b)
;
var marker_13cc1fb3b8a24d1888638ddedd34a4e1 = L.marker(
[40.4205886, -3.7058415],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_d8ccfff993894afa82abb6d9d22b520d = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_13cc1fb3b8a24d1888638ddedd34a4e1.setIcon(icon_d8ccfff993894afa82abb6d9d22b520d);
var popup_fd47423fedb9447f97ea516a2f216078 = L.popup({maxWidth: '300'
});
var html_75a2bb3da3e24e26925cbbeb0b45915f = $(`<div id="html_75a2bb3da3e24e26925cbbeb0b45915f" style="width: 100.0%; height: 100.0%;"><h4>Station Miguel Moya</h4> <b>Number: </b>2<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Miguel Moya nº 1<br/> <b>Latitude: </b>40.42058<br/> <b>Longitude: </b>-3.70584<br/><br/> <a href="http://www.google.com/maps/place/40.4205886,-3.7058415">Open with Google Maps</a></div>`)[0];
popup_fd47423fedb9447f97ea516a2f216078.setContent(html_75a2bb3da3e24e26925cbbeb0b45915f);
marker_13cc1fb3b8a24d1888638ddedd34a4e1.bindPopup(popup_fd47423fedb9447f97ea516a2f216078)
;
var marker_d365b26826634410b359af14ae108806 = L.marker(
[40.4302937, -3.7069171],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_bbec9a713d9248ff9f189a609a594929 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'orange',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_d365b26826634410b359af14ae108806.setIcon(icon_bbec9a713d9248ff9f189a609a594929);
var popup_a9acf3d157ee4a7aadd86f9a1efdab6a = L.popup({maxWidth: '300'
});
var html_4f0df772caea49d581b15fde982783e8 = $(`<div id="html_4f0df772caea49d581b15fde982783e8" style="width: 100.0%; height: 100.0%;"><h4>Station Plaza Conde Suchil</h4> <b>Number: </b>3<br/> <b>Neighbours: </b>Chamberí<br/> <b>Total bases: </b>18<br/> <b>Address: </b>Plaza del Conde Suchil nº 2-4<br/> <b>Latitude: </b>40.43029<br/> <b>Longitude: </b>-3.70691<br/><br/> <a href="http://www.google.com/maps/place/40.4302937,-3.7069171">Open with Google Maps</a></div>`)[0];
popup_a9acf3d157ee4a7aadd86f9a1efdab6a.setContent(html_4f0df772caea49d581b15fde982783e8);
marker_d365b26826634410b359af14ae108806.bindPopup(popup_a9acf3d157ee4a7aadd86f9a1efdab6a)
;
var marker_81d116ee36894cdbacce6c450d4fa2e6 = L.marker(
[40.4285524, -3.7025875],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_52c7b16fd9f9424cb7d8397316df6118 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_81d116ee36894cdbacce6c450d4fa2e6.setIcon(icon_52c7b16fd9f9424cb7d8397316df6118);
var popup_5a3c7224d33d475bbfd1f759c1e43624 = L.popup({maxWidth: '300'
});
var html_539e2554b5ad46deb99ab99eea5b2e31 = $(`<div id="html_539e2554b5ad46deb99ab99eea5b2e31" style="width: 100.0%; height: 100.0%;"><h4>Station Malasaña</h4> <b>Number: </b>4<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Manuela Malasaña nº 5<br/> <b>Latitude: </b>40.42855<br/> <b>Longitude: </b>-3.70258<br/><br/> <a href="http://www.google.com/maps/place/40.4285524,-3.7025875">Open with Google Maps</a></div>`)[0];
popup_5a3c7224d33d475bbfd1f759c1e43624.setContent(html_539e2554b5ad46deb99ab99eea5b2e31);
marker_81d116ee36894cdbacce6c450d4fa2e6.bindPopup(popup_5a3c7224d33d475bbfd1f759c1e43624)
;
var marker_b220430e33cd42e484bcd9a1317d97a0 = L.marker(
[40.428528, -3.7020599],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_b5fd19d395c841a8b2a1cd3fb205f0f7 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_b220430e33cd42e484bcd9a1317d97a0.setIcon(icon_b5fd19d395c841a8b2a1cd3fb205f0f7);
var popup_6f7b5ba4404e44e9b7dde858ad868063 = L.popup({maxWidth: '300'
});
var html_dad64e3715d84c2fa328da18224684c0 = $(`<div id="html_dad64e3715d84c2fa328da18224684c0" style="width: 100.0%; height: 100.0%;"><h4>Station Fuencarral</h4> <b>Number: </b>5<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>27<br/> <b>Address: </b>Calle Fuencarral nº 108<br/> <b>Latitude: </b>40.42852<br/> <b>Longitude: </b>-3.70205<br/><br/> <a href="http://www.google.com/maps/place/40.428528,-3.7020599">Open with Google Maps</a></div>`)[0];
popup_6f7b5ba4404e44e9b7dde858ad868063.setContent(html_dad64e3715d84c2fa328da18224684c0);
marker_b220430e33cd42e484bcd9a1317d97a0.bindPopup(popup_6f7b5ba4404e44e9b7dde858ad868063)
;
var marker_b5b4735aed204b2594f28e255594eac2 = L.marker(
[40.424147999999995, -3.6984470000000003],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_75c5cdfe45224e79861a7248e2419b9b = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_b5b4735aed204b2594f28e255594eac2.setIcon(icon_75c5cdfe45224e79861a7248e2419b9b);
var popup_1eae650084e84090a552701f90a484ce = L.popup({maxWidth: '300'
});
var html_c2db82b516234fe0ac4c6cb9f8d8ceff = $(`<div id="html_c2db82b516234fe0ac4c6cb9f8d8ceff" style="width: 100.0%; height: 100.0%;"><h4>Station Colegio Arquitectos</h4> <b>Number: </b>6<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Hortaleza nº 63<br/> <b>Latitude: </b>40.42414<br/> <b>Longitude: </b>-3.69844<br/><br/> <a href="http://www.google.com/maps/place/40.424147999999995,-3.6984470000000003">Open with Google Maps</a></div>`)[0];
popup_1eae650084e84090a552701f90a484ce.setContent(html_c2db82b516234fe0ac4c6cb9f8d8ceff);
marker_b5b4735aed204b2594f28e255594eac2.bindPopup(popup_1eae650084e84090a552701f90a484ce)
;
var marker_ce5104ca687f4230978fc8b32d7b9a2d = L.marker(
[40.4251906, -3.6977714999999995],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_01ce32025f054a23861639b29f3ac461 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_ce5104ca687f4230978fc8b32d7b9a2d.setIcon(icon_01ce32025f054a23861639b29f3ac461);
var popup_c75f53113c3443e4a0a5fbb3d16aebed = L.popup({maxWidth: '300'
});
var html_760f597f171a4c8cb1d037897ebbbcc0 = $(`<div id="html_760f597f171a4c8cb1d037897ebbbcc0" style="width: 100.0%; height: 100.0%;"><h4>Station Hortaleza</h4> <b>Number: </b>7<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>21<br/> <b>Address: </b>Calle Hortaleza nº 75<br/> <b>Latitude: </b>40.42519<br/> <b>Longitude: </b>-3.69777<br/><br/> <a href="http://www.google.com/maps/place/40.4251906,-3.6977714999999995">Open with Google Maps</a></div>`)[0];
popup_c75f53113c3443e4a0a5fbb3d16aebed.setContent(html_760f597f171a4c8cb1d037897ebbbcc0);
marker_ce5104ca687f4230978fc8b32d7b9a2d.bindPopup(popup_c75f53113c3443e4a0a5fbb3d16aebed)
;
var marker_3792b5e2041a49209dc79b0b866e9a2a = L.marker(
[40.427868200000006, -3.6954403],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_a8b912e0279b412ab314a5685d5439ef = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'orange',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_3792b5e2041a49209dc79b0b866e9a2a.setIcon(icon_a8b912e0279b412ab314a5685d5439ef);
var popup_ae3076a32c354d7e84ee64164296fa46 = L.popup({maxWidth: '300'
});
var html_e510c5af06b247009b82f7a9250e8d76 = $(`<div id="html_e510c5af06b247009b82f7a9250e8d76" style="width: 100.0%; height: 100.0%;"><h4>Station Alonso Martínez</h4> <b>Number: </b>8<br/> <b>Neighbours: </b>Chamberí<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Plaza de Alonso Martínez nº 5<br/> <b>Latitude: </b>40.42786<br/> <b>Longitude: </b>-3.69544<br/><br/> <a href="http://www.google.com/maps/place/40.427868200000006,-3.6954403">Open with Google Maps</a></div>`)[0];
popup_ae3076a32c354d7e84ee64164296fa46.setContent(html_e510c5af06b247009b82f7a9250e8d76);
marker_3792b5e2041a49209dc79b0b866e9a2a.bindPopup(popup_ae3076a32c354d7e84ee64164296fa46)
;
var marker_20e04255552049bf9d73dd5e589910fc = L.marker(
[40.4156057, -3.7095084000000003],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_e5eb4940a9bc4e3c90e2899823f2152a = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_20e04255552049bf9d73dd5e589910fc.setIcon(icon_e5eb4940a9bc4e3c90e2899823f2152a);
var popup_3442a35ea5c64e608e97632c456637b8 = L.popup({maxWidth: '300'
});
var html_5d572f5af2eb4e488b349a30e800d005 = $(`<div id="html_5d572f5af2eb4e488b349a30e800d005" style="width: 100.0%; height: 100.0%;"><h4>Station Plaza de San Miguel</h4> <b>Number: </b>9<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Plaza de San Miguel nº 9<br/> <b>Latitude: </b>40.41560<br/> <b>Longitude: </b>-3.70950<br/><br/> <a href="http://www.google.com/maps/place/40.4156057,-3.7095084000000003">Open with Google Maps</a></div>`)[0];
popup_3442a35ea5c64e608e97632c456637b8.setContent(html_5d572f5af2eb4e488b349a30e800d005);
marker_20e04255552049bf9d73dd5e589910fc.bindPopup(popup_3442a35ea5c64e608e97632c456637b8)
;
var marker_e09abe16c8f1491a8032b3ccfdfb480f = L.marker(
[40.4250863, -3.6918807],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_fe9fc51d23a54042a3459f92df2c4ee0 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_e09abe16c8f1491a8032b3ccfdfb480f.setIcon(icon_fe9fc51d23a54042a3459f92df2c4ee0);
var popup_b148fc849a58457d9ee1b23432801e7c = L.popup({maxWidth: '300'
});
var html_f0b6ecaeef2a4271b46e25c2fe77d280 = $(`<div id="html_f0b6ecaeef2a4271b46e25c2fe77d280" style="width: 100.0%; height: 100.0%;"><h4>Station Marqués de la Ensenada</h4> <b>Number: </b>10<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Marqués de la Ensenada nº 16<br/> <b>Latitude: </b>40.42508<br/> <b>Longitude: </b>-3.69188<br/><br/> <a href="http://www.google.com/maps/place/40.4250863,-3.6918807">Open with Google Maps</a></div>`)[0];
popup_b148fc849a58457d9ee1b23432801e7c.setContent(html_f0b6ecaeef2a4271b46e25c2fe77d280);
marker_e09abe16c8f1491a8032b3ccfdfb480f.bindPopup(popup_b148fc849a58457d9ee1b23432801e7c)
;
var marker_fd356b24b9464665844ad6a02f55159e = L.marker(
[40.42694829999999, -3.7035918],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_64ffa7c2d65c4e02ad0a19664d6cd3c7 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_fd356b24b9464665844ad6a02f55159e.setIcon(icon_64ffa7c2d65c4e02ad0a19664d6cd3c7);
var popup_dc53f9ba95f444bda6bef9570ea8b832 = L.popup({maxWidth: '300'
});
var html_112d1228401a489c90f37f2a31478562 = $(`<div id="html_112d1228401a489c90f37f2a31478562" style="width: 100.0%; height: 100.0%;"><h4>Station San Andrés</h4> <b>Number: </b>11<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle San Andrés nº 18<br/> <b>Latitude: </b>40.42694<br/> <b>Longitude: </b>-3.70359<br/><br/> <a href="http://www.google.com/maps/place/40.42694829999999,-3.7035918">Open with Google Maps</a></div>`)[0];
popup_dc53f9ba95f444bda6bef9570ea8b832.setContent(html_112d1228401a489c90f37f2a31478562);
marker_fd356b24b9464665844ad6a02f55159e.bindPopup(popup_dc53f9ba95f444bda6bef9570ea8b832)
;
var marker_9c001240908048da93bbc5450a4192a6 = L.marker(
[40.42842460000001, -3.7061931000000006],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_5bd800baef064149b5d6d100692ef714 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_9c001240908048da93bbc5450a4192a6.setIcon(icon_5bd800baef064149b5d6d100692ef714);
var popup_d5688519a7134eb1a4c249524774ada1 = L.popup({maxWidth: '300'
});
var html_e9b81979cf9f479ba21bfa6619b002ce = $(`<div id="html_e9b81979cf9f479ba21bfa6619b002ce" style="width: 100.0%; height: 100.0%;"><h4>Station San Hermenegildo</h4> <b>Number: </b>12<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle San Bernardo nº 85<br/> <b>Latitude: </b>40.42842<br/> <b>Longitude: </b>-3.70619<br/><br/> <a href="http://www.google.com/maps/place/40.42842460000001,-3.7061931000000006">Open with Google Maps</a></div>`)[0];
popup_d5688519a7134eb1a4c249524774ada1.setContent(html_e9b81979cf9f479ba21bfa6619b002ce);
marker_9c001240908048da93bbc5450a4192a6.bindPopup(popup_d5688519a7134eb1a4c249524774ada1)
;
var marker_19d8bdcb9db24750a67bbdf0f9c52029 = L.marker(
[40.4273264, -3.7104417],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_9df9aed4bb334ff69451d492d5e599e5 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_19d8bdcb9db24750a67bbdf0f9c52029.setIcon(icon_9df9aed4bb334ff69451d492d5e599e5);
var popup_ad0ddc88095f4ce497eb445644574d67 = L.popup({maxWidth: '300'
});
var html_f3ff16683de440cbb8d6c3e7f8181f36 = $(`<div id="html_f3ff16683de440cbb8d6c3e7f8181f36" style="width: 100.0%; height: 100.0%;"><h4>Station Conde Duque</h4> <b>Number: </b>13<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Conde Duque nº 22<br/> <b>Latitude: </b>40.42732<br/> <b>Longitude: </b>-3.71044<br/><br/> <a href="http://www.google.com/maps/place/40.4273264,-3.7104417">Open with Google Maps</a></div>`)[0];
popup_ad0ddc88095f4ce497eb445644574d67.setContent(html_f3ff16683de440cbb8d6c3e7f8181f36);
marker_19d8bdcb9db24750a67bbdf0f9c52029.bindPopup(popup_ad0ddc88095f4ce497eb445644574d67)
;
var marker_4abac109d40a45cb99e2ed8fba742a1d = L.marker(
[40.426095700000005, -3.713479],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_ceeccfeb900d4b16885d600164416ab0 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'orange',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_4abac109d40a45cb99e2ed8fba742a1d.setIcon(icon_ceeccfeb900d4b16885d600164416ab0);
var popup_0c4989e5b7854f2b9c2b7eba09f9a4ac = L.popup({maxWidth: '300'
});
var html_fcece8ad7da84dea888b251e285a49c5 = $(`<div id="html_fcece8ad7da84dea888b251e285a49c5" style="width: 100.0%; height: 100.0%;"><h4>Station Ventura Rodríguez</h4> <b>Number: </b>14<br/> <b>Neighbours: </b>Moncloa-Aravaca<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Ventura Rodríguez nº 2<br/> <b>Latitude: </b>40.42609<br/> <b>Longitude: </b>-3.71347<br/><br/> <a href="http://www.google.com/maps/place/40.426095700000005,-3.713479">Open with Google Maps</a></div>`)[0];
popup_0c4989e5b7854f2b9c2b7eba09f9a4ac.setContent(html_fcece8ad7da84dea888b251e285a49c5);
marker_4abac109d40a45cb99e2ed8fba742a1d.bindPopup(popup_0c4989e5b7854f2b9c2b7eba09f9a4ac)
;
var marker_2ab3a7caccd94c3ea82d66834fbb7353 = L.marker(
[40.426164899999996, -3.7073763999999994],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_179fdc8639aa4a05ad99533ebfb829d6 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_2ab3a7caccd94c3ea82d66834fbb7353.setIcon(icon_179fdc8639aa4a05ad99533ebfb829d6);
var popup_eec5e9a163214176b4bc1f11ec94b989 = L.popup({maxWidth: '300'
});
var html_b6b8ef0b050b4c1ca3b3e94f4687acbd = $(`<div id="html_b6b8ef0b050b4c1ca3b3e94f4687acbd" style="width: 100.0%; height: 100.0%;"><h4>Station San Vicente Ferrer</h4> <b>Number: </b>15<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>21<br/> <b>Address: </b>Calle San Vicente Ferrer nº 64<br/> <b>Latitude: </b>40.42616<br/> <b>Longitude: </b>-3.70737<br/><br/> <a href="http://www.google.com/maps/place/40.426164899999996,-3.7073763999999994">Open with Google Maps</a></div>`)[0];
popup_eec5e9a163214176b4bc1f11ec94b989.setContent(html_b6b8ef0b050b4c1ca3b3e94f4687acbd);
marker_2ab3a7caccd94c3ea82d66834fbb7353.bindPopup(popup_eec5e9a163214176b4bc1f11ec94b989)
;
var marker_0192f01ce78f4b45a36d1bb96e68cbbd = L.marker(
[40.4230721, -3.7075065],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_07d327de37954029846d271f60acfd52 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_0192f01ce78f4b45a36d1bb96e68cbbd.setIcon(icon_07d327de37954029846d271f60acfd52);
var popup_de3789d75fa84beb989115c565d46865 = L.popup({maxWidth: '300'
});
var html_a8725d16ea4a4307b077d9c774972b68 = $(`<div id="html_a8725d16ea4a4307b077d9c774972b68" style="width: 100.0%; height: 100.0%;"><h4>Station San Bernardo</h4> <b>Number: </b>16<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>21<br/> <b>Address: </b>Calle San Bernardo nº 22<br/> <b>Latitude: </b>40.42307<br/> <b>Longitude: </b>-3.70750<br/><br/> <a href="http://www.google.com/maps/place/40.4230721,-3.7075065">Open with Google Maps</a></div>`)[0];
popup_de3789d75fa84beb989115c565d46865.setContent(html_a8725d16ea4a4307b077d9c774972b68);
marker_0192f01ce78f4b45a36d1bb96e68cbbd.bindPopup(popup_de3789d75fa84beb989115c565d46865)
;
var marker_23883c166ba848188f6082b0cb718bb3 = L.marker(
[40.4232649, -3.7038312000000007],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_c19697f696774712988580c8c5b090bf = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_23883c166ba848188f6082b0cb718bb3.setIcon(icon_c19697f696774712988580c8c5b090bf);
var popup_2e340cd96dab46ac9633414be7dbdd01 = L.popup({maxWidth: '300'
});
var html_255a01db61e24c028652d24716597f99 = $(`<div id="html_255a01db61e24c028652d24716597f99" style="width: 100.0%; height: 100.0%;"><h4>Station Carlos Cambronero</h4> <b>Number: </b>17<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Plaza de Carlos Cambronero nº 2<br/> <b>Latitude: </b>40.42326<br/> <b>Longitude: </b>-3.70383<br/><br/> <a href="http://www.google.com/maps/place/40.4232649,-3.7038312000000007">Open with Google Maps</a></div>`)[0];
popup_2e340cd96dab46ac9633414be7dbdd01.setContent(html_255a01db61e24c028652d24716597f99);
marker_23883c166ba848188f6082b0cb718bb3.bindPopup(popup_2e340cd96dab46ac9633414be7dbdd01)
;
var marker_005d6bf4968a4ab9bbb0ee943d6e93c1 = L.marker(
[40.4207773, -3.6996502],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_5fa273fd04734a0aa37e6331e4269f1a = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_005d6bf4968a4ab9bbb0ee943d6e93c1.setIcon(icon_5fa273fd04734a0aa37e6331e4269f1a);
var popup_6d00d59488844b3fbf3b7dd48ff58175 = L.popup({maxWidth: '300'
});
var html_92dfcaa87a4d4592a3819c5196b9931c = $(`<div id="html_92dfcaa87a4d4592a3819c5196b9931c" style="width: 100.0%; height: 100.0%;"><h4>Station Plaza de Pedro Zerolo</h4> <b>Number: </b>18<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Plaza de Pedro Zerolo<br/> <b>Latitude: </b>40.42077<br/> <b>Longitude: </b>-3.69965<br/><br/> <a href="http://www.google.com/maps/place/40.4207773,-3.6996502">Open with Google Maps</a></div>`)[0];
popup_6d00d59488844b3fbf3b7dd48ff58175.setContent(html_92dfcaa87a4d4592a3819c5196b9931c);
marker_005d6bf4968a4ab9bbb0ee943d6e93c1.bindPopup(popup_6d00d59488844b3fbf3b7dd48ff58175)
;
var marker_890a18b1033741f6a02cd0811e2ef93f = L.marker(
[40.42186160000001, -3.6954983],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_2f439e04361347fcbdca0b5ba0689d03 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_890a18b1033741f6a02cd0811e2ef93f.setIcon(icon_2f439e04361347fcbdca0b5ba0689d03);
var popup_fb8dce3b70e14810bc42fca592fb6294 = L.popup({maxWidth: '300'
});
var html_b64b32376e004de09dbfc3cbd1d2905b = $(`<div id="html_b64b32376e004de09dbfc3cbd1d2905b" style="width: 100.0%; height: 100.0%;"><h4>Station Prim</h4> <b>Number: </b>19<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Prim nº 2<br/> <b>Latitude: </b>40.42186<br/> <b>Longitude: </b>-3.69549<br/><br/> <a href="http://www.google.com/maps/place/40.42186160000001,-3.6954983">Open with Google Maps</a></div>`)[0];
popup_fb8dce3b70e14810bc42fca592fb6294.setContent(html_b64b32376e004de09dbfc3cbd1d2905b);
marker_890a18b1033741f6a02cd0811e2ef93f.bindPopup(popup_fb8dce3b70e14810bc42fca592fb6294)
;
var marker_d9a43de1b79143a4847e964b917c302b = L.marker(
[40.4192342, -3.6954615],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_0a0450b9303e4999ad7ac777993c3174 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_d9a43de1b79143a4847e964b917c302b.setIcon(icon_0a0450b9303e4999ad7ac777993c3174);
var popup_a2249f6a28f04087ba3a534c361e2d76 = L.popup({maxWidth: '300'
});
var html_42da9fc4c0b6458681bd52e2fe2840a0 = $(`<div id="html_42da9fc4c0b6458681bd52e2fe2840a0" style="width: 100.0%; height: 100.0%;"><h4>Station Banco de España A</h4> <b>Number: </b>20a<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>30<br/> <b>Address: </b>Calle Alcalá nº 49<br/> <b>Latitude: </b>40.41923<br/> <b>Longitude: </b>-3.69546<br/><br/> <a href="http://www.google.com/maps/place/40.4192342,-3.6954615">Open with Google Maps</a></div>`)[0];
popup_a2249f6a28f04087ba3a534c361e2d76.setContent(html_42da9fc4c0b6458681bd52e2fe2840a0);
marker_d9a43de1b79143a4847e964b917c302b.bindPopup(popup_a2249f6a28f04087ba3a534c361e2d76)
;
var marker_70c4bc8caea549f0ac054aeac74b4a32 = L.marker(
[40.4197872, -3.7014814],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_e340c26cc309481989bf8c13af56d051 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_70c4bc8caea549f0ac054aeac74b4a32.setIcon(icon_e340c26cc309481989bf8c13af56d051);
var popup_64817c034c6a4a7ea23385f44486d7c2 = L.popup({maxWidth: '300'
});
var html_c3a75ea20307476a996b1a7547ebcdb1 = $(`<div id="html_c3a75ea20307476a996b1a7547ebcdb1" style="width: 100.0%; height: 100.0%;"><h4>Station Red de San Luis A</h4> <b>Number: </b>21a<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Montera nº 48<br/> <b>Latitude: </b>40.41978<br/> <b>Longitude: </b>-3.70148<br/><br/> <a href="http://www.google.com/maps/place/40.4197872,-3.7014814">Open with Google Maps</a></div>`)[0];
popup_64817c034c6a4a7ea23385f44486d7c2.setContent(html_c3a75ea20307476a996b1a7547ebcdb1);
marker_70c4bc8caea549f0ac054aeac74b4a32.bindPopup(popup_64817c034c6a4a7ea23385f44486d7c2)
;
var marker_9dc5f72865644a08835782a5c6112577 = L.marker(
[40.419720399999996, -3.7015235],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_0fd9d135ec8f445eac6b963ae59751b9 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_9dc5f72865644a08835782a5c6112577.setIcon(icon_0fd9d135ec8f445eac6b963ae59751b9);
var popup_a1e59c3b13434d3b8f06caed58e6ad19 = L.popup({maxWidth: '300'
});
var html_f37739f459c24aa7ae515ec2ca6a12ea = $(`<div id="html_f37739f459c24aa7ae515ec2ca6a12ea" style="width: 100.0%; height: 100.0%;"><h4>Station Red de San Luis B</h4> <b>Number: </b>21b<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Montera nº 47<br/> <b>Latitude: </b>40.41972<br/> <b>Longitude: </b>-3.70152<br/><br/> <a href="http://www.google.com/maps/place/40.419720399999996,-3.7015235">Open with Google Maps</a></div>`)[0];
popup_a1e59c3b13434d3b8f06caed58e6ad19.setContent(html_f37739f459c24aa7ae515ec2ca6a12ea);
marker_9dc5f72865644a08835782a5c6112577.bindPopup(popup_a1e59c3b13434d3b8f06caed58e6ad19)
;
var marker_049763fabfeb48bb8565c4ed35aa0897 = L.marker(
[40.4200783, -3.7065376000000003],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_d499eb88487847b3bb18bcbcdbf2a1fd = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_049763fabfeb48bb8565c4ed35aa0897.setIcon(icon_d499eb88487847b3bb18bcbcdbf2a1fd);
var popup_f7bbfce5dacc46c59fefead172b33343 = L.popup({maxWidth: '300'
});
var html_89ab6c0d4b594a69a2b58db081d56fc8 = $(`<div id="html_89ab6c0d4b594a69a2b58db081d56fc8" style="width: 100.0%; height: 100.0%;"><h4>Station Jacometrezo</h4> <b>Number: </b>22<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Jacometrezo nº 3<br/> <b>Latitude: </b>40.42007<br/> <b>Longitude: </b>-3.70653<br/><br/> <a href="http://www.google.com/maps/place/40.4200783,-3.7065376000000003">Open with Google Maps</a></div>`)[0];
popup_f7bbfce5dacc46c59fefead172b33343.setContent(html_89ab6c0d4b594a69a2b58db081d56fc8);
marker_049763fabfeb48bb8565c4ed35aa0897.bindPopup(popup_f7bbfce5dacc46c59fefead172b33343)
;
var marker_8b6beda3303145d48e4c13f9bea2fd4b = L.marker(
[40.4197429, -3.7080733],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_9800fb97aec2423b9bfcee225d0795cd = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_8b6beda3303145d48e4c13f9bea2fd4b.setIcon(icon_9800fb97aec2423b9bfcee225d0795cd);
var popup_9551f4dacbce463c9d42ed5c64bf5892 = L.popup({maxWidth: '300'
});
var html_7e9483a5f0c24beeb53d3b0ddfbf994c = $(`<div id="html_7e9483a5f0c24beeb53d3b0ddfbf994c" style="width: 100.0%; height: 100.0%;"><h4>Station Santo Domingo</h4> <b>Number: </b>23<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Plaza de Santo Domingo nº 1<br/> <b>Latitude: </b>40.41974<br/> <b>Longitude: </b>-3.70807<br/><br/> <a href="http://www.google.com/maps/place/40.4197429,-3.7080733">Open with Google Maps</a></div>`)[0];
popup_9551f4dacbce463c9d42ed5c64bf5892.setContent(html_7e9483a5f0c24beeb53d3b0ddfbf994c);
marker_8b6beda3303145d48e4c13f9bea2fd4b.bindPopup(popup_9551f4dacbce463c9d42ed5c64bf5892)
;
var marker_bc0979780f514405a0ddc9a99fbb83fa = L.marker(
[40.4182146, -3.7103538],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_b07d140ad6d648a29b7b7536a767cef5 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});
marker_bc0979780f514405a0ddc9a99fbb83fa.setIcon(icon_b07d140ad6d648a29b7b7536a767cef5);
var popup_51c56de57ce645a6be0560d96a536add = L.popup({maxWidth: '300'
});
var html_8cb97fdfd92448c9abf2177739870c04 = $(`<div id="html_8cb97fdfd92448c9abf2177739870c04" style="width: 100.0%; height: 100.0%;"><h4>Station Palacio de Oriente</h4> <b>Number: </b>24<br/> <b>Neighbours: </b>Centro<br/> <b>Total bases: </b>24<br/> <b>Address: </b>Calle Carlos III nº 1<br/> <b>Latitude: </b>40.41821<br/> <b>Longitude: </b>-3.71035<br/><br/> <a href="http://www.google.com/maps/place/40.4182146,-3.7103538">Open with Google Maps</a></div>`)[0];
popup_51c56de57ce645a6be0560d96a536add.setContent(html_8cb97fdfd92448c9abf2177739870c04);
marker_bc0979780f514405a0ddc9a99fbb83fa.bindPopup(popup_51c56de57ce645a6be0560d96a536add)
;
var marker_9b49674728a74a7bae68be5f51b4532f = L.marker(
[40.4173114, -3.7064809000000003],
{
icon: new L.Icon.Default()
}
).addTo(map_59556a86bac7475aafb95f01d22b9625);
var icon_0d9114e19c624749bb5df4e0f2f8a034 = L.AwesomeMarkers.icon({
icon: 'bicycle',
iconColor: 'white',
markerColor: 'red',
prefix: 'fa',
extraClasses: 'fa-rotate-0'
});