-
Notifications
You must be signed in to change notification settings - Fork 1
/
lu_map.html
8515 lines (4173 loc) · 479 KB
/
lu_map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.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://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_d975904bcce371cbaa82148766caebc2 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/Control.FullScreen.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/Control.FullScreen.css"/>
</head>
<body>
<div class="folium-map" id="map_d975904bcce371cbaa82148766caebc2" ></div>
</body>
<script>
var map_d975904bcce371cbaa82148766caebc2 = L.map(
"map_d975904bcce371cbaa82148766caebc2",
{
center: [51.509865, -0.118092],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_81386365c9419420dbd30e52ba761041 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_81386365c9419420dbd30e52ba761041.addTo(map_d975904bcce371cbaa82148766caebc2);
var marker_756970f550cd3129f6ce5fcfc175ac6b = L.marker(
[51.5403, 0.127],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_6ee5eff99d975d2b8dd672babf3bde01 = L.popup({"maxWidth": "100%"});
var html_1b9511c414bc4441f0d31bb20c6f2b93 = $(`<div id="html_1b9511c414bc4441f0d31bb20c6f2b93" style="width: 100.0%; height: 100.0%;">Becontree</div>`)[0];
popup_6ee5eff99d975d2b8dd672babf3bde01.setContent(html_1b9511c414bc4441f0d31bb20c6f2b93);
marker_756970f550cd3129f6ce5fcfc175ac6b.bindPopup(popup_6ee5eff99d975d2b8dd672babf3bde01)
;
var marker_0cc664961d37a85502f70b413b496c04 = L.marker(
[51.512, -0.1031],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_49e58545ee52d0f140f2aa0c2986fe69 = L.popup({"maxWidth": "100%"});
var html_644f55d9365f08a54aaa8ebfd94b72cd = $(`<div id="html_644f55d9365f08a54aaa8ebfd94b72cd" style="width: 100.0%; height: 100.0%;">Blackfriars</div>`)[0];
popup_49e58545ee52d0f140f2aa0c2986fe69.setContent(html_644f55d9365f08a54aaa8ebfd94b72cd);
marker_0cc664961d37a85502f70b413b496c04.bindPopup(popup_49e58545ee52d0f140f2aa0c2986fe69)
;
var marker_e6333a5c38f7987b3518e5aef51c4afc = L.marker(
[51.6071, -0.1243],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_d61c898eae0dae14c6ffdf7da79147c5 = L.popup({"maxWidth": "100%"});
var html_bba6dee7b9311568353123f6b4758539 = $(`<div id="html_bba6dee7b9311568353123f6b4758539" style="width: 100.0%; height: 100.0%;">Bounds Green</div>`)[0];
popup_d61c898eae0dae14c6ffdf7da79147c5.setContent(html_bba6dee7b9311568353123f6b4758539);
marker_e6333a5c38f7987b3518e5aef51c4afc.bindPopup(popup_d61c898eae0dae14c6ffdf7da79147c5)
;
var marker_4334937c8efee66d0fddf81a4c79db8f = L.marker(
[51.5481, -0.1188],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_7640ddcfa5b9632b4f5918dda96d7765 = L.popup({"maxWidth": "100%"});
var html_36e318bde0664c3d952ed31fc7114594 = $(`<div id="html_36e318bde0664c3d952ed31fc7114594" style="width: 100.0%; height: 100.0%;">Caledonian Road</div>`)[0];
popup_7640ddcfa5b9632b4f5918dda96d7765.setContent(html_36e318bde0664c3d952ed31fc7114594);
marker_4334937c8efee66d0fddf81a4c79db8f.bindPopup(popup_7640ddcfa5b9632b4f5918dda96d7765)
;
var marker_d6a61405b8e20161c692ec2b1d9056be = L.marker(
[51.5051, -0.0209],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_bfc1f5f62c55b747c3117180f0934f25 = L.popup({"maxWidth": "100%"});
var html_880befd5c8841bf8e3025b35a4844f8d = $(`<div id="html_880befd5c8841bf8e3025b35a4844f8d" style="width: 100.0%; height: 100.0%;">Canary Wharf</div>`)[0];
popup_bfc1f5f62c55b747c3117180f0934f25.setContent(html_880befd5c8841bf8e3025b35a4844f8d);
marker_d6a61405b8e20161c692ec2b1d9056be.bindPopup(popup_bfc1f5f62c55b747c3117180f0934f25)
;
var marker_c1ce58690e7c8204e6ec9e011617163e = L.marker(
[51.5147, 0.0082],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_1ff6cdc77c4dc4771980a39d257b4204 = L.popup({"maxWidth": "100%"});
var html_e67bf14f919b22e12bc77a15bfcc612a = $(`<div id="html_e67bf14f919b22e12bc77a15bfcc612a" style="width: 100.0%; height: 100.0%;">Canning Town</div>`)[0];
popup_1ff6cdc77c4dc4771980a39d257b4204.setContent(html_e67bf14f919b22e12bc77a15bfcc612a);
marker_c1ce58690e7c8204e6ec9e011617163e.bindPopup(popup_1ff6cdc77c4dc4771980a39d257b4204)
;
var marker_137be1deab829ac7d34d6f1bdb1a2365 = L.marker(
[51.5185, -0.1111],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_6a86c8e435c71d1fe568567598d3b417 = L.popup({"maxWidth": "100%"});
var html_b9a763af7bec51cbfb56895d5ea8d47e = $(`<div id="html_b9a763af7bec51cbfb56895d5ea8d47e" style="width: 100.0%; height: 100.0%;">Chancery Lane</div>`)[0];
popup_6a86c8e435c71d1fe568567598d3b417.setContent(html_b9a763af7bec51cbfb56895d5ea8d47e);
marker_137be1deab829ac7d34d6f1bdb1a2365.bindPopup(popup_6a86c8e435c71d1fe568567598d3b417)
;
var marker_ecf6973a03f39c117118a3a7c5094f07 = L.marker(
[51.7052, -0.611],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_ed77c98ca7ad720282c0b13649d2aceb = L.popup({"maxWidth": "100%"});
var html_362540feb3c4a32a128ab75fbe2a478e = $(`<div id="html_362540feb3c4a32a128ab75fbe2a478e" style="width: 100.0%; height: 100.0%;">Chesham</div>`)[0];
popup_ed77c98ca7ad720282c0b13649d2aceb.setContent(html_362540feb3c4a32a128ab75fbe2a478e);
marker_ecf6973a03f39c117118a3a7c5094f07.bindPopup(popup_ed77c98ca7ad720282c0b13649d2aceb)
;
var marker_183b4b32af1a1e62001a9eb14b66e1ec = L.marker(
[51.4649, -0.1299],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_d2110be375b53552516a9197baa15a67 = L.popup({"maxWidth": "100%"});
var html_29d9d7a0804f378e2e9fd880c5e19d17 = $(`<div id="html_29d9d7a0804f378e2e9fd880c5e19d17" style="width: 100.0%; height: 100.0%;">Clapham North</div>`)[0];
popup_d2110be375b53552516a9197baa15a67.setContent(html_29d9d7a0804f378e2e9fd880c5e19d17);
marker_183b4b32af1a1e62001a9eb14b66e1ec.bindPopup(popup_d2110be375b53552516a9197baa15a67)
;
var marker_7d82a78ef92a66e7cc9d9351f25fb276 = L.marker(
[51.5129, -0.1243],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_3d515484ff239efd3bdd6a3250346bed = L.popup({"maxWidth": "100%"});
var html_6a679c4cff89ffd698d7b53b6ae0229b = $(`<div id="html_6a679c4cff89ffd698d7b53b6ae0229b" style="width: 100.0%; height: 100.0%;">Covent Garden</div>`)[0];
popup_3d515484ff239efd3bdd6a3250346bed.setContent(html_6a679c4cff89ffd698d7b53b6ae0229b);
marker_7d82a78ef92a66e7cc9d9351f25fb276.bindPopup(popup_3d515484ff239efd3bdd6a3250346bed)
;
var marker_7ac582d89dcaa0b4fb6a5683455363af = L.marker(
[51.647, -0.4412],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_04f92041b631c60c7e4560eb9a385d79 = L.popup({"maxWidth": "100%"});
var html_c6bf286fc6704f14bc3bf23a952c521c = $(`<div id="html_c6bf286fc6704f14bc3bf23a952c521c" style="width: 100.0%; height: 100.0%;">Croxley</div>`)[0];
popup_04f92041b631c60c7e4560eb9a385d79.setContent(html_c6bf286fc6704f14bc3bf23a952c521c);
marker_7ac582d89dcaa0b4fb6a5683455363af.bindPopup(popup_04f92041b631c60c7e4560eb9a385d79)
;
var marker_bde2ea79626b68280d2e1fcf2736d0be = L.marker(
[51.4827, -0.0096],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_73b2e5727730d0aec968c9e6d5e63d32 = L.popup({"maxWidth": "100%"});
var html_1385f09d00696e8a8acc412533c63442 = $(`<div id="html_1385f09d00696e8a8acc412533c63442" style="width: 100.0%; height: 100.0%;">Cutty Sark</div>`)[0];
popup_73b2e5727730d0aec968c9e6d5e63d32.setContent(html_1385f09d00696e8a8acc412533c63442);
marker_bde2ea79626b68280d2e1fcf2736d0be.bindPopup(popup_73b2e5727730d0aec968c9e6d5e63d32)
;
var marker_1ed3153ccb9f212824604378309a6097 = L.marker(
[51.492, -0.1973],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_8b1c8a68b430335d56eb71e038c60a02 = L.popup({"maxWidth": "100%"});
var html_03a5527efd529583b369893edefdc521 = $(`<div id="html_03a5527efd529583b369893edefdc521" style="width: 100.0%; height: 100.0%;">Earl's Court</div>`)[0];
popup_8b1c8a68b430335d56eb71e038c60a02.setContent(html_03a5527efd529583b369893edefdc521);
marker_1ed3153ccb9f212824604378309a6097.bindPopup(popup_8b1c8a68b430335d56eb71e038c60a02)
;
var marker_6602ff9b2e2e0233a80ea7bdc77e9156 = L.marker(
[51.6137, -0.275],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_67fc7a6472f4172edf04b4133767c912 = L.popup({"maxWidth": "100%"});
var html_80cec6c63d27aa07d38bd7184b759280 = $(`<div id="html_80cec6c63d27aa07d38bd7184b759280" style="width: 100.0%; height: 100.0%;">Edgware</div>`)[0];
popup_67fc7a6472f4172edf04b4133767c912.setContent(html_80cec6c63d27aa07d38bd7184b759280);
marker_6602ff9b2e2e0233a80ea7bdc77e9156.bindPopup(popup_67fc7a6472f4172edf04b4133767c912)
;
var marker_0369ad321f03e9f7ef6d6df4894cb760 = L.marker(
[51.5203, -0.17],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_2c7d7d0beb8c61bb8f6fcaca7eb2257b = L.popup({"maxWidth": "100%"});
var html_4433b787701d219e3e4c415c21decdf7 = $(`<div id="html_4433b787701d219e3e4c415c21decdf7" style="width: 100.0%; height: 100.0%;">Edgware Road (C)</div>`)[0];
popup_2c7d7d0beb8c61bb8f6fcaca7eb2257b.setContent(html_4433b787701d219e3e4c415c21decdf7);
marker_0369ad321f03e9f7ef6d6df4894cb760.bindPopup(popup_2c7d7d0beb8c61bb8f6fcaca7eb2257b)
;
var marker_10ae0db893dd162a3c9907d35f2d2c53 = L.marker(
[51.6937, 0.1139],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_9bea2abbf442d00f09f6c28f5edda2f9 = L.popup({"maxWidth": "100%"});
var html_d684fd48cbf6b883d4768247b0b3895e = $(`<div id="html_d684fd48cbf6b883d4768247b0b3895e" style="width: 100.0%; height: 100.0%;">Epping</div>`)[0];
popup_9bea2abbf442d00f09f6c28f5edda2f9.setContent(html_d684fd48cbf6b883d4768247b0b3895e);
marker_10ae0db893dd162a3c9907d35f2d2c53.bindPopup(popup_9bea2abbf442d00f09f6c28f5edda2f9)
;
var marker_2c3e6f04caa35cc9b54d9ad82e915a58 = L.marker(
[51.5282, -0.1337],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_381dea4ed479652ad05ef9dafd0c05d4 = L.popup({"maxWidth": "100%"});
var html_2ad7362009719ddf24112a751e692c98 = $(`<div id="html_2ad7362009719ddf24112a751e692c98" style="width: 100.0%; height: 100.0%;">Euston</div>`)[0];
popup_381dea4ed479652ad05ef9dafd0c05d4.setContent(html_2ad7362009719ddf24112a751e692c98);
marker_2c3e6f04caa35cc9b54d9ad82e915a58.bindPopup(popup_381dea4ed479652ad05ef9dafd0c05d4)
;
var marker_e5be4aa85bdf7a488d27b165ce878e64 = L.marker(
[51.4915, -0.2754],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_9a1b9169d65f2a51b60aab4714ed1a88 = L.popup({"maxWidth": "100%"});
var html_67f5af4bbf304f4b44f90101f261ab1c = $(`<div id="html_67f5af4bbf304f4b44f90101f261ab1c" style="width: 100.0%; height: 100.0%;">Gunnersbury</div>`)[0];
popup_9a1b9169d65f2a51b60aab4714ed1a88.setContent(html_67f5af4bbf304f4b44f90101f261ab1c);
marker_e5be4aa85bdf7a488d27b165ce878e64.bindPopup(popup_9a1b9169d65f2a51b60aab4714ed1a88)
;
var marker_7a9ad1871360159b67cc234f67953a21 = L.marker(
[51.603, 0.0933],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_64f4abb486839b67fc13f752970afacf = L.popup({"maxWidth": "100%"});
var html_f4551186cf56e82bddf968b4826cd6f4 = $(`<div id="html_f4551186cf56e82bddf968b4826cd6f4" style="width: 100.0%; height: 100.0%;">Hainault</div>`)[0];
popup_64f4abb486839b67fc13f752970afacf.setContent(html_f4551186cf56e82bddf968b4826cd6f4);
marker_7a9ad1871360159b67cc234f67953a21.bindPopup(popup_64f4abb486839b67fc13f752970afacf)
;
var marker_4ddba4d77d19d6e24f7659bfecaa26be = L.marker(
[51.5568, -0.178],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_446a36b252a4851bf2b1cfabc793b534 = L.popup({"maxWidth": "100%"});
var html_e7d921bafbccacbeec1f1a3112e783f8 = $(`<div id="html_e7d921bafbccacbeec1f1a3112e783f8" style="width: 100.0%; height: 100.0%;">Hampstead</div>`)[0];
popup_446a36b252a4851bf2b1cfabc793b534.setContent(html_e7d921bafbccacbeec1f1a3112e783f8);
marker_4ddba4d77d19d6e24f7659bfecaa26be.bindPopup(popup_446a36b252a4851bf2b1cfabc793b534)
;
var marker_2cae87dc0700b5aee65c9fb8d1e1cd7a = L.marker(
[51.5302, -0.2933],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_c5a937f04357a0a5408770bb0a9b9ae9 = L.popup({"maxWidth": "100%"});
var html_ba4bde4f640dcc9417958bc2bafec95d = $(`<div id="html_ba4bde4f640dcc9417958bc2bafec95d" style="width: 100.0%; height: 100.0%;">Hanger Lane</div>`)[0];
popup_c5a937f04357a0a5408770bb0a9b9ae9.setContent(html_ba4bde4f640dcc9417958bc2bafec95d);
marker_2cae87dc0700b5aee65c9fb8d1e1cd7a.bindPopup(popup_c5a937f04357a0a5408770bb0a9b9ae9)
;
var marker_208c5ac19c9cca8c05271979d31de221 = L.marker(
[51.4598, -0.4476],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_ee48a7fb3d6688c959e9d33848d60f4e = L.popup({"maxWidth": "100%"});
var html_14685d88384a152c40c0fe417fd8b6be = $(`<div id="html_14685d88384a152c40c0fe417fd8b6be" style="width: 100.0%; height: 100.0%;">Heathrow Terminal 4</div>`)[0];
popup_ee48a7fb3d6688c959e9d33848d60f4e.setContent(html_14685d88384a152c40c0fe417fd8b6be);
marker_208c5ac19c9cca8c05271979d31de221.bindPopup(popup_ee48a7fb3d6688c959e9d33848d60f4e)
;
var marker_47ee7cbb076e66bae70130b8e436bdeb = L.marker(
[51.6503, -0.1943],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_9b349d85ae3e31a2c01f4c6e7b3880b9 = L.popup({"maxWidth": "100%"});
var html_15f97b1ee911c09bfd6b9a7046ac4297 = $(`<div id="html_15f97b1ee911c09bfd6b9a7046ac4297" style="width: 100.0%; height: 100.0%;">High Barnet</div>`)[0];
popup_9b349d85ae3e31a2c01f4c6e7b3880b9.setContent(html_15f97b1ee911c09bfd6b9a7046ac4297);
marker_47ee7cbb076e66bae70130b8e436bdeb.bindPopup(popup_9b349d85ae3e31a2c01f4c6e7b3880b9)
;
var marker_2f12b8424537cfe277de915166d84c09 = L.marker(
[51.5538, -0.4499],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_af688d7f5adf95dded8f2d12063b2a2a = L.popup({"maxWidth": "100%"});
var html_85da649a9dabbaebe98cfafe88d417a9 = $(`<div id="html_85da649a9dabbaebe98cfafe88d417a9" style="width: 100.0%; height: 100.0%;">Hillingdon</div>`)[0];
popup_af688d7f5adf95dded8f2d12063b2a2a.setContent(html_85da649a9dabbaebe98cfafe88d417a9);
marker_2f12b8424537cfe277de915166d84c09.bindPopup(popup_af688d7f5adf95dded8f2d12063b2a2a)
;
var marker_49542fcd8558aecb627fcf95ccb58730 = L.marker(
[51.5539, 0.2184],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_89d41f6209f23e1006d0f4b207d376da = L.popup({"maxWidth": "100%"});
var html_11a74819c89095dffd255d650f2638c2 = $(`<div id="html_11a74819c89095dffd255d650f2638c2" style="width: 100.0%; height: 100.0%;">Hornchurch</div>`)[0];
popup_89d41f6209f23e1006d0f4b207d376da.setContent(html_11a74819c89095dffd255d650f2638c2);
marker_49542fcd8558aecb627fcf95ccb58730.bindPopup(popup_89d41f6209f23e1006d0f4b207d376da)
;
var marker_87141d2ad7df762f1a6e7f5c0b673cb1 = L.marker(
[51.5683, 0.0083],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_818a7aa45958fd90aa538b8791afe4c3 = L.popup({"maxWidth": "100%"});
var html_2b2c6869084a633ccd58e91b8cdcd018 = $(`<div id="html_2b2c6869084a633ccd58e91b8cdcd018" style="width: 100.0%; height: 100.0%;">Leytonstone</div>`)[0];
popup_818a7aa45958fd90aa538b8791afe4c3.setContent(html_2b2c6869084a633ccd58e91b8cdcd018);
marker_87141d2ad7df762f1a6e7f5c0b673cb1.bindPopup(popup_818a7aa45958fd90aa538b8791afe4c3)
;
var marker_eca437b4391b4559733bd60b31d38e13 = L.marker(
[51.6412, 0.0558],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_bb500ed207e9b1cd9f3fe989d325153c = L.popup({"maxWidth": "100%"});
var html_aa123b1d1a43c6e94787d22beef15c21 = $(`<div id="html_aa123b1d1a43c6e94787d22beef15c21" style="width: 100.0%; height: 100.0%;">Loughton</div>`)[0];
popup_bb500ed207e9b1cd9f3fe989d325153c.setContent(html_aa123b1d1a43c6e94787d22beef15c21);
marker_eca437b4391b4559733bd60b31d38e13.bindPopup(popup_bb500ed207e9b1cd9f3fe989d325153c)
;
var marker_002bcf53d73db3299d43c1c4c5e422c7 = L.marker(
[51.5249, -0.0332],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_f96228f538c0a214897b92d83a158003 = L.popup({"maxWidth": "100%"});
var html_1a9df9257077cf7696e818a9f4af780e = $(`<div id="html_1a9df9257077cf7696e818a9f4af780e" style="width: 100.0%; height: 100.0%;">Mile End</div>`)[0];
popup_f96228f538c0a214897b92d83a158003.setContent(html_1a9df9257077cf7696e818a9f4af780e);
marker_002bcf53d73db3299d43c1c4c5e422c7.bindPopup(popup_f96228f538c0a214897b92d83a158003)
;
var marker_caf1e7e35287cda25e46efd8b61f1a9a = L.marker(
[51.6476, -0.1318],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_49c7b058c7c61357d48dca639eb960f4 = L.popup({"maxWidth": "100%"});
var html_f44a7a730f7337b4f14abf52209a81b2 = $(`<div id="html_f44a7a730f7337b4f14abf52209a81b2" style="width: 100.0%; height: 100.0%;">Oakwood</div>`)[0];
popup_49c7b058c7c61357d48dca639eb960f4.setContent(html_f44a7a730f7337b4f14abf52209a81b2);
marker_caf1e7e35287cda25e46efd8b61f1a9a.bindPopup(popup_49c7b058c7c61357d48dca639eb960f4)
;
var marker_551e216076fee6350ae84b57ac6e5e5d = L.marker(
[51.5077, -0.0173],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_ea71cf373f685ded143958f5c4537135 = L.popup({"maxWidth": "100%"});
var html_b59a61b094458ec788a577181654d253 = $(`<div id="html_b59a61b094458ec788a577181654d253" style="width: 100.0%; height: 100.0%;">Poplar</div>`)[0];
popup_ea71cf373f685ded143958f5c4537135.setContent(html_b59a61b094458ec788a577181654d253);
marker_551e216076fee6350ae84b57ac6e5e5d.bindPopup(popup_ea71cf373f685ded143958f5c4537135)
;
var marker_f3cd14331d463132753306bd2323f8bc = L.marker(
[51.5093, 0.0336],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_187b7b9a11e67108f7751e3d99224b38 = L.popup({"maxWidth": "100%"});
var html_af9846921d4e3b74bbdb573ddcfc6053 = $(`<div id="html_af9846921d4e3b74bbdb573ddcfc6053" style="width: 100.0%; height: 100.0%;">Prince Regent</div>`)[0];
popup_187b7b9a11e67108f7751e3d99224b38.setContent(html_af9846921d4e3b74bbdb573ddcfc6053);
marker_f3cd14331d463132753306bd2323f8bc.bindPopup(popup_187b7b9a11e67108f7751e3d99224b38)
;
var marker_89f410b19853ef4d7bf777322d27a61e = L.marker(
[51.4633, -0.3013],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_954ca24e8d368696502df78ca0213c29 = L.popup({"maxWidth": "100%"});
var html_f1062cc581daf73008375240fa903ba1 = $(`<div id="html_f1062cc581daf73008375240fa903ba1" style="width: 100.0%; height: 100.0%;">Richmond</div>`)[0];
popup_954ca24e8d368696502df78ca0213c29.setContent(html_f1062cc581daf73008375240fa903ba1);
marker_89f410b19853ef4d7bf777322d27a61e.bindPopup(popup_954ca24e8d368696502df78ca0213c29)
;
var marker_6515aa1b2f4e1355606dc3ccfb82dd7f = L.marker(
[51.5822, -0.0749],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_cf59f96f3f0dd4dcf8c2ab4d4ab987c0 = L.popup({"maxWidth": "100%"});
var html_40fff29a1138db4220adcdfea0061969 = $(`<div id="html_40fff29a1138db4220adcdfea0061969" style="width: 100.0%; height: 100.0%;">Seven Sisters</div>`)[0];
popup_cf59f96f3f0dd4dcf8c2ab4d4ab987c0.setContent(html_40fff29a1138db4220adcdfea0061969);
marker_6515aa1b2f4e1355606dc3ccfb82dd7f.bindPopup(popup_cf59f96f3f0dd4dcf8c2ab4d4ab987c0)
;
var marker_fa82c7456d44efdea7cec1e70ca4bfbc = L.marker(
[51.6322, -0.128],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_7952959b3a78d1ec4e5002fe4f74e59b = L.popup({"maxWidth": "100%"});
var html_b797077ebdf96ce9d180daad28f6fba1 = $(`<div id="html_b797077ebdf96ce9d180daad28f6fba1" style="width: 100.0%; height: 100.0%;">Southgate</div>`)[0];
popup_7952959b3a78d1ec4e5002fe4f74e59b.setContent(html_b797077ebdf96ce9d180daad28f6fba1);
marker_fa82c7456d44efdea7cec1e70ca4bfbc.bindPopup(popup_7952959b3a78d1ec4e5002fe4f74e59b)
;
var marker_c76708fadb297ef09af4a94231701a1b = L.marker(
[51.5569, -0.3988],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_f5a96bea090314c0cbe39e6051a06327 = L.popup({"maxWidth": "100%"});
var html_5ad3f1c560c9cfdb06b79102b2e2a779 = $(`<div id="html_5ad3f1c560c9cfdb06b79102b2e2a779" style="width: 100.0%; height: 100.0%;">South Ruislip</div>`)[0];
popup_f5a96bea090314c0cbe39e6051a06327.setContent(html_5ad3f1c560c9cfdb06b79102b2e2a779);
marker_c76708fadb297ef09af4a94231701a1b.bindPopup(popup_f5a96bea090314c0cbe39e6051a06327)
;
var marker_fcfb57c32c711ce0e28748cb32a4665f = L.marker(
[51.5569, -0.3366],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_5ad662935de4fed45259870280387616 = L.popup({"maxWidth": "100%"});
var html_f5bc79b018c717d121d2d410ddb8a61f = $(`<div id="html_f5bc79b018c717d121d2d410ddb8a61f" style="width: 100.0%; height: 100.0%;">Sudbury Hill</div>`)[0];
popup_5ad662935de4fed45259870280387616.setContent(html_f5bc79b018c717d121d2d410ddb8a61f);
marker_fcfb57c32c711ce0e28748cb32a4665f.bindPopup(popup_5ad662935de4fed45259870280387616)
;
var marker_dcd36a401be04ac5afec1c214ddeb066 = L.marker(
[51.4861, -0.1253],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_db61f7ce20396b73ce637f9eaf9ac19c = L.popup({"maxWidth": "100%"});
var html_2c5cde064b740e6bd040cab14ec5f97c = $(`<div id="html_2c5cde064b740e6bd040cab14ec5f97c" style="width: 100.0%; height: 100.0%;">Vauxhall</div>`)[0];
popup_db61f7ce20396b73ce637f9eaf9ac19c.setContent(html_2c5cde064b740e6bd040cab14ec5f97c);
marker_dcd36a401be04ac5afec1c214ddeb066.bindPopup(popup_db61f7ce20396b73ce637f9eaf9ac19c)
;
var marker_779329d52f645db2607674f20cdefeff = L.marker(
[51.5235, -0.1835],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_04d1c451816c0acd5b521333a883ad26 = L.popup({"maxWidth": "100%"});
var html_16d0e86f4e9e5ab76200d949d1d48877 = $(`<div id="html_16d0e86f4e9e5ab76200d949d1d48877" style="width: 100.0%; height: 100.0%;">Warwick Avenue</div>`)[0];
popup_04d1c451816c0acd5b521333a883ad26.setContent(html_16d0e86f4e9e5ab76200d949d1d48877);
marker_779329d52f645db2607674f20cdefeff.bindPopup(popup_04d1c451816c0acd5b521333a883ad26)
;
var marker_4244d3400423b3cad5576b53318da6a6 = L.marker(
[51.521, -0.2011],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_3c6999a90a1b41bd01f4fce55cb3c946 = L.popup({"maxWidth": "100%"});
var html_fe0e825573df8fd134e09136ffe4b6a2 = $(`<div id="html_fe0e825573df8fd134e09136ffe4b6a2" style="width: 100.0%; height: 100.0%;">Westbourne Park</div>`)[0];
popup_3c6999a90a1b41bd01f4fce55cb3c946.setContent(html_fe0e825573df8fd134e09136ffe4b6a2);
marker_4244d3400423b3cad5576b53318da6a6.bindPopup(popup_3c6999a90a1b41bd01f4fce55cb3c946)
;
var marker_0f1927e7b87580c88537ed03c6bb3dcd = L.marker(
[51.5469, -0.1906],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_d373bcde47014bf2977202f2ba82132c = L.popup({"maxWidth": "100%"});
var html_87876bef50c8942faa2194e0007f7399 = $(`<div id="html_87876bef50c8942faa2194e0007f7399" style="width: 100.0%; height: 100.0%;">West Hampstead</div>`)[0];
popup_d373bcde47014bf2977202f2ba82132c.setContent(html_87876bef50c8942faa2194e0007f7399);
marker_0f1927e7b87580c88537ed03c6bb3dcd.bindPopup(popup_d373bcde47014bf2977202f2ba82132c)
;
var marker_c20f95d030cd36ea57b9f79659dcc7a9 = L.marker(
[51.512, -0.2239],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_267c5d2f93690fff9e3cd6c63f9c7188 = L.popup({"maxWidth": "100%"});
var html_8e9e5442fa22567861f6e946d19e90f9 = $(`<div id="html_8e9e5442fa22567861f6e946d19e90f9" style="width: 100.0%; height: 100.0%;">White City</div>`)[0];
popup_267c5d2f93690fff9e3cd6c63f9c7188.setContent(html_8e9e5442fa22567861f6e946d19e90f9);
marker_c20f95d030cd36ea57b9f79659dcc7a9.bindPopup(popup_267c5d2f93690fff9e3cd6c63f9c7188)
;
var marker_a98ab17e2b69e5af7715c5af576bdf3b = L.marker(
[51.5407, -0.2997],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_5d59c5791476bffdd465970e143e160f = L.popup({"maxWidth": "100%"});
var html_c053fe0b09ac2847254518d725636c90 = $(`<div id="html_c053fe0b09ac2847254518d725636c90" style="width: 100.0%; height: 100.0%;">Alperton</div>`)[0];
popup_5d59c5791476bffdd465970e143e160f.setContent(html_c053fe0b09ac2847254518d725636c90);
marker_a98ab17e2b69e5af7715c5af576bdf3b.bindPopup(popup_5d59c5791476bffdd465970e143e160f)
;
var marker_f82bbc543e11e2763fff00a8237d2109 = L.marker(
[51.5322, -0.1058],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_6756a0a06ee072e7b4009f8032e3eac5 = L.popup({"maxWidth": "100%"});
var html_794ef9f3c011a2c908b74fd2f201c9c3 = $(`<div id="html_794ef9f3c011a2c908b74fd2f201c9c3" style="width: 100.0%; height: 100.0%;">Angel</div>`)[0];
popup_6756a0a06ee072e7b4009f8032e3eac5.setContent(html_794ef9f3c011a2c908b74fd2f201c9c3);
marker_f82bbc543e11e2763fff00a8237d2109.bindPopup(popup_6756a0a06ee072e7b4009f8032e3eac5)
;
var marker_813b8418a8d0660a7d59ce0f036b0df1 = L.marker(
[51.5396, 0.081],
{}
).addTo(map_d975904bcce371cbaa82148766caebc2);
var popup_502f9079f8e01cf13ca237ae743bdc0c = L.popup({"maxWidth": "100%"});
var html_f6b3990faac0a0efa16d6090640b8dd9 = $(`<div id="html_f6b3990faac0a0efa16d6090640b8dd9" style="width: 100.0%; height: 100.0%;">Barking</div>`)[0];
popup_502f9079f8e01cf13ca237ae743bdc0c.setContent(html_f6b3990faac0a0efa16d6090640b8dd9);
marker_813b8418a8d0660a7d59ce0f036b0df1.bindPopup(popup_502f9079f8e01cf13ca237ae743bdc0c)
;
var marker_6d32436904c30a240cac4aa5ff7f2f3d = L.marker(
[51.5087, 0.055],
{}