-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainIcons.html
More file actions
1029 lines (469 loc) · 40.2 KB
/
trainIcons.html
File metadata and controls
1029 lines (469 loc) · 40.2 KB
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://unpkg.com/leaflet@1.0.1/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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/leaflet.markercluster-src.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/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://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.0.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://rawgit.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>
<style> #map_fe751275d41a4c58b50cc3da1d301376 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_fe751275d41a4c58b50cc3da1d301376" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_fe751275d41a4c58b50cc3da1d301376 = L.map(
'map_fe751275d41a4c58b50cc3da1d301376',
{center: [40.7302,-73.9541],
zoom: 13,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_270eb7b38c5a46f0aa8f3f2208e413af = L.tileLayer(
'https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png',
{
maxZoom: 18,
minZoom: 1,
continuousWorld: false,
noWrap: false,
attribution: '(c) <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors (c) <a href="http://cartodb.com/attributions">CartoDB</a>, CartoDB <a href ="http://cartodb.com/attributions">attributions</a>',
detectRetina: false
}
).addTo(map_fe751275d41a4c58b50cc3da1d301376);
var geo_json_7437b19a7f1842218e7066edb5c203bc = L.geoJson(
{"features": [{"geometry": {"coordinates": [[-73.94734382629395, 40.7039036749948], [-73.95021915435791, 40.705530339593395], [-73.95322322845459, 40.706864174917996], [-73.95785808563232, 40.70839317279136], [-73.95918846130371, 40.70894620593007], [-73.96094799041747, 40.710247442257014], [-73.97223472595215, 40.71369559554873], [-73.97515296936035, 40.71457387021076], [-73.98545265197754, 40.71766400377538], [-73.99051666259766, 40.71938791069555], [-73.99163246154785, 40.72068894296114], [-73.99188995361328, 40.7221525738643], [-73.99176120758057, 40.72342102794725], [-73.99206161499023, 40.723908888465424], [-73.99553775787354, 40.72520983236449], [-73.99686813354492, 40.72556758747864], [-73.99944305419922, 40.72677093147629], [-74.00206089019774, 40.728023036590685], [-74.00274753570557, 40.72838077658201], [-74.00236129760741, 40.72935642132918], [-74.00171756744383, 40.73055969681689], [-74.00122404098511, 40.73134018820158], [-73.99633169174194, 40.73805528789008]], "type": "LineString"}, "properties": {"highlight": {}, "stroke": "#FF6319", "stroke-opacity": 1, "stroke-width": 2, "style": {"color": "#FF6319", "fillColor": "blue", "fillOpacity": 0.9, "opacity": 1, "weight": 4}}, "type": "Feature"}], "type": "FeatureCollection"}
).addTo(map_fe751275d41a4c58b50cc3da1d301376);
geo_json_7437b19a7f1842218e7066edb5c203bc.setStyle(function(feature) {return feature.properties.style;});
var geo_json_3bb004d81a5d4717aa85e453cae09865 = L.geoJson(
{"features": [{"geometry": {"coordinates": [[-73.95021915435791, 40.70016219564594], [-73.95021915435791, 40.70579060224226], [-73.95163536071777, 40.71418352734685], [-73.95232200622559, 40.718704858576665], [-73.95107746124266, 40.72059136642329], [-73.94991874694824, 40.72208752428535], [-73.95309448242188, 40.72784416587385], [-73.95425319671631, 40.73025074978132], [-73.95485401153564, 40.73399053853161], [-73.95549774169922, 40.737242357886416], [-73.95502567291258, 40.739843698929995], [-73.95395278930664, 40.742770086009344], [-73.94464015960693, 40.74628158055551]], "type": "LineString"}, "properties": {"highlight": {}, "stroke": "#6CBE45", "stroke-opacity": 1, "stroke-width": 2, "style": {"color": "#6CBE45", "fillColor": "blue", "fillOpacity": 0.9, "opacity": 1, "weight": 4}}, "type": "Feature"}], "type": "FeatureCollection"}
).addTo(map_fe751275d41a4c58b50cc3da1d301376);
geo_json_3bb004d81a5d4717aa85e453cae09865.setStyle(function(feature) {return feature.properties.style;});
var geo_json_dc3fc8cec408441788d26f403c7d87eb = L.geoJson(
{"features": [{"geometry": {"coordinates": [[-74.00260806083679, 40.73977053760345], [-73.98917555809021, 40.73412874408817], [-73.98582816123962, 40.73269789619119], [-73.98245930671692, 40.73130766791001], [-73.97574305534364, 40.72845395043424], [-73.97208452224731, 40.72690102141602], [-73.96212816238403, 40.720550709490325], [-73.95772933959961, 40.71781037496521], [-73.95162463188171, 40.71407780909403], [-73.94933938980103, 40.71406967691378]], "type": "LineString"}, "properties": {"highlight": {}, "stroke": "#A7A9AC", "stroke-opacity": 1, "stroke-width": 2, "style": {"color": "#A7A9AC", "fillColor": "blue", "fillOpacity": 0.9, "opacity": 1, "weight": 4}}, "type": "Feature"}, {"geometry": {"coordinates": [[-73.94932866096497, 40.71406967691378], [-73.9443826675415, 40.714541341726154], [-73.94391059875488, 40.711638110471505], [-73.94068121910095, 40.71198780609576], [-73.94049882888794, 40.711581183103036], [-73.94029498100281, 40.71033690132031], [-73.93942594528198, 40.705562872480115], [-73.93908262252808, 40.70536767492135], [-73.93783807754517, 40.705562872480115], [-73.93427610397339, 40.70624605943045], [-73.93356800079346, 40.70609966281679], [-73.93275260925293, 40.706213526877434]], "type": "LineString"}, "properties": {"highlight": {}, "stroke": "#A7A9AC", "stroke-opacity": 1, "stroke-width": 2, "style": {"color": "#A7A9AC", "fillColor": "blue", "fillOpacity": 0.9, "opacity": 1, "weight": 4}}, "type": "Feature"}], "type": "FeatureCollection"}
).addTo(map_fe751275d41a4c58b50cc3da1d301376);
geo_json_dc3fc8cec408441788d26f403c7d87eb.setStyle(function(feature) {return feature.properties.style;});
var marker_2e934fd39ac34fd59cafe71e854cc333 = L.marker(
[40.717793,-73.957519],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_100a15e5e2354d3e95079e4e14362904 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_2e934fd39ac34fd59cafe71e854cc333.setIcon(custom_icon_100a15e5e2354d3e95079e4e14362904);
var popup_357046fb004641dfad1e9a267ed207bd = L.popup({maxWidth: '300'});
var html_3539fef3ccb3464ab2e2d2adddc82037 = $('<div id="html_3539fef3ccb3464ab2e2d2adddc82037" style="width: 100.0%; height: 100.0%;">L train at Bedford Av</div>')[0];
popup_357046fb004641dfad1e9a267ed207bd.setContent(html_3539fef3ccb3464ab2e2d2adddc82037);
marker_2e934fd39ac34fd59cafe71e854cc333.bindPopup(popup_357046fb004641dfad1e9a267ed207bd);
var marker_6e95bcabe359401e907fc7a91ba1ee6d = L.marker(
[40.714197,-73.949301],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_70ee61bbcbc04672b08433db2666edb0 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_6e95bcabe359401e907fc7a91ba1ee6d.setIcon(custom_icon_70ee61bbcbc04672b08433db2666edb0);
var popup_061c493a07c24e289de0d2a54aeaa409 = L.popup({maxWidth: '300'});
var html_18030d5d27544c1caa6aee29f094f69e = $('<div id="html_18030d5d27544c1caa6aee29f094f69e" style="width: 100.0%; height: 100.0%;">L train at Lorimer St</div>')[0];
popup_061c493a07c24e289de0d2a54aeaa409.setContent(html_18030d5d27544c1caa6aee29f094f69e);
marker_6e95bcabe359401e907fc7a91ba1ee6d.bindPopup(popup_061c493a07c24e289de0d2a54aeaa409);
var marker_d80bb26f190c4441b68b88f6ebc8b634 = L.marker(
[40.731438,-73.98217],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_5a5cda0513474f94b6ea29699908d30a = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_d80bb26f190c4441b68b88f6ebc8b634.setIcon(custom_icon_5a5cda0513474f94b6ea29699908d30a);
var popup_0d221afd29ce4bb5abe9cebc42eb8bca = L.popup({maxWidth: '300'});
var html_d4ed89a9312a41e5a25dce66b9aa0adf = $('<div id="html_d4ed89a9312a41e5a25dce66b9aa0adf" style="width: 100.0%; height: 100.0%;">L train at 1 Av</div>')[0];
popup_0d221afd29ce4bb5abe9cebc42eb8bca.setContent(html_d4ed89a9312a41e5a25dce66b9aa0adf);
marker_d80bb26f190c4441b68b88f6ebc8b634.bindPopup(popup_0d221afd29ce4bb5abe9cebc42eb8bca);
var marker_3470ed671a8a46baa9a5239453807383 = L.marker(
[40.733129,-73.987008],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_4e8bf0bad27542fb806a371d41fdc550 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_3470ed671a8a46baa9a5239453807383.setIcon(custom_icon_4e8bf0bad27542fb806a371d41fdc550);
var popup_742b0f61a4e74525a427aaa5981f53fa = L.popup({maxWidth: '300'});
var html_e5f56610b79c430191dd85690cbe4a2a = $('<div id="html_e5f56610b79c430191dd85690cbe4a2a" style="width: 100.0%; height: 100.0%;">L train at 3 Av</div>')[0];
popup_742b0f61a4e74525a427aaa5981f53fa.setContent(html_e5f56610b79c430191dd85690cbe4a2a);
marker_3470ed671a8a46baa9a5239453807383.bindPopup(popup_742b0f61a4e74525a427aaa5981f53fa);
var marker_44fa4f4bca7d4750b1ecb6f06e607147 = L.marker(
[40.735291,-73.991064],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_d8252f6554644812a5176e0af98b81ac = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_44fa4f4bca7d4750b1ecb6f06e607147.setIcon(custom_icon_d8252f6554644812a5176e0af98b81ac);
var popup_50c62be863ba4cbd8fcf0e4a132a291e = L.popup({maxWidth: '300'});
var html_88978f9ef2f74061a6350d9c6b9cf69b = $('<div id="html_88978f9ef2f74061a6350d9c6b9cf69b" style="width: 100.0%; height: 100.0%;">L train at Union Sq</div>')[0];
popup_50c62be863ba4cbd8fcf0e4a132a291e.setContent(html_88978f9ef2f74061a6350d9c6b9cf69b);
marker_44fa4f4bca7d4750b1ecb6f06e607147.bindPopup(popup_50c62be863ba4cbd8fcf0e4a132a291e);
var marker_15d44c45ef6e47ef9e79bdde35b84039 = L.marker(
[40.737285036958696,-73.9966669678688],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_3b9137f3376c40779ba64e69ab304302 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_15d44c45ef6e47ef9e79bdde35b84039.setIcon(custom_icon_3b9137f3376c40779ba64e69ab304302);
var popup_e4e1fa7534ba4ac0b9a06a092b8cc48c = L.popup({maxWidth: '300'});
var html_110f0717bdd4497fa709b4b6074ea944 = $('<div id="html_110f0717bdd4497fa709b4b6074ea944" style="width: 100.0%; height: 100.0%;">L train at 6 Av</div>')[0];
popup_e4e1fa7534ba4ac0b9a06a092b8cc48c.setContent(html_110f0717bdd4497fa709b4b6074ea944);
marker_15d44c45ef6e47ef9e79bdde35b84039.bindPopup(popup_e4e1fa7534ba4ac0b9a06a092b8cc48c);
var marker_ce3e401cae3f443ba23700ff0f9aeee9 = L.marker(
[40.739958,-74.002737],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_f05b65211b3f434fb1f7097316fecb19 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_ce3e401cae3f443ba23700ff0f9aeee9.setIcon(custom_icon_f05b65211b3f434fb1f7097316fecb19);
var popup_9cefbb2e585c486d80e83ed3fd5db53c = L.popup({maxWidth: '300'});
var html_da6cbfb247c64412b441b751db65da3e = $('<div id="html_da6cbfb247c64412b441b751db65da3e" style="width: 100.0%; height: 100.0%;">L train at 8 Av</div>')[0];
popup_9cefbb2e585c486d80e83ed3fd5db53c.setContent(html_da6cbfb247c64412b441b751db65da3e);
marker_ce3e401cae3f443ba23700ff0f9aeee9.bindPopup(popup_9cefbb2e585c486d80e83ed3fd5db53c);
var marker_cfba3abe3a48499798f6fa04f6a52072 = L.marker(
[40.699625,-73.950198],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_ab70f0c326154db0a03b3711b948065e = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_cfba3abe3a48499798f6fa04f6a52072.setIcon(custom_icon_ab70f0c326154db0a03b3711b948065e);
var popup_021bc482f5dd440f95e8a29581ac409c = L.popup({maxWidth: '300'});
var html_aadb7969a81347e5923cb07e1fca2fb6 = $('<div id="html_aadb7969a81347e5923cb07e1fca2fb6" style="width: 100.0%; height: 100.0%;">G train at Flushing Av</div>')[0];
popup_021bc482f5dd440f95e8a29581ac409c.setContent(html_aadb7969a81347e5923cb07e1fca2fb6);
marker_cfba3abe3a48499798f6fa04f6a52072.bindPopup(popup_021bc482f5dd440f95e8a29581ac409c);
var marker_9bc741ba45af41aab08d314a4a367c8c = L.marker(
[40.705514,-73.95009],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_06fb35b8fe14449f9de659fc4b3176e1 = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_9bc741ba45af41aab08d314a4a367c8c.setIcon(custom_icon_06fb35b8fe14449f9de659fc4b3176e1);
var popup_c77ba775ec0f40499edc4b29ac06569b = L.popup({maxWidth: '300'});
var html_1b2cc564ff194f9397fff8f643f31dce = $('<div id="html_1b2cc564ff194f9397fff8f643f31dce" style="width: 100.0%; height: 100.0%;">G train at Broadway</div>')[0];
popup_c77ba775ec0f40499edc4b29ac06569b.setContent(html_1b2cc564ff194f9397fff8f643f31dce);
marker_9bc741ba45af41aab08d314a4a367c8c.bindPopup(popup_c77ba775ec0f40499edc4b29ac06569b);
var marker_f836d49846884ee19973b05a21070e3c = L.marker(
[40.713777,-73.951743],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_ab0a98586865487e92f7f3a208c5b0a0 = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_f836d49846884ee19973b05a21070e3c.setIcon(custom_icon_ab0a98586865487e92f7f3a208c5b0a0);
var popup_829e3e080433408da4bcf5951066e288 = L.popup({maxWidth: '300'});
var html_bb90f34d9e03405aa0435f8685c598b9 = $('<div id="html_bb90f34d9e03405aa0435f8685c598b9" style="width: 100.0%; height: 100.0%;">G train at Metropolitan Av</div>')[0];
popup_829e3e080433408da4bcf5951066e288.setContent(html_bb90f34d9e03405aa0435f8685c598b9);
marker_f836d49846884ee19973b05a21070e3c.bindPopup(popup_829e3e080433408da4bcf5951066e288);
var marker_cc62c8f047774af8b09425ec6cbb8694 = L.marker(
[40.723941,-73.950648],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_0a58f98bf6b741be9f51a60bad4476dd = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_cc62c8f047774af8b09425ec6cbb8694.setIcon(custom_icon_0a58f98bf6b741be9f51a60bad4476dd);
var popup_5f1979fff2b344e382fa63bf8fcc72ba = L.popup({maxWidth: '300'});
var html_256338c7b0c643adb3d4e278a34eec1d = $('<div id="html_256338c7b0c643adb3d4e278a34eec1d" style="width: 100.0%; height: 100.0%;">G train at Nassau Av</div>')[0];
popup_5f1979fff2b344e382fa63bf8fcc72ba.setContent(html_256338c7b0c643adb3d4e278a34eec1d);
marker_cc62c8f047774af8b09425ec6cbb8694.bindPopup(popup_5f1979fff2b344e382fa63bf8fcc72ba);
var marker_88acc4031cf340499cdee10b2129fe24 = L.marker(
[40.730153,-73.954124],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_2693f472a1874d8698f1352af7bb1b5c = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_88acc4031cf340499cdee10b2129fe24.setIcon(custom_icon_2693f472a1874d8698f1352af7bb1b5c);
var popup_2e6f75a63bad4d71b95cb2f21c2f9f0d = L.popup({maxWidth: '300'});
var html_2160e6ab10b7440995be6d9a227117bc = $('<div id="html_2160e6ab10b7440995be6d9a227117bc" style="width: 100.0%; height: 100.0%;">G train at Greenpoint Av</div>')[0];
popup_2e6f75a63bad4d71b95cb2f21c2f9f0d.setContent(html_2160e6ab10b7440995be6d9a227117bc);
marker_88acc4031cf340499cdee10b2129fe24.bindPopup(popup_2e6f75a63bad4d71b95cb2f21c2f9f0d);
var marker_49fdb085078a47ac96324ab35f7e8035 = L.marker(
[40.74477,-73.948674],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_e12a25e7fe0e4f2d8a10a94233987247 = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_49fdb085078a47ac96324ab35f7e8035.setIcon(custom_icon_e12a25e7fe0e4f2d8a10a94233987247);
var popup_d8fa65bbf367420aaf14f5e8fcd3a4a9 = L.popup({maxWidth: '300'});
var html_e126206f158643a4bd1f5ba67cbee193 = $('<div id="html_e126206f158643a4bd1f5ba67cbee193" style="width: 100.0%; height: 100.0%;">G train at 21 St</div>')[0];
popup_d8fa65bbf367420aaf14f5e8fcd3a4a9.setContent(html_e126206f158643a4bd1f5ba67cbee193);
marker_49fdb085078a47ac96324ab35f7e8035.bindPopup(popup_d8fa65bbf367420aaf14f5e8fcd3a4a9);
var marker_1e83d1260c42403ebe65eb306354f257 = L.marker(
[40.746558,-73.943835],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_8b2bf0ca64e64336a22ebe20be7be6c4 = L.icon({
iconUrl: 'http://images.huffingtonpost.com/2015-11-05-1446691135-8331886-G_Train_logo.png',
iconSize: [30,30],
});
marker_1e83d1260c42403ebe65eb306354f257.setIcon(custom_icon_8b2bf0ca64e64336a22ebe20be7be6c4);
var popup_f09be123a38142b983bd04e184f00d02 = L.popup({maxWidth: '300'});
var html_3732fde53eda405f8e2a0b8136f216d4 = $('<div id="html_3732fde53eda405f8e2a0b8136f216d4" style="width: 100.0%; height: 100.0%;">G train at Court Sq</div>')[0];
popup_f09be123a38142b983bd04e184f00d02.setContent(html_3732fde53eda405f8e2a0b8136f216d4);
marker_1e83d1260c42403ebe65eb306354f257.bindPopup(popup_f09be123a38142b983bd04e184f00d02);
var marker_d0f55e603cdd4008926d1ccaff43b907 = L.marker(
[40.703904,-73.947666],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_ad01309e7f9144e6ac4a981e94815821 = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_d0f55e603cdd4008926d1ccaff43b907.setIcon(custom_icon_ad01309e7f9144e6ac4a981e94815821);
var popup_0eab8e6869e24e0a85b280630620a544 = L.popup({maxWidth: '300'});
var html_af66d032661c4214b26d5da713829dfc = $('<div id="html_af66d032661c4214b26d5da713829dfc" style="width: 100.0%; height: 100.0%;">M train at Lorimer St</div>')[0];
popup_0eab8e6869e24e0a85b280630620a544.setContent(html_af66d032661c4214b26d5da713829dfc);
marker_d0f55e603cdd4008926d1ccaff43b907.bindPopup(popup_0eab8e6869e24e0a85b280630620a544);
var marker_b6b3144c5244471893b18f464d892e50 = L.marker(
[40.707255,-73.954339],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_0681c988be8043ab8e51eb11c64b3e4f = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_b6b3144c5244471893b18f464d892e50.setIcon(custom_icon_0681c988be8043ab8e51eb11c64b3e4f);
var popup_05e169a8e0864576a1a32f1ea9fe1f71 = L.popup({maxWidth: '300'});
var html_b2ed8f0cbf8d48f5be4ded827f36d5f1 = $('<div id="html_b2ed8f0cbf8d48f5be4ded827f36d5f1" style="width: 100.0%; height: 100.0%;">M train at Hewes St</div>')[0];
popup_05e169a8e0864576a1a32f1ea9fe1f71.setContent(html_b2ed8f0cbf8d48f5be4ded827f36d5f1);
marker_b6b3144c5244471893b18f464d892e50.bindPopup(popup_05e169a8e0864576a1a32f1ea9fe1f71);
var marker_9d98f2a98f72478487824086ad01de2d = L.marker(
[40.708556,-73.957922],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_e684e20685d74d2faa63906196a59aae = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_9d98f2a98f72478487824086ad01de2d.setIcon(custom_icon_e684e20685d74d2faa63906196a59aae);
var popup_8467a01c94284f3e80dfd283f4b34b11 = L.popup({maxWidth: '300'});
var html_539045bc62b8485bae4f534c7796cd49 = $('<div id="html_539045bc62b8485bae4f534c7796cd49" style="width: 100.0%; height: 100.0%;">M train at Marcy Av</div>')[0];
popup_8467a01c94284f3e80dfd283f4b34b11.setContent(html_539045bc62b8485bae4f534c7796cd49);
marker_9d98f2a98f72478487824086ad01de2d.bindPopup(popup_8467a01c94284f3e80dfd283f4b34b11);
var marker_2cd103918ec94eb4b1a963e91e21017f = L.marker(
[40.718428,-73.987191],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_a4f3de2ef14941b5b4485ff016feeb15 = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_2cd103918ec94eb4b1a963e91e21017f.setIcon(custom_icon_a4f3de2ef14941b5b4485ff016feeb15);
var popup_ae270f641fe74734a4aed973b7c1328c = L.popup({maxWidth: '300'});
var html_921f97fdc5274db0bfff3aea49e8df46 = $('<div id="html_921f97fdc5274db0bfff3aea49e8df46" style="width: 100.0%; height: 100.0%;">M train at Essex St</div>')[0];
popup_ae270f641fe74734a4aed973b7c1328c.setContent(html_921f97fdc5274db0bfff3aea49e8df46);
marker_2cd103918ec94eb4b1a963e91e21017f.bindPopup(popup_ae270f641fe74734a4aed973b7c1328c);
var marker_1f1bbfcec67f464c9815489ce564a28b = L.marker(
[40.725324,-73.995495],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_07fe59395b754f699dd21f88077e6b33 = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_1f1bbfcec67f464c9815489ce564a28b.setIcon(custom_icon_07fe59395b754f699dd21f88077e6b33);
var popup_b1e845a294694013bb8f458041b91571 = L.popup({maxWidth: '300'});
var html_d8a87aab052f4e4192e4445337dad89f = $('<div id="html_d8a87aab052f4e4192e4445337dad89f" style="width: 100.0%; height: 100.0%;">M train at Broadway-Lafayette</div>')[0];
popup_b1e845a294694013bb8f458041b91571.setContent(html_d8a87aab052f4e4192e4445337dad89f);
marker_1f1bbfcec67f464c9815489ce564a28b.bindPopup(popup_b1e845a294694013bb8f458041b91571);
var marker_8fca7f316b4a44de9bdceb22e37135ff = L.marker(
[40.731113,-74.001224],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_1de3b203e0c140799d8f9ac1529b525e = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_8fca7f316b4a44de9bdceb22e37135ff.setIcon(custom_icon_1de3b203e0c140799d8f9ac1529b525e);
var popup_a5d63589513545bca04c88a535938c64 = L.popup({maxWidth: '300'});
var html_8ef050fd140942eb8aea67337ac59307 = $('<div id="html_8ef050fd140942eb8aea67337ac59307" style="width: 100.0%; height: 100.0%;">M train at West 4</div>')[0];
popup_a5d63589513545bca04c88a535938c64.setContent(html_8ef050fd140942eb8aea67337ac59307);
marker_8fca7f316b4a44de9bdceb22e37135ff.bindPopup(popup_a5d63589513545bca04c88a535938c64);
var marker_bf27524a022647cd95ae71f015261c8d = L.marker(
[40.7371935817703,-73.99686276912688],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_3029cd3c06854a9386c31d4d7083c590 = L.icon({
iconUrl: 'https://2.bp.blogspot.com/-h8OPSVh1JvY/Vu914_VbilI/AAAAAAAA-qQ/gZCTNi7c_HQCCN8ln1Rjr9-1soj3pPY6Q/s1600/M%2Btrain.png',
iconSize: [30,30],
});
marker_bf27524a022647cd95ae71f015261c8d.setIcon(custom_icon_3029cd3c06854a9386c31d4d7083c590);
var popup_44aff2152a3e44e09200821cd988463f = L.popup({maxWidth: '300'});
var html_693b71819a7f421e8ea9faad5ce2fe9a = $('<div id="html_693b71819a7f421e8ea9faad5ce2fe9a" style="width: 100.0%; height: 100.0%;">M train at 6th Avenue </div>')[0];
popup_44aff2152a3e44e09200821cd988463f.setContent(html_693b71819a7f421e8ea9faad5ce2fe9a);
marker_bf27524a022647cd95ae71f015261c8d.bindPopup(popup_44aff2152a3e44e09200821cd988463f);
var marker_27c88579cb1348d29d8ee7a7ca49ee15 = L.marker(
[40.714541341726154,-73.9443826675415],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_27f4cf49fad74c928cc46913e65924bd = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_27c88579cb1348d29d8ee7a7ca49ee15.setIcon(custom_icon_27f4cf49fad74c928cc46913e65924bd);
var popup_0da220fe20334f7aa4a25a8cbc10690f = L.popup({maxWidth: '300'});
var html_ee528d065e1c499991f62c12d81c9ffc = $('<div id="html_ee528d065e1c499991f62c12d81c9ffc" style="width: 100.0%; height: 100.0%;">L train at Graham Ave</div>')[0];
popup_0da220fe20334f7aa4a25a8cbc10690f.setContent(html_ee528d065e1c499991f62c12d81c9ffc);
marker_27c88579cb1348d29d8ee7a7ca49ee15.bindPopup(popup_0da220fe20334f7aa4a25a8cbc10690f);
var marker_c5354028b2954af1b8c105ff05f4fd06 = L.marker(
[40.71197967366023,-73.94068121910095],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_1d31fcd14bd04fada643243093050506 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_c5354028b2954af1b8c105ff05f4fd06.setIcon(custom_icon_1d31fcd14bd04fada643243093050506);
var popup_a0d5de4fe05a4b7ba8942b6d74a7464d = L.popup({maxWidth: '300'});
var html_60d7fffc760c49cea38a7d5fe51a8026 = $('<div id="html_60d7fffc760c49cea38a7d5fe51a8026" style="width: 100.0%; height: 100.0%;">L train at Grand Street</div>')[0];
popup_a0d5de4fe05a4b7ba8942b6d74a7464d.setContent(html_60d7fffc760c49cea38a7d5fe51a8026);
marker_c5354028b2954af1b8c105ff05f4fd06.bindPopup(popup_a0d5de4fe05a4b7ba8942b6d74a7464d);
var marker_fc6650a95e92495d9657f6bf99cf20ff = L.marker(
[40.707644944175705,-73.93981218338013],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);
var custom_icon_c735446fc4ac4b088b48cd69846f3c98 = L.icon({
iconUrl: 'http://wheresthel.com/images/ltrain.png',
iconSize: [30,30],
});
marker_fc6650a95e92495d9657f6bf99cf20ff.setIcon(custom_icon_c735446fc4ac4b088b48cd69846f3c98);
var popup_8c27e47b9df8448c963f55c1c9b5e70c = L.popup({maxWidth: '300'});
var html_76a370897b944d54a712ddbcfd91c50d = $('<div id="html_76a370897b944d54a712ddbcfd91c50d" style="width: 100.0%; height: 100.0%;">L train at Montrose</div>')[0];
popup_8c27e47b9df8448c963f55c1c9b5e70c.setContent(html_76a370897b944d54a712ddbcfd91c50d);
marker_fc6650a95e92495d9657f6bf99cf20ff.bindPopup(popup_8c27e47b9df8448c963f55c1c9b5e70c);
var marker_3c3e3b22d6c54bf9b45a750254ac138e = L.marker(
[40.706213526877434,-73.93268823623657],
{
icon: new L.Icon.Default()
}
)
.addTo(map_fe751275d41a4c58b50cc3da1d301376);