-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdone.html
8238 lines (3554 loc) · 282 KB
/
done.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>
<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-1.12.4.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.min.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_27caff14ca719316c35ddf757e593a80 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_27caff14ca719316c35ddf757e593a80" ></div>
</body>
<script>
var map_27caff14ca719316c35ddf757e593a80 = L.map(
"map_27caff14ca719316c35ddf757e593a80",
{
center: [40.75, -74.125],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_973d8cd9da8b04eb59c96cbeed2849d8 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var marker_077a1ecb432a2bf4b8ca463c4a8b5388 = L.marker(
[40.763428, -73.99271],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_2d7cbf89df37010d4610a4195ddce42a = L.popup({"maxWidth": "100%"});
var html_70d3d3300506120a322446d148ebb602 = $(`<div id="html_70d3d3300506120a322446d148ebb602" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_2d7cbf89df37010d4610a4195ddce42a.setContent(html_70d3d3300506120a322446d148ebb602);
marker_077a1ecb432a2bf4b8ca463c4a8b5388.bindPopup(popup_2d7cbf89df37010d4610a4195ddce42a)
;
var marker_43dba3ea68e0e7b8c9cd82be56f16544 = L.marker(
[40.715076, -73.95189],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_c6baec207052de3a2f8ffd59d6434395 = L.popup({"maxWidth": "100%"});
var html_fbf049147981cc0996eeb781da3f7a9f = $(`<div id="html_fbf049147981cc0996eeb781da3f7a9f" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_c6baec207052de3a2f8ffd59d6434395.setContent(html_fbf049147981cc0996eeb781da3f7a9f);
marker_43dba3ea68e0e7b8c9cd82be56f16544.bindPopup(popup_c6baec207052de3a2f8ffd59d6434395)
;
var marker_1b9360b1de6fd68c7ff52e832703d846 = L.marker(
[40.752934, -73.9855],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_de3b842de725f1aa06bbfc8040f3a88f = L.popup({"maxWidth": "100%"});
var html_ace4d276466660253c8bcfe3d7e7e98e = $(`<div id="html_ace4d276466660253c8bcfe3d7e7e98e" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_de3b842de725f1aa06bbfc8040f3a88f.setContent(html_ace4d276466660253c8bcfe3d7e7e98e);
marker_1b9360b1de6fd68c7ff52e832703d846.bindPopup(popup_de3b842de725f1aa06bbfc8040f3a88f)
;
var marker_cfefb8caacca615ec1c5ef65f10c4878 = L.marker(
[40.646378, -73.97085],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_acbb0091b60e7c147d79fce87074472f = L.popup({"maxWidth": "100%"});
var html_114a2fbbeafd8aedfd33045083e80f0f = $(`<div id="html_114a2fbbeafd8aedfd33045083e80f0f" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_acbb0091b60e7c147d79fce87074472f.setContent(html_114a2fbbeafd8aedfd33045083e80f0f);
marker_cfefb8caacca615ec1c5ef65f10c4878.bindPopup(popup_acbb0091b60e7c147d79fce87074472f)
;
var marker_b495307b8274f8c2d20d64693e92be67 = L.marker(
[40.751858, -73.80798],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_2140af379cace73552dc3e7c5d8e8830 = L.popup({"maxWidth": "100%"});
var html_dfb356f3b6a94ded3271ef5c9e4f240f = $(`<div id="html_dfb356f3b6a94ded3271ef5c9e4f240f" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_2140af379cace73552dc3e7c5d8e8830.setContent(html_dfb356f3b6a94ded3271ef5c9e4f240f);
marker_b495307b8274f8c2d20d64693e92be67.bindPopup(popup_2140af379cace73552dc3e7c5d8e8830)
;
var marker_5d8066da1ba7798fe1681a6a4b276a25 = L.marker(
[40.819374, -73.95933],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_31dc77687291eb792b42a36acd1a52d0 = L.popup({"maxWidth": "100%"});
var html_8f99045fc5f429385f44d56fee1366b3 = $(`<div id="html_8f99045fc5f429385f44d56fee1366b3" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_31dc77687291eb792b42a36acd1a52d0.setContent(html_8f99045fc5f429385f44d56fee1366b3);
marker_5d8066da1ba7798fe1681a6a4b276a25.bindPopup(popup_31dc77687291eb792b42a36acd1a52d0)
;
var marker_562204f87aa13f81023082f719c6d0fb = L.marker(
[40.768303, -73.89962],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_23b1a7e171c8ac16273df9d8ce53229b = L.popup({"maxWidth": "100%"});
var html_3646217043b8c5930efc1ff5ba33f35a = $(`<div id="html_3646217043b8c5930efc1ff5ba33f35a" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_23b1a7e171c8ac16273df9d8ce53229b.setContent(html_3646217043b8c5930efc1ff5ba33f35a);
marker_562204f87aa13f81023082f719c6d0fb.bindPopup(popup_23b1a7e171c8ac16273df9d8ce53229b)
;
var marker_537f65afb2b2eef9f8bd70ff27ffa214 = L.marker(
[40.59302, -73.793274],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_9529d48cc4a2ac9e5c3f781fea963dd8 = L.popup({"maxWidth": "100%"});
var html_81905b88be24419400e00fb832b99e2b = $(`<div id="html_81905b88be24419400e00fb832b99e2b" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_9529d48cc4a2ac9e5c3f781fea963dd8.setContent(html_81905b88be24419400e00fb832b99e2b);
marker_537f65afb2b2eef9f8bd70ff27ffa214.bindPopup(popup_9529d48cc4a2ac9e5c3f781fea963dd8)
;
var marker_8b18743177fefea426166aaf8a000171 = L.marker(
[40.644463, -73.94792],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_e50bcd70f58b6494d9b866e9a04403d5 = L.popup({"maxWidth": "100%"});
var html_150005697bc64bd987da353886c77d70 = $(`<div id="html_150005697bc64bd987da353886c77d70" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_e50bcd70f58b6494d9b866e9a04403d5.setContent(html_150005697bc64bd987da353886c77d70);
marker_8b18743177fefea426166aaf8a000171.bindPopup(popup_e50bcd70f58b6494d9b866e9a04403d5)
;
var marker_e7c92c7d2112b6e1d2e49c7b8d38a4e2 = L.marker(
[40.723274, -73.937416],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_400acaf6536ba5c8efb414d5560b8c33 = L.popup({"maxWidth": "100%"});
var html_bb0419b9977d2ef5d480b625f7f9ca53 = $(`<div id="html_bb0419b9977d2ef5d480b625f7f9ca53" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_400acaf6536ba5c8efb414d5560b8c33.setContent(html_bb0419b9977d2ef5d480b625f7f9ca53);
marker_e7c92c7d2112b6e1d2e49c7b8d38a4e2.bindPopup(popup_400acaf6536ba5c8efb414d5560b8c33)
;
var marker_5e5f96ad992f839ba199064250926117 = L.marker(
[40.673115, -73.88762],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_8aa2dd23666310f03375430741742b1a = L.popup({"maxWidth": "100%"});
var html_4dcd47234fbf64732cf1b24e9c54b394 = $(`<div id="html_4dcd47234fbf64732cf1b24e9c54b394" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_8aa2dd23666310f03375430741742b1a.setContent(html_4dcd47234fbf64732cf1b24e9c54b394);
marker_5e5f96ad992f839ba199064250926117.bindPopup(popup_8aa2dd23666310f03375430741742b1a)
;
var marker_99099bd215e1d71015cbef4e6ef05bf2 = L.marker(
[40.855595, -73.89601],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_6f5b789ff432381491b3c30e460fe0a4 = L.popup({"maxWidth": "100%"});
var html_6b2a62e1c0f4a2aae1b5e0228b3b017d = $(`<div id="html_6b2a62e1c0f4a2aae1b5e0228b3b017d" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_6f5b789ff432381491b3c30e460fe0a4.setContent(html_6b2a62e1c0f4a2aae1b5e0228b3b017d);
marker_99099bd215e1d71015cbef4e6ef05bf2.bindPopup(popup_6f5b789ff432381491b3c30e460fe0a4)
;
var marker_2a3a60de2dc6f68f237920ac4ab506de = L.marker(
[40.73346, -73.735466],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_38415dcada6e9f5e917b601974f54c9f = L.popup({"maxWidth": "100%"});
var html_d7f38a5c50c8a986b31df6410cb87145 = $(`<div id="html_d7f38a5c50c8a986b31df6410cb87145" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_38415dcada6e9f5e917b601974f54c9f.setContent(html_d7f38a5c50c8a986b31df6410cb87145);
marker_2a3a60de2dc6f68f237920ac4ab506de.bindPopup(popup_38415dcada6e9f5e917b601974f54c9f)
;
var marker_a544353718ad699d9844f9c4015a7c5a = L.marker(
[40.728065, -73.99896],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_023b826313b45f87fd754277ef46bdad = L.popup({"maxWidth": "100%"});
var html_710ad4ef8c9ad02bef67c1c6bb01fd13 = $(`<div id="html_710ad4ef8c9ad02bef67c1c6bb01fd13" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_023b826313b45f87fd754277ef46bdad.setContent(html_710ad4ef8c9ad02bef67c1c6bb01fd13);
marker_a544353718ad699d9844f9c4015a7c5a.bindPopup(popup_023b826313b45f87fd754277ef46bdad)
;
var marker_f95e5716a52d5ca29cf4510616d99562 = L.marker(
[40.679913, -73.73942],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_d2998757c23965ed92ced9e9366ebe19 = L.popup({"maxWidth": "100%"});
var html_d95e098f655397e6e2d4b31a1099725c = $(`<div id="html_d95e098f655397e6e2d4b31a1099725c" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_d2998757c23965ed92ced9e9366ebe19.setContent(html_d95e098f655397e6e2d4b31a1099725c);
marker_f95e5716a52d5ca29cf4510616d99562.bindPopup(popup_d2998757c23965ed92ced9e9366ebe19)
;
var marker_5fb225bb2437be7d27e4f0ae845e8ee0 = L.marker(
[40.87626, -73.90395],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_0b757865d4e45c422680dc940ca59a84 = L.popup({"maxWidth": "100%"});
var html_5aaada8d1772724a98f6797a9e1fd885 = $(`<div id="html_5aaada8d1772724a98f6797a9e1fd885" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_0b757865d4e45c422680dc940ca59a84.setContent(html_5aaada8d1772724a98f6797a9e1fd885);
marker_5fb225bb2437be7d27e4f0ae845e8ee0.bindPopup(popup_0b757865d4e45c422680dc940ca59a84)
;
var marker_19102e597667069396e6a4a12adaadc0 = L.marker(
[40.686478, -74.000046],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_5e07720a332a64ffa8b871915a39997e = L.popup({"maxWidth": "100%"});
var html_7d96e0fb8686676995a10be43a67fd46 = $(`<div id="html_7d96e0fb8686676995a10be43a67fd46" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_5e07720a332a64ffa8b871915a39997e.setContent(html_7d96e0fb8686676995a10be43a67fd46);
marker_19102e597667069396e6a4a12adaadc0.bindPopup(popup_5e07720a332a64ffa8b871915a39997e)
;
var marker_42fe609f3f05ce0c4b2f71db0c5b8991 = L.marker(
[40.59065, -73.96931],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_013680b580c5385b975a70c02289d742 = L.popup({"maxWidth": "100%"});
var html_11dfbb6df0721934b9396157de0bc6ad = $(`<div id="html_11dfbb6df0721934b9396157de0bc6ad" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_013680b580c5385b975a70c02289d742.setContent(html_11dfbb6df0721934b9396157de0bc6ad);
marker_42fe609f3f05ce0c4b2f71db0c5b8991.bindPopup(popup_013680b580c5385b975a70c02289d742)
;
var marker_014793a59a0bc796b7142a374cd64d01 = L.marker(
[40.717014, -73.7994],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_68947b24b5f6df3fa85ae141bd421bc0 = L.popup({"maxWidth": "100%"});
var html_36c8a9dae39bb9cf575cc969f1db2b79 = $(`<div id="html_36c8a9dae39bb9cf575cc969f1db2b79" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_68947b24b5f6df3fa85ae141bd421bc0.setContent(html_36c8a9dae39bb9cf575cc969f1db2b79);
marker_014793a59a0bc796b7142a374cd64d01.bindPopup(popup_68947b24b5f6df3fa85ae141bd421bc0)
;
var marker_74b9d63b82a699a35f37243198f8a210 = L.marker(
[40.66735, -73.76994],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_af9eb92d2b7b5277a8dac8d99fe165d7 = L.popup({"maxWidth": "100%"});
var html_82a7a064fe3d1ff68e8d3f6be6bbbd2b = $(`<div id="html_82a7a064fe3d1ff68e8d3f6be6bbbd2b" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_af9eb92d2b7b5277a8dac8d99fe165d7.setContent(html_82a7a064fe3d1ff68e8d3f6be6bbbd2b);
marker_74b9d63b82a699a35f37243198f8a210.bindPopup(popup_af9eb92d2b7b5277a8dac8d99fe165d7)
;
var marker_63dac0d56b1129e8e2c386decb84c947 = L.marker(
[40.602467, -73.96638],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_313496c11b2756395c5ff74aa103ef23 = L.popup({"maxWidth": "100%"});
var html_abe57bf698b1cf00eb6b0170c11b1c25 = $(`<div id="html_abe57bf698b1cf00eb6b0170c11b1c25" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_313496c11b2756395c5ff74aa103ef23.setContent(html_abe57bf698b1cf00eb6b0170c11b1c25);
marker_63dac0d56b1129e8e2c386decb84c947.bindPopup(popup_313496c11b2756395c5ff74aa103ef23)
;
var marker_dbf9f3047914a607e544e1a1b562c97e = L.marker(
[40.692974, -73.90811],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_050388f9c8335779c17509946bbc002b = L.popup({"maxWidth": "100%"});
var html_38ea399c98ad6f9ced8198d7c7996493 = $(`<div id="html_38ea399c98ad6f9ced8198d7c7996493" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_050388f9c8335779c17509946bbc002b.setContent(html_38ea399c98ad6f9ced8198d7c7996493);
marker_dbf9f3047914a607e544e1a1b562c97e.bindPopup(popup_050388f9c8335779c17509946bbc002b)
;
var marker_2642499d5717146988d0e1419e880510 = L.marker(
[40.655632, -73.95987],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_228c8d8a736a034d735eaf33f1e60989 = L.popup({"maxWidth": "100%"});
var html_c743db4e5a29670ab6ea32b3a3c09a5c = $(`<div id="html_c743db4e5a29670ab6ea32b3a3c09a5c" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_228c8d8a736a034d735eaf33f1e60989.setContent(html_c743db4e5a29670ab6ea32b3a3c09a5c);
marker_2642499d5717146988d0e1419e880510.bindPopup(popup_228c8d8a736a034d735eaf33f1e60989)
;
var marker_94c786899e1551a700022d4aae70f2c6 = L.marker(
[40.67134, -73.89959],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_f635ba563f89d20ef31c85a59b00c564 = L.popup({"maxWidth": "100%"});
var html_6becf7b26594d6daa3d18485fb1ca84f = $(`<div id="html_6becf7b26594d6daa3d18485fb1ca84f" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_f635ba563f89d20ef31c85a59b00c564.setContent(html_6becf7b26594d6daa3d18485fb1ca84f);
marker_94c786899e1551a700022d4aae70f2c6.bindPopup(popup_f635ba563f89d20ef31c85a59b00c564)
;
var marker_a1bf230d2d811ee099ed1357b0d33cf5 = L.marker(
[40.718693, -73.95466],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_da5437b0c0b551dd648a3953b8319bde = L.popup({"maxWidth": "100%"});
var html_5e84c4b3285f121ebb747f423742803f = $(`<div id="html_5e84c4b3285f121ebb747f423742803f" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_da5437b0c0b551dd648a3953b8319bde.setContent(html_5e84c4b3285f121ebb747f423742803f);
marker_a1bf230d2d811ee099ed1357b0d33cf5.bindPopup(popup_da5437b0c0b551dd648a3953b8319bde)
;
var marker_3db4a0bf4a7d1e67ad287a0f1a5acd20 = L.marker(
[40.60194, -74.08219],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_ae5158456098a64c26ca99c76a21caac = L.popup({"maxWidth": "100%"});
var html_a5371dd91e4b096cdb08926a37cf6446 = $(`<div id="html_a5371dd91e4b096cdb08926a37cf6446" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_ae5158456098a64c26ca99c76a21caac.setContent(html_a5371dd91e4b096cdb08926a37cf6446);
marker_3db4a0bf4a7d1e67ad287a0f1a5acd20.bindPopup(popup_ae5158456098a64c26ca99c76a21caac)
;
var marker_9618d4ae74830d6f526199652ac89bfb = L.marker(
[40.63945, -73.89597],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_b71873db964a3a9d66b62d679d9d6649 = L.popup({"maxWidth": "100%"});
var html_bba2a0e1843effc3c59ca320999b13b5 = $(`<div id="html_bba2a0e1843effc3c59ca320999b13b5" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_b71873db964a3a9d66b62d679d9d6649.setContent(html_bba2a0e1843effc3c59ca320999b13b5);
marker_9618d4ae74830d6f526199652ac89bfb.bindPopup(popup_b71873db964a3a9d66b62d679d9d6649)
;
var marker_1a560478adfe2955494ade488ea1e06c = L.marker(
[40.532536, -74.192085],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_c1b6ac910063a39fe6f10cd76afb393d = L.popup({"maxWidth": "100%"});
var html_52de89741003588428802345863bd44e = $(`<div id="html_52de89741003588428802345863bd44e" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_c1b6ac910063a39fe6f10cd76afb393d.setContent(html_52de89741003588428802345863bd44e);
marker_1a560478adfe2955494ade488ea1e06c.bindPopup(popup_c1b6ac910063a39fe6f10cd76afb393d)
;
var marker_61b7b3511eaeb1b9c28e6568681ce64b = L.marker(
[40.846466, -73.87123],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_fd2497b959bcc4e6964a57f2d4e7e80e = L.popup({"maxWidth": "100%"});
var html_8a3d4d5a7b17e3aaee75861d6da1dcfb = $(`<div id="html_8a3d4d5a7b17e3aaee75861d6da1dcfb" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_fd2497b959bcc4e6964a57f2d4e7e80e.setContent(html_8a3d4d5a7b17e3aaee75861d6da1dcfb);
marker_61b7b3511eaeb1b9c28e6568681ce64b.bindPopup(popup_fd2497b959bcc4e6964a57f2d4e7e80e)
;
var marker_d27a7e18dd33c4a91d6ddd36203e95fc = L.marker(
[40.664616, -73.77216],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_6f5a4488e22eb0abc44d331d13427a3b = L.popup({"maxWidth": "100%"});
var html_2656cb5cebf52fa81025c96ce6ceb4b4 = $(`<div id="html_2656cb5cebf52fa81025c96ce6ceb4b4" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_6f5a4488e22eb0abc44d331d13427a3b.setContent(html_2656cb5cebf52fa81025c96ce6ceb4b4);
marker_d27a7e18dd33c4a91d6ddd36203e95fc.bindPopup(popup_6f5a4488e22eb0abc44d331d13427a3b)
;
var marker_13d743f075540245f70aad3c8e431b84 = L.marker(
[40.77719, -73.95225],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_640e8777098eb5f7298fba11c68f3217 = L.popup({"maxWidth": "100%"});
var html_4486d1b7ac6e8c183425cd770e68eb0e = $(`<div id="html_4486d1b7ac6e8c183425cd770e68eb0e" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_640e8777098eb5f7298fba11c68f3217.setContent(html_4486d1b7ac6e8c183425cd770e68eb0e);
marker_13d743f075540245f70aad3c8e431b84.bindPopup(popup_640e8777098eb5f7298fba11c68f3217)
;
var marker_d1fabe089f984ab26443887dbc3beddb = L.marker(
[40.802765, -73.95148],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_94f4081863efde3d62c1d78bfac4ead2 = L.popup({"maxWidth": "100%"});
var html_7ab3a4ad4ccb0952618434ef7bf8da83 = $(`<div id="html_7ab3a4ad4ccb0952618434ef7bf8da83" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_94f4081863efde3d62c1d78bfac4ead2.setContent(html_7ab3a4ad4ccb0952618434ef7bf8da83);
marker_d1fabe089f984ab26443887dbc3beddb.bindPopup(popup_94f4081863efde3d62c1d78bfac4ead2)
;
var marker_b60f110b4b908c91d772d2a44f6bfd27 = L.marker(
[40.756767, -73.98272],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_2848b7c12cbe5b9baf506a5364ad0519 = L.popup({"maxWidth": "100%"});
var html_d02610f53e01cdeb4212a0047b37d972 = $(`<div id="html_d02610f53e01cdeb4212a0047b37d972" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_2848b7c12cbe5b9baf506a5364ad0519.setContent(html_d02610f53e01cdeb4212a0047b37d972);
marker_b60f110b4b908c91d772d2a44f6bfd27.bindPopup(popup_2848b7c12cbe5b9baf506a5364ad0519)
;
var marker_94ee8229a99a27c10df12e6309c29928 = L.marker(
[40.840103, -73.88619],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_db1bdb8741f72489a01a1449449eaffd = L.popup({"maxWidth": "100%"});
var html_16e67d33193682af475230202d7bd6f2 = $(`<div id="html_16e67d33193682af475230202d7bd6f2" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_db1bdb8741f72489a01a1449449eaffd.setContent(html_16e67d33193682af475230202d7bd6f2);
marker_94ee8229a99a27c10df12e6309c29928.bindPopup(popup_db1bdb8741f72489a01a1449449eaffd)
;
var marker_b88525c541cb986536bca871760b9e01 = L.marker(
[40.66239, -73.88594],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_643d9402e96c0b59b05841db23886a1f = L.popup({"maxWidth": "100%"});
var html_593239931f661029e24d5d9b5c8f56f1 = $(`<div id="html_593239931f661029e24d5d9b5c8f56f1" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_643d9402e96c0b59b05841db23886a1f.setContent(html_593239931f661029e24d5d9b5c8f56f1);
marker_b88525c541cb986536bca871760b9e01.bindPopup(popup_643d9402e96c0b59b05841db23886a1f)
;
var marker_231f39e3233eb6cccacc354cbe0c9b85 = L.marker(
[40.641304, -73.94276],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_f0c7a9577f63da650083b81b27d6645b = L.popup({"maxWidth": "100%"});
var html_ef4d5feba38535e42ee159bee88b5ea9 = $(`<div id="html_ef4d5feba38535e42ee159bee88b5ea9" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_f0c7a9577f63da650083b81b27d6645b.setContent(html_ef4d5feba38535e42ee159bee88b5ea9);
marker_231f39e3233eb6cccacc354cbe0c9b85.bindPopup(popup_f0c7a9577f63da650083b81b27d6645b)
;
var marker_1c88e581e178ec299e4be22ae1fc9c7c = L.marker(
[40.7516, -73.74844],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_67d4b6bea403b91cde1d47334295837b = L.popup({"maxWidth": "100%"});
var html_946fa7f8e71cd2b115bbf876c9e22b31 = $(`<div id="html_946fa7f8e71cd2b115bbf876c9e22b31" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_67d4b6bea403b91cde1d47334295837b.setContent(html_946fa7f8e71cd2b115bbf876c9e22b31);
marker_1c88e581e178ec299e4be22ae1fc9c7c.bindPopup(popup_67d4b6bea403b91cde1d47334295837b)
;
var marker_cf20f8b7e23a6ab75d418ebfff300823 = L.marker(
[40.639084, -74.009415],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_90330157275c128f3014755285548a67 = L.popup({"maxWidth": "100%"});
var html_2b3c6868a36632ff1b4573ae59fae497 = $(`<div id="html_2b3c6868a36632ff1b4573ae59fae497" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_90330157275c128f3014755285548a67.setContent(html_2b3c6868a36632ff1b4573ae59fae497);
marker_cf20f8b7e23a6ab75d418ebfff300823.bindPopup(popup_90330157275c128f3014755285548a67)
;
var marker_0e0d832e664a3885c53e9c948e3bf30c = L.marker(
[40.587074, -74.10393],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_34da64586eb7996a8d14909441f59798 = L.popup({"maxWidth": "100%"});
var html_803d60f8370ddfa1033cb20382d00b96 = $(`<div id="html_803d60f8370ddfa1033cb20382d00b96" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_34da64586eb7996a8d14909441f59798.setContent(html_803d60f8370ddfa1033cb20382d00b96);
marker_0e0d832e664a3885c53e9c948e3bf30c.bindPopup(popup_34da64586eb7996a8d14909441f59798)
;
var marker_87a609e90babcd40b97f3f64e7511d4d = L.marker(
[40.81636, -73.954094],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_6a4481c4b32b91af457414898fcc50f5 = L.popup({"maxWidth": "100%"});
var html_ef6f741667c774f97b338fbd693e29af = $(`<div id="html_ef6f741667c774f97b338fbd693e29af" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_6a4481c4b32b91af457414898fcc50f5.setContent(html_ef6f741667c774f97b338fbd693e29af);
marker_87a609e90babcd40b97f3f64e7511d4d.bindPopup(popup_6a4481c4b32b91af457414898fcc50f5)
;
var marker_8599fef27293b0a7834949bad869ed98 = L.marker(
[40.62307, -74.149315],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_0e3deaec011045aa76380af7d716333d = L.popup({"maxWidth": "100%"});
var html_8c7e594b52327feded00216cc0947b2c = $(`<div id="html_8c7e594b52327feded00216cc0947b2c" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_0e3deaec011045aa76380af7d716333d.setContent(html_8c7e594b52327feded00216cc0947b2c);
marker_8599fef27293b0a7834949bad869ed98.bindPopup(popup_0e3deaec011045aa76380af7d716333d)
;
var marker_e7f4373f7f7684e8a8a0aec28e5f295b = L.marker(
[40.714455, -73.935295],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_a645f51699b4526c5e540f01dcd8029a = L.popup({"maxWidth": "100%"});
var html_42f02ae8be65091523ade3e9f20de217 = $(`<div id="html_42f02ae8be65091523ade3e9f20de217" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_a645f51699b4526c5e540f01dcd8029a.setContent(html_42f02ae8be65091523ade3e9f20de217);
marker_e7f4373f7f7684e8a8a0aec28e5f295b.bindPopup(popup_a645f51699b4526c5e540f01dcd8029a)
;
var marker_53f824d17cc2e957f3f3c3f009b1f6f3 = L.marker(
[40.693787, -73.81173],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_c2fae1cd8883c08d3be4e78bd9e16be0 = L.popup({"maxWidth": "100%"});
var html_b761b3ab53d7c876af891197d12bd749 = $(`<div id="html_b761b3ab53d7c876af891197d12bd749" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_c2fae1cd8883c08d3be4e78bd9e16be0.setContent(html_b761b3ab53d7c876af891197d12bd749);
marker_53f824d17cc2e957f3f3c3f009b1f6f3.bindPopup(popup_c2fae1cd8883c08d3be4e78bd9e16be0)
;
var marker_ba9b04d00f2f2f171b04e6db7d94690f = L.marker(
[40.713303, -73.79323],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_70bf231b77c68c5c9b89aa45a318cc75 = L.popup({"maxWidth": "100%"});
var html_8f350c9557c4eb8be837d9d27deeb30b = $(`<div id="html_8f350c9557c4eb8be837d9d27deeb30b" style="width: 100.0%; height: 100.0%;">accident</div>`)[0];
popup_70bf231b77c68c5c9b89aa45a318cc75.setContent(html_8f350c9557c4eb8be837d9d27deeb30b);
marker_ba9b04d00f2f2f171b04e6db7d94690f.bindPopup(popup_70bf231b77c68c5c9b89aa45a318cc75)
;
var marker_9d367f8fca5feca36274e06bb89a8d7f = L.marker(
[40.683975, -73.72974],
{}
).addTo(map_27caff14ca719316c35ddf757e593a80);
var popup_1fc2c8ae22ef277021e77b81e3d2cb89 = L.popup({"maxWidth": "100%"});