-
Notifications
You must be signed in to change notification settings - Fork 4
/
mrt_map.html
3305 lines (1985 loc) · 129 KB
/
mrt_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
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/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.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/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.1.0/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/0.4.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<style> #map_b218fe7b1308456f9e331cbb7c80f12a {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-dvf/0.2/leaflet-dvf.markers.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_b218fe7b1308456f9e331cbb7c80f12a" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_b218fe7b1308456f9e331cbb7c80f12a = L.map('map_b218fe7b1308456f9e331cbb7c80f12a', {
center:[1.38,103.8],
zoom: 12,
maxBounds: bounds,
layers: [],
crs: L.CRS.EPSG3857
});
var tile_layer_8944d74d0712469699eda54e8da16540 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
maxZoom: 18,
minZoom: 1,
attribution: 'Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://www.openstreetmap.org/copyright">ODbL</a>.',
detectRetina: false
}
).addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var regular_polygon_marker_646fbd8329c844d7b0637f0e6b621f21 = new L.RegularPolygonMarker(
new L.LatLng(1.42523896166,103.7621803),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_00bf50d4a3fa4a04b972b1aa6c3a94fe = L.popup({maxWidth: '300'});
var html_20009eb4ffb64fc29a4c140846fd1bfa = $(' <div id="html_20009eb4ffb64fc29a4c140846fd1bfa" style="width: 100.0%; height: 100.0%;"> Kranji</div> ')[0];
popup_00bf50d4a3fa4a04b972b1aa6c3a94fe.setContent(html_20009eb4ffb64fc29a4c140846fd1bfa);
regular_polygon_marker_646fbd8329c844d7b0637f0e6b621f21.bindPopup(popup_00bf50d4a3fa4a04b972b1aa6c3a94fe);
var regular_polygon_marker_3cfa010c1b5f4b21a667a5982521531c = new L.RegularPolygonMarker(
new L.LatLng(1.29965581291,103.787393659),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_d08a9bfc2f5645e5b666f2d7b0f8cd51 = L.popup({maxWidth: '300'});
var html_e874967d3d1a40159ca27824cc4e1c7f = $(' <div id="html_e874967d3d1a40159ca27824cc4e1c7f" style="width: 100.0%; height: 100.0%;"> One North</div> ')[0];
popup_d08a9bfc2f5645e5b666f2d7b0f8cd51.setContent(html_e874967d3d1a40159ca27824cc4e1c7f);
regular_polygon_marker_3cfa010c1b5f4b21a667a5982521531c.bindPopup(popup_d08a9bfc2f5645e5b666f2d7b0f8cd51);
var regular_polygon_marker_1005c6ea5d0548019e7402471354d491 = new L.RegularPolygonMarker(
new L.LatLng(1.3113959753,103.87131493),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_e6dab70b9dd84437bfa0309e88a3123a = L.popup({maxWidth: '300'});
var html_a5a87879ff7245a38b22a670bc34c9db = $(' <div id="html_a5a87879ff7245a38b22a670bc34c9db" style="width: 100.0%; height: 100.0%;"> Kallang</div> ')[0];
popup_e6dab70b9dd84437bfa0309e88a3123a.setContent(html_a5a87879ff7245a38b22a670bc34c9db);
regular_polygon_marker_1005c6ea5d0548019e7402471354d491.bindPopup(popup_e6dab70b9dd84437bfa0309e88a3123a);
var regular_polygon_marker_4abc6b26b0ae445fabeabc151b66b3f7 = new L.RegularPolygonMarker(
new L.LatLng(1.34214430951,103.732814061),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_95ef0c45f64344ed85401d8b65356547 = L.popup({maxWidth: '300'});
var html_bb41ab9727b74a4dba130993ec2b2ede = $(' <div id="html_bb41ab9727b74a4dba130993ec2b2ede" style="width: 100.0%; height: 100.0%;"> Chinese Garden</div> ')[0];
popup_95ef0c45f64344ed85401d8b65356547.setContent(html_bb41ab9727b74a4dba130993ec2b2ede);
regular_polygon_marker_4abc6b26b0ae445fabeabc151b66b3f7.bindPopup(popup_95ef0c45f64344ed85401d8b65356547);
var regular_polygon_marker_2a6df83a8054425c80ec7e613f9d1256 = new L.RegularPolygonMarker(
new L.LatLng(1.3532885249,103.945158674),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_976485dfd9cc45bc96d9fff793e6f7ee = L.popup({maxWidth: '300'});
var html_8b46cd56b6794354a94593ed500a24a2 = $(' <div id="html_8b46cd56b6794354a94593ed500a24a2" style="width: 100.0%; height: 100.0%;"> Tampines</div> ')[0];
popup_976485dfd9cc45bc96d9fff793e6f7ee.setContent(html_8b46cd56b6794354a94593ed500a24a2);
regular_polygon_marker_2a6df83a8054425c80ec7e613f9d1256.bindPopup(popup_976485dfd9cc45bc96d9fff793e6f7ee);
var regular_polygon_marker_341e2794718f441b91124dcc86abcbcd = new L.RegularPolygonMarker(
new L.LatLng(1.32636737033,103.890261164),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_75b3546072ba48dc824c981046c82d1b = L.popup({maxWidth: '300'});
var html_de130561e895427a923bc1a396a1f6ad = $(' <div id="html_de130561e895427a923bc1a396a1f6ad" style="width: 100.0%; height: 100.0%;"> Macpherson</div> ')[0];
popup_75b3546072ba48dc824c981046c82d1b.setContent(html_de130561e895427a923bc1a396a1f6ad);
regular_polygon_marker_341e2794718f441b91124dcc86abcbcd.bindPopup(popup_75b3546072ba48dc824c981046c82d1b);
var regular_polygon_marker_79273791e1c441b696e8a1d45b13cfbf = new L.RegularPolygonMarker(
new L.LatLng(1.29461066566,103.806044903),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_112cecc1116145bf81d468a90bf19676 = L.popup({maxWidth: '300'});
var html_8448b613786d4498990f735fcb87d9c3 = $(' <div id="html_8448b613786d4498990f735fcb87d9c3" style="width: 100.0%; height: 100.0%;"> Queenstown</div> ')[0];
popup_112cecc1116145bf81d468a90bf19676.setContent(html_8448b613786d4498990f735fcb87d9c3);
regular_polygon_marker_79273791e1c441b696e8a1d45b13cfbf.bindPopup(popup_112cecc1116145bf81d468a90bf19676);
var regular_polygon_marker_2493f5e3786b4cbd9ee16a44cace32d5 = new L.RegularPolygonMarker(
new L.LatLng(1.30715996433,103.849309396),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_bf6dee833c234488ad1175c2ac37b024 = L.popup({maxWidth: '300'});
var html_1c9d11b17dd04d979e538eff33957df3 = $(' <div id="html_1c9d11b17dd04d979e538eff33957df3" style="width: 100.0%; height: 100.0%;"> Little India</div> ')[0];
popup_bf6dee833c234488ad1175c2ac37b024.setContent(html_1c9d11b17dd04d979e538eff33957df3);
regular_polygon_marker_2493f5e3786b4cbd9ee16a44cace32d5.bindPopup(popup_bf6dee833c234488ad1175c2ac37b024);
var regular_polygon_marker_ef64bec417cc44a1bbadd4cdaf3b9bd2 = new L.RegularPolygonMarker(
new L.LatLng(1.31745390414,103.807488791),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_db28465c3a7a49d8b8f31ccfded31177 = L.popup({maxWidth: '300'});
var html_b1fff81f1c824033be7c755273c2e573 = $(' <div id="html_b1fff81f1c824033be7c755273c2e573" style="width: 100.0%; height: 100.0%;"> Farrer Road</div> ')[0];
popup_db28465c3a7a49d8b8f31ccfded31177.setContent(html_b1fff81f1c824033be7c755273c2e573);
regular_polygon_marker_ef64bec417cc44a1bbadd4cdaf3b9bd2.bindPopup(popup_db28465c3a7a49d8b8f31ccfded31177);
var regular_polygon_marker_2dbcf2c82e55481393fd4e9981509545 = new L.RegularPolygonMarker(
new L.LatLng(1.31977856466,103.903361485),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_2fe5735d04f54ab89f8d4a7219052ca9 = L.popup({maxWidth: '300'});
var html_89a9fd83593940e6bbc61456faf78b50 = $(' <div id="html_89a9fd83593940e6bbc61456faf78b50" style="width: 100.0%; height: 100.0%;"> Eunos</div> ')[0];
popup_2fe5735d04f54ab89f8d4a7219052ca9.setContent(html_89a9fd83593940e6bbc61456faf78b50);
regular_polygon_marker_2dbcf2c82e55481393fd4e9981509545.bindPopup(popup_2fe5735d04f54ab89f8d4a7219052ca9);
var regular_polygon_marker_8a3a4ffb0182475ab812389924b80fb6 = new L.RegularPolygonMarker(
new L.LatLng(1.30676024609,103.790384443),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_da469b7c56cd4228a5bc03afeea852c8 = L.popup({maxWidth: '300'});
var html_2d7488feb1ed49c792a75458eaab57f7 = $(' <div id="html_2d7488feb1ed49c792a75458eaab57f7" style="width: 100.0%; height: 100.0%;"> Buona Vista</div> ')[0];
popup_da469b7c56cd4228a5bc03afeea852c8.setContent(html_2d7488feb1ed49c792a75458eaab57f7);
regular_polygon_marker_8a3a4ffb0182475ab812389924b80fb6.bindPopup(popup_da469b7c56cd4228a5bc03afeea852c8);
var regular_polygon_marker_e0667f0d58f54214b35965521cbde31c = new L.RegularPolygonMarker(
new L.LatLng(1.33267672627,103.847420883),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_4166085729184049abbf4c7f88a03207 = L.popup({maxWidth: '300'});
var html_878ba660c5c04b03ab08a0312d20bbb9 = $(' <div id="html_878ba660c5c04b03ab08a0312d20bbb9" style="width: 100.0%; height: 100.0%;"> Toa Payoh</div> ')[0];
popup_4166085729184049abbf4c7f88a03207.setContent(html_878ba660c5c04b03ab08a0312d20bbb9);
regular_polygon_marker_e0667f0d58f54214b35965521cbde31c.bindPopup(popup_4166085729184049abbf4c7f88a03207);
var regular_polygon_marker_7129f4d9319f4e8cbb716cc9b37af740 = new L.RegularPolygonMarker(
new L.LatLng(1.30285343332,103.875347631),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_739c86450675442ba43c433c152c93b0 = L.popup({maxWidth: '300'});
var html_20b2ada9ccd24c3dac318026d351c157 = $(' <div id="html_20b2ada9ccd24c3dac318026d351c157" style="width: 100.0%; height: 100.0%;"> Stadium</div> ')[0];
popup_739c86450675442ba43c433c152c93b0.setContent(html_20b2ada9ccd24c3dac318026d351c157);
regular_polygon_marker_7129f4d9319f4e8cbb716cc9b37af740.bindPopup(popup_739c86450675442ba43c433c152c93b0);
var regular_polygon_marker_89bcf95288ac4060b652115b89ba29c6 = new L.RegularPolygonMarker(
new L.LatLng(1.28187124484,103.859076121),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_476b586baeb445b6a35c0ac7556cf7a8 = L.popup({maxWidth: '300'});
var html_aa6c75291c9e439c8e82a28c4bdf4082 = $(' <div id="html_aa6c75291c9e439c8e82a28c4bdf4082" style="width: 100.0%; height: 100.0%;"> Bayfront</div> ')[0];
popup_476b586baeb445b6a35c0ac7556cf7a8.setContent(html_aa6c75291c9e439c8e82a28c4bdf4082);
regular_polygon_marker_89bcf95288ac4060b652115b89ba29c6.bindPopup(popup_476b586baeb445b6a35c0ac7556cf7a8);
var regular_polygon_marker_b9626f955ba64698a65525190a398a91 = new L.RegularPolygonMarker(
new L.LatLng(1.35161908924,103.864143793),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_06ef3620e7f24669b2401d79af28e94b = L.popup({maxWidth: '300'});
var html_b7f38d34156a4843ab34b3f5a42c2a4e = $(' <div id="html_b7f38d34156a4843ab34b3f5a42c2a4e" style="width: 100.0%; height: 100.0%;"> Lorong Chuan</div> ')[0];
popup_06ef3620e7f24669b2401d79af28e94b.setContent(html_b7f38d34156a4843ab34b3f5a42c2a4e);
regular_polygon_marker_b9626f955ba64698a65525190a398a91.bindPopup(popup_06ef3620e7f24669b2401d79af28e94b);
var regular_polygon_marker_df834bcc95cc4bb6b882758706eb88c9 = new L.RegularPolygonMarker(
new L.LatLng(1.33920642074,103.870808857),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_724cbc860fc7440e884d1b90e4567a86 = L.popup({maxWidth: '300'});
var html_d3eb8db361a941b3bca1ff7bbe3da411 = $(' <div id="html_d3eb8db361a941b3bca1ff7bbe3da411" style="width: 100.0%; height: 100.0%;"> Woodleigh</div> ')[0];
popup_724cbc860fc7440e884d1b90e4567a86.setContent(html_d3eb8db361a941b3bca1ff7bbe3da411);
regular_polygon_marker_df834bcc95cc4bb6b882758706eb88c9.bindPopup(popup_724cbc860fc7440e884d1b90e4567a86);
var regular_polygon_marker_b0e19b647e424fca90a8fd3c0d2ef609 = new L.RegularPolygonMarker(
new L.LatLng(1.27627843325,103.854838719),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_3ea26e5b87b74455a7214815103503ca = L.popup({maxWidth: '300'});
var html_94d4f3fb8c584a1293b990e0c97bd611 = $(' <div id="html_94d4f3fb8c584a1293b990e0c97bd611" style="width: 100.0%; height: 100.0%;"> Marina Bay</div> ')[0];
popup_3ea26e5b87b74455a7214815103503ca.setContent(html_94d4f3fb8c584a1293b990e0c97bd611);
regular_polygon_marker_b0e19b647e424fca90a8fd3c0d2ef609.bindPopup(popup_3ea26e5b87b74455a7214815103503ca);
var regular_polygon_marker_df6a94d6841346a0a3db068bbe33acfc = new L.RegularPolygonMarker(
new L.LatLng(1.44906896709,103.820193529),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_e38d7d7de8554161aafe8a0559ab0fe9 = L.popup({maxWidth: '300'});
var html_ad335101238042bcb2c7f18e2c92a5c3 = $(' <div id="html_ad335101238042bcb2c7f18e2c92a5c3" style="width: 100.0%; height: 100.0%;"> Sembawang</div> ')[0];
popup_e38d7d7de8554161aafe8a0559ab0fe9.setContent(html_ad335101238042bcb2c7f18e2c92a5c3);
regular_polygon_marker_df6a94d6841346a0a3db068bbe33acfc.bindPopup(popup_e38d7d7de8554161aafe8a0559ab0fe9);
var regular_polygon_marker_6ac41760db93485a938aa9b3affaa56c = new L.RegularPolygonMarker(
new L.LatLng(1.31139402362,103.778648822),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_2db82de75d614500974d8b081049d742 = L.popup({maxWidth: '300'});
var html_40b33150244044bd9dcd91601d3f45aa = $(' <div id="html_40b33150244044bd9dcd91601d3f45aa" style="width: 100.0%; height: 100.0%;"> Dover</div> ')[0];
popup_2db82de75d614500974d8b081049d742.setContent(html_40b33150244044bd9dcd91601d3f45aa);
regular_polygon_marker_6ac41760db93485a938aa9b3affaa56c.bindPopup(popup_2db82de75d614500974d8b081049d742);
var regular_polygon_marker_7e06c97cb8e2490fa42fbe397fc38b5f = new L.RegularPolygonMarker(
new L.LatLng(1.27944082066,103.852850792),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_1188d1b74daa489ab4be0e94efb4a107 = L.popup({maxWidth: '300'});
var html_54f1793891564b47ae5e7f8037a93ce5 = $(' <div id="html_54f1793891564b47ae5e7f8037a93ce5" style="width: 100.0%; height: 100.0%;"> Downtown</div> ')[0];
popup_1188d1b74daa489ab4be0e94efb4a107.setContent(html_54f1793891564b47ae5e7f8037a93ce5);
regular_polygon_marker_7e06c97cb8e2490fa42fbe397fc38b5f.bindPopup(popup_1188d1b74daa489ab4be0e94efb4a107);
var regular_polygon_marker_e91b47258d5e4d8bb16bc6b4438f0abd = new L.RegularPolygonMarker(
new L.LatLng(1.3258699376,103.807330532),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_025dafbd417841d4b1fb2b6855759412 = L.popup({maxWidth: '300'});
var html_4c8fbdb8a517427e9b313937eac0a266 = $(' <div id="html_4c8fbdb8a517427e9b313937eac0a266" style="width: 100.0%; height: 100.0%;"> Tan Kah Kee</div> ')[0];
popup_025dafbd417841d4b1fb2b6855759412.setContent(html_4c8fbdb8a517427e9b313937eac0a266);
regular_polygon_marker_e91b47258d5e4d8bb16bc6b4438f0abd.bindPopup(popup_025dafbd417841d4b1fb2b6855759412);
var regular_polygon_marker_cf349dc091bf401092a0a0f1aebe4db2 = new L.RegularPolygonMarker(
new L.LatLng(1.34877598948,103.839412512),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_456d0ca9ec014292aeef93171e07deb0 = L.popup({maxWidth: '300'});
var html_c69ab4419efb4afcb7fd6a14b7ee9dec = $(' <div id="html_c69ab4419efb4afcb7fd6a14b7ee9dec" style="width: 100.0%; height: 100.0%;"> Marymount</div> ')[0];
popup_456d0ca9ec014292aeef93171e07deb0.setContent(html_c69ab4419efb4afcb7fd6a14b7ee9dec);
regular_polygon_marker_cf349dc091bf401092a0a0f1aebe4db2.bindPopup(popup_456d0ca9ec014292aeef93171e07deb0);
var regular_polygon_marker_2678ba726737449e8ac7f7eb25dd2f81 = new L.RegularPolygonMarker(
new L.LatLng(1.3573072645,103.988370247),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_c8401e400b96428fbcf4ce1eb44e415a = L.popup({maxWidth: '300'});
var html_24dc43f7aeee487db9b2caa2ce68d973 = $(' <div id="html_24dc43f7aeee487db9b2caa2ce68d973" style="width: 100.0%; height: 100.0%;"> Changi Airport</div> ')[0];
popup_c8401e400b96428fbcf4ce1eb44e415a.setContent(html_24dc43f7aeee487db9b2caa2ce68d973);
regular_polygon_marker_2678ba726737449e8ac7f7eb25dd2f81.bindPopup(popup_c8401e400b96428fbcf4ce1eb44e415a);
var regular_polygon_marker_e3098cb1e76740199546128f673bb47c = new L.RegularPolygonMarker(
new L.LatLng(1.27622900364,103.791341632),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_868cd8e2ff9247809bad456c3ee925d2 = L.popup({maxWidth: '300'});
var html_f58a3c642ce44508aaf4e8af3dc75296 = $(' <div id="html_f58a3c642ce44508aaf4e8af3dc75296" style="width: 100.0%; height: 100.0%;"> Pasir Panjang</div> ')[0];
popup_868cd8e2ff9247809bad456c3ee925d2.setContent(html_f58a3c642ce44508aaf4e8af3dc75296);
regular_polygon_marker_e3098cb1e76740199546128f673bb47c.bindPopup(popup_868cd8e2ff9247809bad456c3ee925d2);
var regular_polygon_marker_321301c0d32b4c229cc673a765afcc9f = new L.RegularPolygonMarker(
new L.LatLng(1.38510027801,103.74440531),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_263a6536511e4c76810a60176a705976 = L.popup({maxWidth: '300'});
var html_2f96c132e4ec4296b9124b6bbbf547e1 = $(' <div id="html_2f96c132e4ec4296b9124b6bbbf547e1" style="width: 100.0%; height: 100.0%;"> Choa Chu Kang</div> ')[0];
popup_263a6536511e4c76810a60176a705976.setContent(html_2f96c132e4ec4296b9124b6bbbf547e1);
regular_polygon_marker_321301c0d32b4c229cc673a765afcc9f.bindPopup(popup_263a6536511e4c76810a60176a705976);
var regular_polygon_marker_576a7483133d4b0d8a2fd4759a5ca804 = new L.RegularPolygonMarker(
new L.LatLng(1.29315783609,103.860962203),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_00463c3bf88d4b8585bc9eea74dbd2fd = L.popup({maxWidth: '300'});
var html_1442903e974d4e87a48b2ff22b59bea0 = $(' <div id="html_1442903e974d4e87a48b2ff22b59bea0" style="width: 100.0%; height: 100.0%;"> Promenade</div> ')[0];
popup_00463c3bf88d4b8585bc9eea74dbd2fd.setContent(html_1442903e974d4e87a48b2ff22b59bea0);
regular_polygon_marker_576a7483133d4b0d8a2fd4759a5ca804.bindPopup(popup_00463c3bf88d4b8585bc9eea74dbd2fd);
var regular_polygon_marker_aac10b73025d4c6a80ec00240985c717 = new L.RegularPolygonMarker(
new L.LatLng(1.27137671452,103.862910559),
{
icon : new L.Icon.Default(),
color: 'black',
opacity: 1,
weight: 2,
fillColor: '#0f0f0f',
fillOpacity: 1,
numberOfSides: 4,
rotation: 0,
radius: 5
}
)
.addTo(map_b218fe7b1308456f9e331cbb7c80f12a);
var popup_c508c50705cf4b32a59fc1562f76817c = L.popup({maxWidth: '300'});
var html_5b0be63d3ea74a8cb08cc112c108eaeb = $(' <div id="html_5b0be63d3ea74a8cb08cc112c108eaeb" style="width: 100.0%; height: 100.0%;"> Marina South Pier</div> ')[0];