-
Notifications
You must be signed in to change notification settings - Fork 0
/
hackbu2020.html
12547 lines (6544 loc) · 541 KB
/
hackbu2020.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_ae4f09eb894f45708cbadd5644776a3d {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_ae4f09eb894f45708cbadd5644776a3d" ></div>
</body>
<script>
var map_ae4f09eb894f45708cbadd5644776a3d = L.map(
"map_ae4f09eb894f45708cbadd5644776a3d",
{
center: [40.733196341603175, -73.92438865961915],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_69848ebaae0d45aab6b814258251f974 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca 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_ae4f09eb894f45708cbadd5644776a3d);
var marker_cluster_ffbcb666954049d2bb989c0e3d33ad69 = L.markerClusterGroup(
{}
);
map_ae4f09eb894f45708cbadd5644776a3d.addLayer(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var marker_38c0eef831f449c494093e82d46f5b27 = L.marker(
[40.82884833, -73.91666114],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_4e6464df000c480089adeae942b4ef7c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_38c0eef831f449c494093e82d46f5b27.setIcon(icon_4e6464df000c480089adeae942b4ef7c);
var popup_07ad082cf76f41eaa0780953177123b0 = L.popup({"maxWidth": "100%"});
var html_f0b7e9a0a940401997b86a4705d435f6 = $(`<div id="html_f0b7e9a0a940401997b86a4705d435f6" style="width: 100.0%; height: 100.0%;">Type of Crime: FORGERY Area: BRONX</div>`)[0];
popup_07ad082cf76f41eaa0780953177123b0.setContent(html_f0b7e9a0a940401997b86a4705d435f6);
marker_38c0eef831f449c494093e82d46f5b27.bindPopup(popup_07ad082cf76f41eaa0780953177123b0)
;
var marker_2873fe19b46c40c29565c0755f12fb65 = L.marker(
[40.69733814, -73.78455674],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_3673fd54675447faba0522e323e06ad6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2873fe19b46c40c29565c0755f12fb65.setIcon(icon_3673fd54675447faba0522e323e06ad6);
var popup_3ac90e582bf94d60bd3384a24eee3430 = L.popup({"maxWidth": "100%"});
var html_e43ab82c826c4476b104aaecac43a3f7 = $(`<div id="html_e43ab82c826c4476b104aaecac43a3f7" style="width: 100.0%; height: 100.0%;">Type of Crime: MURDER & NON-NEGL. MANSLAUGHTER Area: QUEENS</div>`)[0];
popup_3ac90e582bf94d60bd3384a24eee3430.setContent(html_e43ab82c826c4476b104aaecac43a3f7);
marker_2873fe19b46c40c29565c0755f12fb65.bindPopup(popup_3ac90e582bf94d60bd3384a24eee3430)
;
var marker_2e868dd0b76c442bafda44b26d342776 = L.marker(
[40.80260661, -73.94505191],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_ced2e8a0c0c449d893ba75c1f25f131f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2e868dd0b76c442bafda44b26d342776.setIcon(icon_ced2e8a0c0c449d893ba75c1f25f131f);
var popup_5892899b9d744315afa863ece8561e22 = L.popup({"maxWidth": "100%"});
var html_60e5036775e649d8843e458f927efbf0 = $(`<div id="html_60e5036775e649d8843e458f927efbf0" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: MANHATTAN</div>`)[0];
popup_5892899b9d744315afa863ece8561e22.setContent(html_60e5036775e649d8843e458f927efbf0);
marker_2e868dd0b76c442bafda44b26d342776.bindPopup(popup_5892899b9d744315afa863ece8561e22)
;
var marker_2c3482e2d0834ecba416258233be4af2 = L.marker(
[40.65454944, -73.72633879],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_2f7555a171fa46cfaeeeb06642d3ef0e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2c3482e2d0834ecba416258233be4af2.setIcon(icon_2f7555a171fa46cfaeeeb06642d3ef0e);
var popup_cf782daee3ae46e2bbf98b8a0c31a450 = L.popup({"maxWidth": "100%"});
var html_d703ef04442a4da5beecb6fd95bb7280 = $(`<div id="html_d703ef04442a4da5beecb6fd95bb7280" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: QUEENS</div>`)[0];
popup_cf782daee3ae46e2bbf98b8a0c31a450.setContent(html_d703ef04442a4da5beecb6fd95bb7280);
marker_2c3482e2d0834ecba416258233be4af2.bindPopup(popup_cf782daee3ae46e2bbf98b8a0c31a450)
;
var marker_911a7363f3104d629e75a3f14792bcdd = L.marker(
[40.7380024, -73.98789129],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_447f77465d664aff9238901cdd9c3a66 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_911a7363f3104d629e75a3f14792bcdd.setIcon(icon_447f77465d664aff9238901cdd9c3a66);
var popup_afb61167fcf044ae877d51ddb76e3f4d = L.popup({"maxWidth": "100%"});
var html_f85c47f12ec047d28e804d756e726cc3 = $(`<div id="html_f85c47f12ec047d28e804d756e726cc3" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: MANHATTAN</div>`)[0];
popup_afb61167fcf044ae877d51ddb76e3f4d.setContent(html_f85c47f12ec047d28e804d756e726cc3);
marker_911a7363f3104d629e75a3f14792bcdd.bindPopup(popup_afb61167fcf044ae877d51ddb76e3f4d)
;
var marker_a56a4d925fea4162b2c4cea150cf6fc6 = L.marker(
[40.66502269, -73.95711076],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_56ffc837ac4044e8849d58b326fed4fe = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_a56a4d925fea4162b2c4cea150cf6fc6.setIcon(icon_56ffc837ac4044e8849d58b326fed4fe);
var popup_904aed2647c249f8922fac700c3d2091 = L.popup({"maxWidth": "100%"});
var html_93971416479745419eca22833f6b7fbc = $(`<div id="html_93971416479745419eca22833f6b7fbc" style="width: 100.0%; height: 100.0%;">Type of Crime: FELONY ASSAULT Area: BROOKLYN</div>`)[0];
popup_904aed2647c249f8922fac700c3d2091.setContent(html_93971416479745419eca22833f6b7fbc);
marker_a56a4d925fea4162b2c4cea150cf6fc6.bindPopup(popup_904aed2647c249f8922fac700c3d2091)
;
var marker_2ef208d1846c4096b2638f2646a4df57 = L.marker(
[40.7202, -73.98873508],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_682aa11862f44aa0b7332be31f57c431 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2ef208d1846c4096b2638f2646a4df57.setIcon(icon_682aa11862f44aa0b7332be31f57c431);
var popup_2c63cf5d95bb49a7a7cf70f6ffa2b6ce = L.popup({"maxWidth": "100%"});
var html_75667db440424935a8e060161b340c1f = $(`<div id="html_75667db440424935a8e060161b340c1f" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: MANHATTAN</div>`)[0];
popup_2c63cf5d95bb49a7a7cf70f6ffa2b6ce.setContent(html_75667db440424935a8e060161b340c1f);
marker_2ef208d1846c4096b2638f2646a4df57.bindPopup(popup_2c63cf5d95bb49a7a7cf70f6ffa2b6ce)
;
var marker_06202ad09b7e44debed8b87eb2d5988d = L.marker(
[40.84570715, -73.91039803],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_494dbdefc4b34d75be3b1189f4b3bfdd = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_06202ad09b7e44debed8b87eb2d5988d.setIcon(icon_494dbdefc4b34d75be3b1189f4b3bfdd);
var popup_7cd344269e8f483cb8eb0d0237922538 = L.popup({"maxWidth": "100%"});
var html_a7857843902a4aeca410477a238bc969 = $(`<div id="html_a7857843902a4aeca410477a238bc969" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS WEAPONS Area: BRONX</div>`)[0];
popup_7cd344269e8f483cb8eb0d0237922538.setContent(html_a7857843902a4aeca410477a238bc969);
marker_06202ad09b7e44debed8b87eb2d5988d.bindPopup(popup_7cd344269e8f483cb8eb0d0237922538)
;
var marker_1b4b2b918b074abc8be494c5c7e1a702 = L.marker(
[40.85671129, -73.89189996],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_c07422148a5f4c48a71f1b8b1521e557 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_1b4b2b918b074abc8be494c5c7e1a702.setIcon(icon_c07422148a5f4c48a71f1b8b1521e557);
var popup_70f1007a9b1d45d986ded0e29c7ffea0 = L.popup({"maxWidth": "100%"});
var html_98d240e95dc041829e2923d36a39e5a9 = $(`<div id="html_98d240e95dc041829e2923d36a39e5a9" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: BRONX</div>`)[0];
popup_70f1007a9b1d45d986ded0e29c7ffea0.setContent(html_98d240e95dc041829e2923d36a39e5a9);
marker_1b4b2b918b074abc8be494c5c7e1a702.bindPopup(popup_70f1007a9b1d45d986ded0e29c7ffea0)
;
var marker_b9ed81db90ac4f99913a1f6c97c3a56f = L.marker(
[40.76561769, -73.96362342],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_ac58fc1f3ffe411ca9c570f5c6171e7c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b9ed81db90ac4f99913a1f6c97c3a56f.setIcon(icon_ac58fc1f3ffe411ca9c570f5c6171e7c);
var popup_3d0b4c7fa9e44d5f851fdc208eea8858 = L.popup({"maxWidth": "100%"});
var html_cecc88788a7c4c768d87f643b4964260 = $(`<div id="html_cecc88788a7c4c768d87f643b4964260" style="width: 100.0%; height: 100.0%;">Type of Crime: PETIT LARCENY Area: MANHATTAN</div>`)[0];
popup_3d0b4c7fa9e44d5f851fdc208eea8858.setContent(html_cecc88788a7c4c768d87f643b4964260);
marker_b9ed81db90ac4f99913a1f6c97c3a56f.bindPopup(popup_3d0b4c7fa9e44d5f851fdc208eea8858)
;
var marker_bd6ce970c31b492182834a31d92a6566 = L.marker(
[40.82203994, -73.89173227],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_7175d0a8fa1a48fd9cc63b0717d39092 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_bd6ce970c31b492182834a31d92a6566.setIcon(icon_7175d0a8fa1a48fd9cc63b0717d39092);
var popup_7337603653c44ef1a0e482f47a5e8d92 = L.popup({"maxWidth": "100%"});
var html_b76b9e8c735e44c4b492e1a1aae8d4e0 = $(`<div id="html_b76b9e8c735e44c4b492e1a1aae8d4e0" style="width: 100.0%; height: 100.0%;">Type of Crime: PETIT LARCENY Area: BRONX</div>`)[0];
popup_7337603653c44ef1a0e482f47a5e8d92.setContent(html_b76b9e8c735e44c4b492e1a1aae8d4e0);
marker_bd6ce970c31b492182834a31d92a6566.bindPopup(popup_7337603653c44ef1a0e482f47a5e8d92)
;
var marker_a27fdf74a7234b6dbb8ffc4b002593f2 = L.marker(
[40.73282833, -73.98606286],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_aa8b8e4f5c424125bae938c797f787d5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_a27fdf74a7234b6dbb8ffc4b002593f2.setIcon(icon_aa8b8e4f5c424125bae938c797f787d5);
var popup_f9af0de37e6a45a98f69299c3cd737db = L.popup({"maxWidth": "100%"});
var html_62f336f94b994dc78988963babcdd94a = $(`<div id="html_62f336f94b994dc78988963babcdd94a" style="width: 100.0%; height: 100.0%;">Type of Crime: PETIT LARCENY Area: MANHATTAN</div>`)[0];
popup_f9af0de37e6a45a98f69299c3cd737db.setContent(html_62f336f94b994dc78988963babcdd94a);
marker_a27fdf74a7234b6dbb8ffc4b002593f2.bindPopup(popup_f9af0de37e6a45a98f69299c3cd737db)
;
var marker_d813cee698264deea1052b68464aceaf = L.marker(
[40.75791569, -73.98929902],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_5fe4b36446fb4dd7a7f8d058c001bd6b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d813cee698264deea1052b68464aceaf.setIcon(icon_5fe4b36446fb4dd7a7f8d058c001bd6b);
var popup_9e91d50f73ae4dd9a4347e7b6d14ba73 = L.popup({"maxWidth": "100%"});
var html_a659f03a82344c57873c903a72264910 = $(`<div id="html_a659f03a82344c57873c903a72264910" style="width: 100.0%; height: 100.0%;">Type of Crime: GRAND LARCENY Area: MANHATTAN</div>`)[0];
popup_9e91d50f73ae4dd9a4347e7b6d14ba73.setContent(html_a659f03a82344c57873c903a72264910);
marker_d813cee698264deea1052b68464aceaf.bindPopup(popup_9e91d50f73ae4dd9a4347e7b6d14ba73)
;
var marker_983dfa23eda54eda8b5f47445891a8aa = L.marker(
[40.75791569, -73.98929902],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_cad423f3b680490a9ce1cab0c8bac0ec = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_983dfa23eda54eda8b5f47445891a8aa.setIcon(icon_cad423f3b680490a9ce1cab0c8bac0ec);
var popup_b34d67e00a1e483baad470c8a18ec472 = L.popup({"maxWidth": "100%"});
var html_d05d4bbacef64209b3349a9923cfe12d = $(`<div id="html_d05d4bbacef64209b3349a9923cfe12d" style="width: 100.0%; height: 100.0%;">Type of Crime: GRAND LARCENY Area: MANHATTAN</div>`)[0];
popup_b34d67e00a1e483baad470c8a18ec472.setContent(html_d05d4bbacef64209b3349a9923cfe12d);
marker_983dfa23eda54eda8b5f47445891a8aa.bindPopup(popup_b34d67e00a1e483baad470c8a18ec472)
;
var marker_0caf5de217d54d38ac3227511098cc2a = L.marker(
[40.64456205, -73.92766205],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_e26b8e512d604652b747bc5d3ab5eb29 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_0caf5de217d54d38ac3227511098cc2a.setIcon(icon_e26b8e512d604652b747bc5d3ab5eb29);
var popup_b1ded3c755eb4fac89b98aee5678de89 = L.popup({"maxWidth": "100%"});
var html_c10da87937b6464396423473afd4ab17 = $(`<div id="html_c10da87937b6464396423473afd4ab17" style="width: 100.0%; height: 100.0%;">Type of Crime: FORGERY Area: BROOKLYN</div>`)[0];
popup_b1ded3c755eb4fac89b98aee5678de89.setContent(html_c10da87937b6464396423473afd4ab17);
marker_0caf5de217d54d38ac3227511098cc2a.bindPopup(popup_b1ded3c755eb4fac89b98aee5678de89)
;
var marker_ab7a9e7ab69b4faba66a06e44b9926bd = L.marker(
[40.70809578, -73.78210174],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_8fe8f295cffc4fd6858767137a97127e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_ab7a9e7ab69b4faba66a06e44b9926bd.setIcon(icon_8fe8f295cffc4fd6858767137a97127e);
var popup_627c47ce720d4bf2bc9a4225edc6b817 = L.popup({"maxWidth": "100%"});
var html_e15ce31511a34242ab9dce797c60046b = $(`<div id="html_e15ce31511a34242ab9dce797c60046b" style="width: 100.0%; height: 100.0%;">Type of Crime: ROBBERY Area: QUEENS</div>`)[0];
popup_627c47ce720d4bf2bc9a4225edc6b817.setContent(html_e15ce31511a34242ab9dce797c60046b);
marker_ab7a9e7ab69b4faba66a06e44b9926bd.bindPopup(popup_627c47ce720d4bf2bc9a4225edc6b817)
;
var marker_24f521f948554c1e8137fae45f80cb5c = L.marker(
[40.75519728, -73.96829612],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_eb63bc51710447669d73951bbd422750 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_24f521f948554c1e8137fae45f80cb5c.setIcon(icon_eb63bc51710447669d73951bbd422750);
var popup_10891fcea24849f894a1f81e100fc3f3 = L.popup({"maxWidth": "100%"});
var html_c8d32ffb93064d8c975b9fee7d0edc8f = $(`<div id="html_c8d32ffb93064d8c975b9fee7d0edc8f" style="width: 100.0%; height: 100.0%;">Type of Crime: GRAND LARCENY Area: MANHATTAN</div>`)[0];
popup_10891fcea24849f894a1f81e100fc3f3.setContent(html_c8d32ffb93064d8c975b9fee7d0edc8f);
marker_24f521f948554c1e8137fae45f80cb5c.bindPopup(popup_10891fcea24849f894a1f81e100fc3f3)
;
var marker_9d19c39fac584ebebf2c2b51cb4dd047 = L.marker(
[40.8579245, -73.89195221],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_d83a710982624076a8c44ac7360f10b4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_9d19c39fac584ebebf2c2b51cb4dd047.setIcon(icon_d83a710982624076a8c44ac7360f10b4);
var popup_f9762e16e1bb4556a1ec61c3db850b3e = L.popup({"maxWidth": "100%"});
var html_a76a97c7f73346fe8e65a26f6d68bd0d = $(`<div id="html_a76a97c7f73346fe8e65a26f6d68bd0d" style="width: 100.0%; height: 100.0%;">Type of Crime: OFFENSES AGAINST PUBLIC ADMINI Area: BRONX</div>`)[0];
popup_f9762e16e1bb4556a1ec61c3db850b3e.setContent(html_a76a97c7f73346fe8e65a26f6d68bd0d);
marker_9d19c39fac584ebebf2c2b51cb4dd047.bindPopup(popup_f9762e16e1bb4556a1ec61c3db850b3e)
;
var marker_702d00b40ca5487391683a71a82a482a = L.marker(
[40.6063089, -73.96513277],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_5f6dbc5b902f48b2af86c2a411961bcb = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_702d00b40ca5487391683a71a82a482a.setIcon(icon_5f6dbc5b902f48b2af86c2a411961bcb);
var popup_81973f448b044aa7a7ed0c7c917b951e = L.popup({"maxWidth": "100%"});
var html_2d35ba0c64c94bc88cb0289bf83d7dd4 = $(`<div id="html_2d35ba0c64c94bc88cb0289bf83d7dd4" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: BROOKLYN</div>`)[0];
popup_81973f448b044aa7a7ed0c7c917b951e.setContent(html_2d35ba0c64c94bc88cb0289bf83d7dd4);
marker_702d00b40ca5487391683a71a82a482a.bindPopup(popup_81973f448b044aa7a7ed0c7c917b951e)
;
var marker_b91b6f17bc8143f781c85c59d9cd724a = L.marker(
[40.67949898, -73.86282526],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_1cb2b32c68504818b05ad0bacb3dea65 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_b91b6f17bc8143f781c85c59d9cd724a.setIcon(icon_1cb2b32c68504818b05ad0bacb3dea65);
var popup_a6a1d22ea80f4ef4ae213da72d32894d = L.popup({"maxWidth": "100%"});
var html_7e724ff2d62b411ca8f0a770a11fbaf9 = $(`<div id="html_7e724ff2d62b411ca8f0a770a11fbaf9" style="width: 100.0%; height: 100.0%;">Type of Crime: CRIMINAL MISCHIEF & RELATED OF Area: QUEENS</div>`)[0];
popup_a6a1d22ea80f4ef4ae213da72d32894d.setContent(html_7e724ff2d62b411ca8f0a770a11fbaf9);
marker_b91b6f17bc8143f781c85c59d9cd724a.bindPopup(popup_a6a1d22ea80f4ef4ae213da72d32894d)
;
var marker_af3e08acc97647109c0a336c6dcbb92a = L.marker(
[40.65564202, -73.95986308],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_dc6a72ca312c4b6aab0209ecedd99dd0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_af3e08acc97647109c0a336c6dcbb92a.setIcon(icon_dc6a72ca312c4b6aab0209ecedd99dd0);
var popup_6aedec888daf49ea83b7a7a3155e53d6 = L.popup({"maxWidth": "100%"});
var html_6064625b759c4595ad5d2fcfa3b6cdd8 = $(`<div id="html_6064625b759c4595ad5d2fcfa3b6cdd8" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: BROOKLYN</div>`)[0];
popup_6aedec888daf49ea83b7a7a3155e53d6.setContent(html_6064625b759c4595ad5d2fcfa3b6cdd8);
marker_af3e08acc97647109c0a336c6dcbb92a.bindPopup(popup_6aedec888daf49ea83b7a7a3155e53d6)
;
var marker_b67a8b6f87f34400bf43c58423d65be3 = L.marker(
[40.74930705, -73.89757815],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_0ecfa914bdcf4745ba2176d4468c8468 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b67a8b6f87f34400bf43c58423d65be3.setIcon(icon_0ecfa914bdcf4745ba2176d4468c8468);
var popup_fa7baa2709e345b881b073aa4b72e671 = L.popup({"maxWidth": "100%"});
var html_e49e2be72c6f476bb21dd0f870b4097b = $(`<div id="html_e49e2be72c6f476bb21dd0f870b4097b" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: QUEENS</div>`)[0];
popup_fa7baa2709e345b881b073aa4b72e671.setContent(html_e49e2be72c6f476bb21dd0f870b4097b);
marker_b67a8b6f87f34400bf43c58423d65be3.bindPopup(popup_fa7baa2709e345b881b073aa4b72e671)
;
var marker_f67dbbbe3f5c47de95c22476f71e9f0f = L.marker(
[40.67123699, -73.8772222],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_7201aceaf12340e892b2e0867e1cefec = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_f67dbbbe3f5c47de95c22476f71e9f0f.setIcon(icon_7201aceaf12340e892b2e0867e1cefec);
var popup_423d9841943d4488b7e7351b147cd7df = L.popup({"maxWidth": "100%"});
var html_6b63a7b86db9477d85cfd17155d9659b = $(`<div id="html_6b63a7b86db9477d85cfd17155d9659b" style="width: 100.0%; height: 100.0%;">Type of Crime: FELONY ASSAULT Area: BROOKLYN</div>`)[0];
popup_423d9841943d4488b7e7351b147cd7df.setContent(html_6b63a7b86db9477d85cfd17155d9659b);
marker_f67dbbbe3f5c47de95c22476f71e9f0f.bindPopup(popup_423d9841943d4488b7e7351b147cd7df)
;
var marker_7384f2e9cf774106b82d66d5c8a30d62 = L.marker(
[40.66025806, -73.91367114],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_e368f7c04a2445109a202ce5a0ed355b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_7384f2e9cf774106b82d66d5c8a30d62.setIcon(icon_e368f7c04a2445109a202ce5a0ed355b);
var popup_8f0fc990570f4cdf828fc4c9a9dfdd32 = L.popup({"maxWidth": "100%"});
var html_408480c15d1942168e86c1ad35947b78 = $(`<div id="html_408480c15d1942168e86c1ad35947b78" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS WEAPONS Area: BROOKLYN</div>`)[0];
popup_8f0fc990570f4cdf828fc4c9a9dfdd32.setContent(html_408480c15d1942168e86c1ad35947b78);
marker_7384f2e9cf774106b82d66d5c8a30d62.bindPopup(popup_8f0fc990570f4cdf828fc4c9a9dfdd32)
;
var marker_6e266e98cef448ad8f7c50c25a702970 = L.marker(
[40.58605959, -73.97174269],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_565f549960c64dcbb99bd62c0c8ea869 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_6e266e98cef448ad8f7c50c25a702970.setIcon(icon_565f549960c64dcbb99bd62c0c8ea869);
var popup_61f74a7567974a6eb1d9218af22cf515 = L.popup({"maxWidth": "100%"});
var html_49fe39c74a9b41928db395540f5a98a1 = $(`<div id="html_49fe39c74a9b41928db395540f5a98a1" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: BROOKLYN</div>`)[0];
popup_61f74a7567974a6eb1d9218af22cf515.setContent(html_49fe39c74a9b41928db395540f5a98a1);
marker_6e266e98cef448ad8f7c50c25a702970.bindPopup(popup_61f74a7567974a6eb1d9218af22cf515)
;
var marker_ac011d9253b640d0b41d3821efe8ddd5 = L.marker(
[40.63303279, -74.02119331],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_130e9744c80c444ea325c63f376c0cf5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_ac011d9253b640d0b41d3821efe8ddd5.setIcon(icon_130e9744c80c444ea325c63f376c0cf5);
var popup_89b486f5427f49c19539da0c9bfef48a = L.popup({"maxWidth": "100%"});
var html_2cfcbc54ff824087ba85091e890e58d9 = $(`<div id="html_2cfcbc54ff824087ba85091e890e58d9" style="width: 100.0%; height: 100.0%;">Type of Crime: ASSAULT 3 & RELATED OFFENSES Area: BROOKLYN</div>`)[0];
popup_89b486f5427f49c19539da0c9bfef48a.setContent(html_2cfcbc54ff824087ba85091e890e58d9);
marker_ac011d9253b640d0b41d3821efe8ddd5.bindPopup(popup_89b486f5427f49c19539da0c9bfef48a)
;
var marker_c854c989e1d74a648060e4055f084183 = L.marker(
[40.66980020000001, -73.89239755],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_bbcc96ab457b46f390f0aa899098f636 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_c854c989e1d74a648060e4055f084183.setIcon(icon_bbcc96ab457b46f390f0aa899098f636);
var popup_75e9f99b1487488bb8726973a7c41853 = L.popup({"maxWidth": "100%"});
var html_0cae784ada524b04ab92cef941a8878f = $(`<div id="html_0cae784ada524b04ab92cef941a8878f" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS WEAPONS Area: BROOKLYN</div>`)[0];
popup_75e9f99b1487488bb8726973a7c41853.setContent(html_0cae784ada524b04ab92cef941a8878f);
marker_c854c989e1d74a648060e4055f084183.bindPopup(popup_75e9f99b1487488bb8726973a7c41853)
;
var marker_1ce4af2e118d447189213fd9813a3d0d = L.marker(
[40.69649389, -73.94943082],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_6d5cf509360e43fa98fa6c4b58e3d59d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_1ce4af2e118d447189213fd9813a3d0d.setIcon(icon_6d5cf509360e43fa98fa6c4b58e3d59d);
var popup_e38c373dbc014caeae969987bd19656d = L.popup({"maxWidth": "100%"});
var html_4bd0f32b53d54b71b0ef7931472df40c = $(`<div id="html_4bd0f32b53d54b71b0ef7931472df40c" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: BROOKLYN</div>`)[0];
popup_e38c373dbc014caeae969987bd19656d.setContent(html_4bd0f32b53d54b71b0ef7931472df40c);
marker_1ce4af2e118d447189213fd9813a3d0d.bindPopup(popup_e38c373dbc014caeae969987bd19656d)
;
var marker_33341b14f0514c77822b6e12943e54de = L.marker(
[40.62447468, -74.15820329],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_6a50aff343f24604b84587b9de8d41d1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_33341b14f0514c77822b6e12943e54de.setIcon(icon_6a50aff343f24604b84587b9de8d41d1);
var popup_c99d90937426435488ddfe7cbe90c62e = L.popup({"maxWidth": "100%"});
var html_8583751b634d4dfa9d428c8fc4f4c84d = $(`<div id="html_8583751b634d4dfa9d428c8fc4f4c84d" style="width: 100.0%; height: 100.0%;">Type of Crime: INTOXICATED & IMPAIRED DRIVING Area: STATEN ISLAND</div>`)[0];
popup_c99d90937426435488ddfe7cbe90c62e.setContent(html_8583751b634d4dfa9d428c8fc4f4c84d);
marker_33341b14f0514c77822b6e12943e54de.bindPopup(popup_c99d90937426435488ddfe7cbe90c62e)
;
var marker_0822bebc5909455892f2d3fc1bb73067 = L.marker(
[40.83886177, -73.91030606],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_acb58aca6e5644b394614c96389728c8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_0822bebc5909455892f2d3fc1bb73067.setIcon(icon_acb58aca6e5644b394614c96389728c8);
var popup_9fb6e58a07a54bf68566a84e44957728 = L.popup({"maxWidth": "100%"});
var html_a4d28df04464426099cd327f92182930 = $(`<div id="html_a4d28df04464426099cd327f92182930" style="width: 100.0%; height: 100.0%;">Type of Crime: CRIMINAL MISCHIEF & RELATED OF Area: BRONX</div>`)[0];
popup_9fb6e58a07a54bf68566a84e44957728.setContent(html_a4d28df04464426099cd327f92182930);
marker_0822bebc5909455892f2d3fc1bb73067.bindPopup(popup_9fb6e58a07a54bf68566a84e44957728)
;
var marker_c2f47701a7494c27a1f0de437c2362c9 = L.marker(
[40.72066379, -73.98806400000002],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_2c5ef7c1e9844ee5a7402f39fa43c3d7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_c2f47701a7494c27a1f0de437c2362c9.setIcon(icon_2c5ef7c1e9844ee5a7402f39fa43c3d7);
var popup_4e9a9e70fdbd4049af89fbd2a46a9959 = L.popup({"maxWidth": "100%"});
var html_a1390a3e2b354c4b82f6ed5377e03cee = $(`<div id="html_a1390a3e2b354c4b82f6ed5377e03cee" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS DRUGS Area: MANHATTAN</div>`)[0];
popup_4e9a9e70fdbd4049af89fbd2a46a9959.setContent(html_a1390a3e2b354c4b82f6ed5377e03cee);
marker_c2f47701a7494c27a1f0de437c2362c9.bindPopup(popup_4e9a9e70fdbd4049af89fbd2a46a9959)
;
var marker_9695625175f040ef8c6a07de176092e5 = L.marker(
[40.79330094, -73.94876500000002],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_684f71f9d16c47cebc23c9d6a12517c9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_9695625175f040ef8c6a07de176092e5.setIcon(icon_684f71f9d16c47cebc23c9d6a12517c9);
var popup_7cb4a0eb2fee4c8bb07a028f386a5d5f = L.popup({"maxWidth": "100%"});
var html_3c3692c476da40f18a6ed3a0ea6035f0 = $(`<div id="html_3c3692c476da40f18a6ed3a0ea6035f0" style="width: 100.0%; height: 100.0%;">Type of Crime: HARRASSMENT 2 Area: MANHATTAN</div>`)[0];
popup_7cb4a0eb2fee4c8bb07a028f386a5d5f.setContent(html_3c3692c476da40f18a6ed3a0ea6035f0);
marker_9695625175f040ef8c6a07de176092e5.bindPopup(popup_7cb4a0eb2fee4c8bb07a028f386a5d5f)
;
var marker_b274dd03d7044768bd7a8810de8cbf82 = L.marker(
[40.82635144, -73.90036827],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_91091951b7d34ba2af1e6a34b70c1087 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_b274dd03d7044768bd7a8810de8cbf82.setIcon(icon_91091951b7d34ba2af1e6a34b70c1087);
var popup_c324f5d22bfb4c91bd8937cccf36f75d = L.popup({"maxWidth": "100%"});
var html_e574dee08aa44cbd8c68d406c6438007 = $(`<div id="html_e574dee08aa44cbd8c68d406c6438007" style="width: 100.0%; height: 100.0%;">Type of Crime: FELONY ASSAULT Area: BRONX</div>`)[0];
popup_c324f5d22bfb4c91bd8937cccf36f75d.setContent(html_e574dee08aa44cbd8c68d406c6438007);
marker_b274dd03d7044768bd7a8810de8cbf82.bindPopup(popup_c324f5d22bfb4c91bd8937cccf36f75d)
;
var marker_43c33e10b4c7450c96508e8403f3c273 = L.marker(
[40.74278087, -73.98659848],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_bc862790a07f4fd6a1bd4d042c463646 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_43c33e10b4c7450c96508e8403f3c273.setIcon(icon_bc862790a07f4fd6a1bd4d042c463646);
var popup_ace0568855434799931124d08665c5e6 = L.popup({"maxWidth": "100%"});
var html_659129a758df4555827f7ceadc9e902c = $(`<div id="html_659129a758df4555827f7ceadc9e902c" style="width: 100.0%; height: 100.0%;">Type of Crime: FELONY ASSAULT Area: MANHATTAN</div>`)[0];
popup_ace0568855434799931124d08665c5e6.setContent(html_659129a758df4555827f7ceadc9e902c);
marker_43c33e10b4c7450c96508e8403f3c273.bindPopup(popup_ace0568855434799931124d08665c5e6)
;
var marker_16ef342f3e0647bbae502b12f3c4edca = L.marker(
[40.76214215, -73.88656651],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_2f45a6e3151e41878218d678c7161bf2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_16ef342f3e0647bbae502b12f3c4edca.setIcon(icon_2f45a6e3151e41878218d678c7161bf2);
var popup_8e55604324c943f3981f4cfed9b844e3 = L.popup({"maxWidth": "100%"});
var html_ecce8470a2764d93a22102055f6a5fb9 = $(`<div id="html_ecce8470a2764d93a22102055f6a5fb9" style="width: 100.0%; height: 100.0%;">Type of Crime: FELONY ASSAULT Area: QUEENS</div>`)[0];
popup_8e55604324c943f3981f4cfed9b844e3.setContent(html_ecce8470a2764d93a22102055f6a5fb9);
marker_16ef342f3e0647bbae502b12f3c4edca.bindPopup(popup_8e55604324c943f3981f4cfed9b844e3)
;
var marker_c142311bd9a64872bcc396003f947785 = L.marker(
[40.83364866, -73.90573092],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_26c661ad1fd0436eb6d5d1bf4a0d021b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_c142311bd9a64872bcc396003f947785.setIcon(icon_26c661ad1fd0436eb6d5d1bf4a0d021b);
var popup_a4cb3332c5ef4608b5d4abe7e7f4a37a = L.popup({"maxWidth": "100%"});
var html_5b87ee9cac984f4ba6e04e3eee3824f6 = $(`<div id="html_5b87ee9cac984f4ba6e04e3eee3824f6" style="width: 100.0%; height: 100.0%;">Type of Crime: OFFENSES AGAINST PUBLIC ADMINI Area: BRONX</div>`)[0];
popup_a4cb3332c5ef4608b5d4abe7e7f4a37a.setContent(html_5b87ee9cac984f4ba6e04e3eee3824f6);
marker_c142311bd9a64872bcc396003f947785.bindPopup(popup_a4cb3332c5ef4608b5d4abe7e7f4a37a)
;
var marker_28ac583086494aba98d08c10f2047ab4 = L.marker(
[40.87259541, -73.88127618],
{}
).addTo(marker_cluster_ffbcb666954049d2bb989c0e3d33ad69);
var icon_063a2026342c4183b612604b421abed4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_28ac583086494aba98d08c10f2047ab4.setIcon(icon_063a2026342c4183b612604b421abed4);
var popup_15c99addf85740ab87b7d0039bb37590 = L.popup({"maxWidth": "100%"});
var html_ae541b4f230241ffacd04e80d7ac05bf = $(`<div id="html_ae541b4f230241ffacd04e80d7ac05bf" style="width: 100.0%; height: 100.0%;">Type of Crime: DANGEROUS WEAPONS Area: BRONX</div>`)[0];
popup_15c99addf85740ab87b7d0039bb37590.setContent(html_ae541b4f230241ffacd04e80d7ac05bf);
marker_28ac583086494aba98d08c10f2047ab4.bindPopup(popup_15c99addf85740ab87b7d0039bb37590)
;
var marker_971e70c16fe84bf6a6949eac2207d2f7 = L.marker(
[40.59723849, -74.08520961],
{}