-
Notifications
You must be signed in to change notification settings - Fork 0
/
crime_map.html
10548 lines (4544 loc) · 368 KB
/
crime_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>
<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_d7a814b0d0d6e3bbfaa3c81580c5145b {
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_d7a814b0d0d6e3bbfaa3c81580c5145b" ></div>
</body>
<script>
var map_d7a814b0d0d6e3bbfaa3c81580c5145b = L.map(
"map_d7a814b0d0d6e3bbfaa3c81580c5145b",
{
center: [34.04733466933868, -118.26128256513026],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_ef8d74327a05fc1a1c562157667e86c1 = 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_d7a814b0d0d6e3bbfaa3c81580c5145b);
var marker_050b350d8c54e0d1b7becd4f23770a68 = L.marker(
[34.01, -118.3],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_9ed704241ceaddd03bfc1d54910e3fd0 = L.popup({"maxWidth": "100%"});
var html_8013999010bc0c0f5e84377557698207 = $(`<div id="html_8013999010bc0c0f5e84377557698207" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_9ed704241ceaddd03bfc1d54910e3fd0.setContent(html_8013999010bc0c0f5e84377557698207);
marker_050b350d8c54e0d1b7becd4f23770a68.bindPopup(popup_9ed704241ceaddd03bfc1d54910e3fd0)
;
var marker_9271971baebb700e766ab5aeecb515c9 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_516552e977e0143fbf505d2467a86dd9 = L.popup({"maxWidth": "100%"});
var html_9aaa65c052c2c6d0a38f2c7560ced1bd = $(`<div id="html_9aaa65c052c2c6d0a38f2c7560ced1bd" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_516552e977e0143fbf505d2467a86dd9.setContent(html_9aaa65c052c2c6d0a38f2c7560ced1bd);
marker_9271971baebb700e766ab5aeecb515c9.bindPopup(popup_516552e977e0143fbf505d2467a86dd9)
;
var marker_0fab0462334a7dc28106ffd5d3abab6e = L.marker(
[34.17, -118.4],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_b9bac649317516ac3e3f8979ea43dd66 = L.popup({"maxWidth": "100%"});
var html_d527169dfe3edd01f935d89aca573d71 = $(`<div id="html_d527169dfe3edd01f935d89aca573d71" style="width: 100.0%; height: 100.0%;">VANDALISM - MISDEAMEANOR ($399 OR UNDER)</div>`)[0];
popup_b9bac649317516ac3e3f8979ea43dd66.setContent(html_d527169dfe3edd01f935d89aca573d71);
marker_0fab0462334a7dc28106ffd5d3abab6e.bindPopup(popup_b9bac649317516ac3e3f8979ea43dd66)
;
var marker_e7471755ff6c6f0ca088383666b911d1 = L.marker(
[34.22, -118.45],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_f0bca36f5e5dcefa709bf8852229c065 = L.popup({"maxWidth": "100%"});
var html_aaea8075b3015e3dc000f9337a0aefd5 = $(`<div id="html_aaea8075b3015e3dc000f9337a0aefd5" style="width: 100.0%; height: 100.0%;">VANDALISM - FELONY ($400 & OVER, ALL CHURCH VANDALISMS)</div>`)[0];
popup_f0bca36f5e5dcefa709bf8852229c065.setContent(html_aaea8075b3015e3dc000f9337a0aefd5);
marker_e7471755ff6c6f0ca088383666b911d1.bindPopup(popup_f0bca36f5e5dcefa709bf8852229c065)
;
var marker_3abe7f88bc0e62bd200e163514c4799b = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_8b28cb01f1fd29c37fa5d77dbe2f41dc = L.popup({"maxWidth": "100%"});
var html_9d1e554b936c395126e977cbf882174f = $(`<div id="html_9d1e554b936c395126e977cbf882174f" style="width: 100.0%; height: 100.0%;">SHOPLIFTING - PETTY THEFT ($950 & UNDER)</div>`)[0];
popup_8b28cb01f1fd29c37fa5d77dbe2f41dc.setContent(html_9d1e554b936c395126e977cbf882174f);
marker_3abe7f88bc0e62bd200e163514c4799b.bindPopup(popup_8b28cb01f1fd29c37fa5d77dbe2f41dc)
;
var marker_1d7b450433824063a467b20b07a9ea5f = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_c562a3082a3c4ab626eb30d61d1b8a77 = L.popup({"maxWidth": "100%"});
var html_58b7e686df21eb861b0f9051a0956bd9 = $(`<div id="html_58b7e686df21eb861b0f9051a0956bd9" style="width: 100.0%; height: 100.0%;">OTHER MISCELLANEOUS CRIME</div>`)[0];
popup_c562a3082a3c4ab626eb30d61d1b8a77.setContent(html_58b7e686df21eb861b0f9051a0956bd9);
marker_1d7b450433824063a467b20b07a9ea5f.bindPopup(popup_c562a3082a3c4ab626eb30d61d1b8a77)
;
var marker_2df70e9dad0ec71dea351174eb36bbd2 = L.marker(
[34.07, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_aa1e6d2fa6d217434f428f581765df2d = L.popup({"maxWidth": "100%"});
var html_fe6d587ba3422f94cb7238f51505736b = $(`<div id="html_fe6d587ba3422f94cb7238f51505736b" style="width: 100.0%; height: 100.0%;">THEFT-GRAND ($950.01 & OVER)EXCPT,GUNS,FOWL,LIVESTK,PROD</div>`)[0];
popup_aa1e6d2fa6d217434f428f581765df2d.setContent(html_fe6d587ba3422f94cb7238f51505736b);
marker_2df70e9dad0ec71dea351174eb36bbd2.bindPopup(popup_aa1e6d2fa6d217434f428f581765df2d)
;
var marker_0c710df8cdccaa5835a766236d618f8e = L.marker(
[34.04, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_ae9d9e93f890237d4f43171d6e93726f = L.popup({"maxWidth": "100%"});
var html_442857afec08446ca11ac23a83ae94b3 = $(`<div id="html_442857afec08446ca11ac23a83ae94b3" style="width: 100.0%; height: 100.0%;">BURGLARY FROM VEHICLE</div>`)[0];
popup_ae9d9e93f890237d4f43171d6e93726f.setContent(html_442857afec08446ca11ac23a83ae94b3);
marker_0c710df8cdccaa5835a766236d618f8e.bindPopup(popup_ae9d9e93f890237d4f43171d6e93726f)
;
var marker_af35e841e78a8002312c9062216a3dfd = L.marker(
[34.06, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_f53742f6251105286301b9353ab74306 = L.popup({"maxWidth": "100%"});
var html_19a84295cd6be8d2c79c6be7340aff89 = $(`<div id="html_19a84295cd6be8d2c79c6be7340aff89" style="width: 100.0%; height: 100.0%;">CRIMINAL THREATS - NO WEAPON DISPLAYED</div>`)[0];
popup_f53742f6251105286301b9353ab74306.setContent(html_19a84295cd6be8d2c79c6be7340aff89);
marker_af35e841e78a8002312c9062216a3dfd.bindPopup(popup_f53742f6251105286301b9353ab74306)
;
var marker_9be61af988ebc79b2ab44c3affead579 = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_55bb35e13220ab38313a1542d32d71eb = L.popup({"maxWidth": "100%"});
var html_3566ddf9b5cbd04a8f23ebad7d33700c = $(`<div id="html_3566ddf9b5cbd04a8f23ebad7d33700c" style="width: 100.0%; height: 100.0%;">THEFT-GRAND ($950.01 & OVER)EXCPT,GUNS,FOWL,LIVESTK,PROD</div>`)[0];
popup_55bb35e13220ab38313a1542d32d71eb.setContent(html_3566ddf9b5cbd04a8f23ebad7d33700c);
marker_9be61af988ebc79b2ab44c3affead579.bindPopup(popup_55bb35e13220ab38313a1542d32d71eb)
;
var marker_9d7b28826d5fb24ffd8f9f3e86723a70 = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_a40700d988de5dd295690c88848c8549 = L.popup({"maxWidth": "100%"});
var html_916c43f2261cfe5a4e858bff4afa76b3 = $(`<div id="html_916c43f2261cfe5a4e858bff4afa76b3" style="width: 100.0%; height: 100.0%;">ARSON</div>`)[0];
popup_a40700d988de5dd295690c88848c8549.setContent(html_916c43f2261cfe5a4e858bff4afa76b3);
marker_9d7b28826d5fb24ffd8f9f3e86723a70.bindPopup(popup_a40700d988de5dd295690c88848c8549)
;
var marker_de9c26f568f4dffdb921660e06c60045 = L.marker(
[34.05, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_099b8a1ba85d08f8ecb30a501295f9a1 = L.popup({"maxWidth": "100%"});
var html_4dc71d7ace0077ff2ef7abd7fe674360 = $(`<div id="html_4dc71d7ace0077ff2ef7abd7fe674360" style="width: 100.0%; height: 100.0%;">SHOPLIFTING - PETTY THEFT ($950 & UNDER)</div>`)[0];
popup_099b8a1ba85d08f8ecb30a501295f9a1.setContent(html_4dc71d7ace0077ff2ef7abd7fe674360);
marker_de9c26f568f4dffdb921660e06c60045.bindPopup(popup_099b8a1ba85d08f8ecb30a501295f9a1)
;
var marker_dc203385e1ceaf715993f21af3f6a584 = L.marker(
[34.2, -118.43],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_a9b96b653e350f1835081c2985d6f88a = L.popup({"maxWidth": "100%"});
var html_803071b32fa04fc531954916b4791683 = $(`<div id="html_803071b32fa04fc531954916b4791683" style="width: 100.0%; height: 100.0%;">THEFT OF IDENTITY</div>`)[0];
popup_a9b96b653e350f1835081c2985d6f88a.setContent(html_803071b32fa04fc531954916b4791683);
marker_dc203385e1ceaf715993f21af3f6a584.bindPopup(popup_a9b96b653e350f1835081c2985d6f88a)
;
var marker_7e89dd0f5f329dbff99f995bdb5f365c = L.marker(
[34.08, -118.37],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_19cb958fe12cc610b23d6296a803b193 = L.popup({"maxWidth": "100%"});
var html_34fac5bf6eac77fabbbc71443e75775c = $(`<div id="html_34fac5bf6eac77fabbbc71443e75775c" style="width: 100.0%; height: 100.0%;">SHOPLIFTING - PETTY THEFT ($950 & UNDER)</div>`)[0];
popup_19cb958fe12cc610b23d6296a803b193.setContent(html_34fac5bf6eac77fabbbc71443e75775c);
marker_7e89dd0f5f329dbff99f995bdb5f365c.bindPopup(popup_19cb958fe12cc610b23d6296a803b193)
;
var marker_0d0e7b7b83b29668c562d790ac3d6a9d = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_64b295f2a1a675b8e13088afd6d904aa = L.popup({"maxWidth": "100%"});
var html_5884eb936f22a31ab6070fad5cec51ee = $(`<div id="html_5884eb936f22a31ab6070fad5cec51ee" style="width: 100.0%; height: 100.0%;">ASSAULT WITH DEADLY WEAPON, AGGRAVATED ASSAULT</div>`)[0];
popup_64b295f2a1a675b8e13088afd6d904aa.setContent(html_5884eb936f22a31ab6070fad5cec51ee);
marker_0d0e7b7b83b29668c562d790ac3d6a9d.bindPopup(popup_64b295f2a1a675b8e13088afd6d904aa)
;
var marker_abdf8f1b3454b46df61b1b7d15d797ec = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_6c2aeb654b472a4acdfb0c272fadb85d = L.popup({"maxWidth": "100%"});
var html_503105e9304db53b2b917ccad5c72852 = $(`<div id="html_503105e9304db53b2b917ccad5c72852" style="width: 100.0%; height: 100.0%;">SHOPLIFTING - PETTY THEFT ($950 & UNDER)</div>`)[0];
popup_6c2aeb654b472a4acdfb0c272fadb85d.setContent(html_503105e9304db53b2b917ccad5c72852);
marker_abdf8f1b3454b46df61b1b7d15d797ec.bindPopup(popup_6c2aeb654b472a4acdfb0c272fadb85d)
;
var marker_ba3989f576b28d5af2254c3b4af2b053 = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_c75995640778eb3702e1f1855bd05e01 = L.popup({"maxWidth": "100%"});
var html_92b3b58509f8f859242a388841ccc10c = $(`<div id="html_92b3b58509f8f859242a388841ccc10c" style="width: 100.0%; height: 100.0%;">VANDALISM - FELONY ($400 & OVER, ALL CHURCH VANDALISMS)</div>`)[0];
popup_c75995640778eb3702e1f1855bd05e01.setContent(html_92b3b58509f8f859242a388841ccc10c);
marker_ba3989f576b28d5af2254c3b4af2b053.bindPopup(popup_c75995640778eb3702e1f1855bd05e01)
;
var marker_8c0d5ceb573c58808870ff8ef5349059 = L.marker(
[34.07, -118.28],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_235f5900a8cf258529b6973b47302778 = L.popup({"maxWidth": "100%"});
var html_8259b445e8e336dd7aa80e978826cf3a = $(`<div id="html_8259b445e8e336dd7aa80e978826cf3a" style="width: 100.0%; height: 100.0%;">BRANDISH WEAPON</div>`)[0];
popup_235f5900a8cf258529b6973b47302778.setContent(html_8259b445e8e336dd7aa80e978826cf3a);
marker_8c0d5ceb573c58808870ff8ef5349059.bindPopup(popup_235f5900a8cf258529b6973b47302778)
;
var marker_7ce4c4e8447a7d4c77b8b9b4780035cb = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_0b7c300e2ca959ffe940608dcb0c5dfa = L.popup({"maxWidth": "100%"});
var html_29df8a23bf6a25263f78b5b5e8a7bba0 = $(`<div id="html_29df8a23bf6a25263f78b5b5e8a7bba0" style="width: 100.0%; height: 100.0%;">SHOPLIFTING - PETTY THEFT ($950 & UNDER)</div>`)[0];
popup_0b7c300e2ca959ffe940608dcb0c5dfa.setContent(html_29df8a23bf6a25263f78b5b5e8a7bba0);
marker_7ce4c4e8447a7d4c77b8b9b4780035cb.bindPopup(popup_0b7c300e2ca959ffe940608dcb0c5dfa)
;
var marker_3f9383a995d8ff38fe43e600d5e92ba2 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_319b6e252f999e9414278244a1ef5ed9 = L.popup({"maxWidth": "100%"});
var html_b1f4442a127b4eb30bb5b252f57c384f = $(`<div id="html_b1f4442a127b4eb30bb5b252f57c384f" style="width: 100.0%; height: 100.0%;">THEFT, PERSON</div>`)[0];
popup_319b6e252f999e9414278244a1ef5ed9.setContent(html_b1f4442a127b4eb30bb5b252f57c384f);
marker_3f9383a995d8ff38fe43e600d5e92ba2.bindPopup(popup_319b6e252f999e9414278244a1ef5ed9)
;
var marker_23752996735330b27f4c49147f36b1cc = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_987db8498bd97db1e42e112a573dcca4 = L.popup({"maxWidth": "100%"});
var html_fbcfb39f11d215cc2ce9a2ed74ebb9e5 = $(`<div id="html_fbcfb39f11d215cc2ce9a2ed74ebb9e5" style="width: 100.0%; height: 100.0%;">VANDALISM - FELONY ($400 & OVER, ALL CHURCH VANDALISMS)</div>`)[0];
popup_987db8498bd97db1e42e112a573dcca4.setContent(html_fbcfb39f11d215cc2ce9a2ed74ebb9e5);
marker_23752996735330b27f4c49147f36b1cc.bindPopup(popup_987db8498bd97db1e42e112a573dcca4)
;
var marker_af123f085399d74be77b7296635be8a0 = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_8eb02cb241064e5aaf5d19d22e4d72a7 = L.popup({"maxWidth": "100%"});
var html_9d25d5675d85b87116fb9bb285c41c51 = $(`<div id="html_9d25d5675d85b87116fb9bb285c41c51" style="width: 100.0%; height: 100.0%;">CRIMINAL THREATS - NO WEAPON DISPLAYED</div>`)[0];
popup_8eb02cb241064e5aaf5d19d22e4d72a7.setContent(html_9d25d5675d85b87116fb9bb285c41c51);
marker_af123f085399d74be77b7296635be8a0.bindPopup(popup_8eb02cb241064e5aaf5d19d22e4d72a7)
;
var marker_80bdb0d1e3265e35dc42f1fa197cab24 = L.marker(
[34.06, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_3296166ad46ceb849586bc89f7d4ef85 = L.popup({"maxWidth": "100%"});
var html_c88cea8b960a62675ed99a4c20f5ffe6 = $(`<div id="html_c88cea8b960a62675ed99a4c20f5ffe6" style="width: 100.0%; height: 100.0%;">BURGLARY</div>`)[0];
popup_3296166ad46ceb849586bc89f7d4ef85.setContent(html_c88cea8b960a62675ed99a4c20f5ffe6);
marker_80bdb0d1e3265e35dc42f1fa197cab24.bindPopup(popup_3296166ad46ceb849586bc89f7d4ef85)
;
var marker_6ae78df597c4a67c4dc590c22880c0c0 = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_e9776705df57719d62058e694244f232 = L.popup({"maxWidth": "100%"});
var html_8694d5c995679ea8d977661dfb935200 = $(`<div id="html_8694d5c995679ea8d977661dfb935200" style="width: 100.0%; height: 100.0%;">ASSAULT WITH DEADLY WEAPON, AGGRAVATED ASSAULT</div>`)[0];
popup_e9776705df57719d62058e694244f232.setContent(html_8694d5c995679ea8d977661dfb935200);
marker_6ae78df597c4a67c4dc590c22880c0c0.bindPopup(popup_e9776705df57719d62058e694244f232)
;
var marker_9411357262c81d7d081dd56883a6c20a = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_b8dbf7f59dac2d26eabc16046b3be7ec = L.popup({"maxWidth": "100%"});
var html_9ff478f60c76df5536aef295ea13024b = $(`<div id="html_9ff478f60c76df5536aef295ea13024b" style="width: 100.0%; height: 100.0%;">VANDALISM - MISDEAMEANOR ($399 OR UNDER)</div>`)[0];
popup_b8dbf7f59dac2d26eabc16046b3be7ec.setContent(html_9ff478f60c76df5536aef295ea13024b);
marker_9411357262c81d7d081dd56883a6c20a.bindPopup(popup_b8dbf7f59dac2d26eabc16046b3be7ec)
;
var marker_5bc34eb7be2865ea5577116872e3d110 = L.marker(
[34.03, -118.27],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_66d4712f20a57cc4ad1ebaa5db99cd99 = L.popup({"maxWidth": "100%"});
var html_07ed7bb2ad37b947bfa9e57dad2a57cf = $(`<div id="html_07ed7bb2ad37b947bfa9e57dad2a57cf" style="width: 100.0%; height: 100.0%;">BIKE - STOLEN</div>`)[0];
popup_66d4712f20a57cc4ad1ebaa5db99cd99.setContent(html_07ed7bb2ad37b947bfa9e57dad2a57cf);
marker_5bc34eb7be2865ea5577116872e3d110.bindPopup(popup_66d4712f20a57cc4ad1ebaa5db99cd99)
;
var marker_a643902462f24c6c1d4add27f0a0c47c = L.marker(
[34.06, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_503be30e2f67cb76c9ae150225a7a00a = L.popup({"maxWidth": "100%"});
var html_20ef0df441ca2722c9433cc92ba48806 = $(`<div id="html_20ef0df441ca2722c9433cc92ba48806" style="width: 100.0%; height: 100.0%;">VANDALISM - MISDEAMEANOR ($399 OR UNDER)</div>`)[0];
popup_503be30e2f67cb76c9ae150225a7a00a.setContent(html_20ef0df441ca2722c9433cc92ba48806);
marker_a643902462f24c6c1d4add27f0a0c47c.bindPopup(popup_503be30e2f67cb76c9ae150225a7a00a)
;
var marker_3c53cabae1ac90a867ffa9d2c7ac6559 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_528bd7b40c3b6250ea13363021f5c533 = L.popup({"maxWidth": "100%"});
var html_7457938eeaa0af51d883403309e1ec7c = $(`<div id="html_7457938eeaa0af51d883403309e1ec7c" style="width: 100.0%; height: 100.0%;">BATTERY POLICE (SIMPLE)</div>`)[0];
popup_528bd7b40c3b6250ea13363021f5c533.setContent(html_7457938eeaa0af51d883403309e1ec7c);
marker_3c53cabae1ac90a867ffa9d2c7ac6559.bindPopup(popup_528bd7b40c3b6250ea13363021f5c533)
;
var marker_1cce566a4323873a51b209d2ec82eb15 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_92f9f5e703d3a04b717c7523529fbaac = L.popup({"maxWidth": "100%"});
var html_703c140a190df828a3c5be38ba025482 = $(`<div id="html_703c140a190df828a3c5be38ba025482" style="width: 100.0%; height: 100.0%;">BATTERY POLICE (SIMPLE)</div>`)[0];
popup_92f9f5e703d3a04b717c7523529fbaac.setContent(html_703c140a190df828a3c5be38ba025482);
marker_1cce566a4323873a51b209d2ec82eb15.bindPopup(popup_92f9f5e703d3a04b717c7523529fbaac)
;
var marker_429311c5e6feacc2969f1b8753f11c2a = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_e4945ac751bc2a9fde61091a14c3d401 = L.popup({"maxWidth": "100%"});
var html_30cda402fdf30dc21d04f2d1b01bb4af = $(`<div id="html_30cda402fdf30dc21d04f2d1b01bb4af" style="width: 100.0%; height: 100.0%;">THEFT PLAIN - PETTY ($950 & UNDER)</div>`)[0];
popup_e4945ac751bc2a9fde61091a14c3d401.setContent(html_30cda402fdf30dc21d04f2d1b01bb4af);
marker_429311c5e6feacc2969f1b8753f11c2a.bindPopup(popup_e4945ac751bc2a9fde61091a14c3d401)
;
var marker_ee9c6d363e178eaa46db7fc88f2c320a = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_3f2baafb1c972791eb8b08dba6d84cc8 = L.popup({"maxWidth": "100%"});
var html_b38017c557b0140b70553a5282f76675 = $(`<div id="html_b38017c557b0140b70553a5282f76675" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_3f2baafb1c972791eb8b08dba6d84cc8.setContent(html_b38017c557b0140b70553a5282f76675);
marker_ee9c6d363e178eaa46db7fc88f2c320a.bindPopup(popup_3f2baafb1c972791eb8b08dba6d84cc8)
;
var marker_bb9d66bae1f5c630f65c15bb41864ba8 = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_0bff05f167f1e01f92829c2e6faf54ec = L.popup({"maxWidth": "100%"});
var html_9264538dbe82dae900dfba289423b8a3 = $(`<div id="html_9264538dbe82dae900dfba289423b8a3" style="width: 100.0%; height: 100.0%;">ASSAULT WITH DEADLY WEAPON, AGGRAVATED ASSAULT</div>`)[0];
popup_0bff05f167f1e01f92829c2e6faf54ec.setContent(html_9264538dbe82dae900dfba289423b8a3);
marker_bb9d66bae1f5c630f65c15bb41864ba8.bindPopup(popup_0bff05f167f1e01f92829c2e6faf54ec)
;
var marker_c7aa19379488570be2aa65cc17501bd4 = L.marker(
[34.05, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_db8b12c093099387161b79f43e893602 = L.popup({"maxWidth": "100%"});
var html_6dbac1c11fc92e23c9aafae81f9e68cf = $(`<div id="html_6dbac1c11fc92e23c9aafae81f9e68cf" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_db8b12c093099387161b79f43e893602.setContent(html_6dbac1c11fc92e23c9aafae81f9e68cf);
marker_c7aa19379488570be2aa65cc17501bd4.bindPopup(popup_db8b12c093099387161b79f43e893602)
;
var marker_1b04b499a4b724f680359b0f65221c40 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_204e311f480a3978bb9334f5156282fa = L.popup({"maxWidth": "100%"});
var html_c393188f9ae6c03a9b9caa93b934ca74 = $(`<div id="html_c393188f9ae6c03a9b9caa93b934ca74" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_204e311f480a3978bb9334f5156282fa.setContent(html_c393188f9ae6c03a9b9caa93b934ca74);
marker_1b04b499a4b724f680359b0f65221c40.bindPopup(popup_204e311f480a3978bb9334f5156282fa)
;
var marker_d3813fa5368fadd571caf828c4287a60 = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_6251df123697a4d95de78a5648bc57df = L.popup({"maxWidth": "100%"});
var html_e9303a742360d5c6ec0897e53963c1a6 = $(`<div id="html_e9303a742360d5c6ec0897e53963c1a6" style="width: 100.0%; height: 100.0%;">THEFT-GRAND ($950.01 & OVER)EXCPT,GUNS,FOWL,LIVESTK,PROD</div>`)[0];
popup_6251df123697a4d95de78a5648bc57df.setContent(html_e9303a742360d5c6ec0897e53963c1a6);
marker_d3813fa5368fadd571caf828c4287a60.bindPopup(popup_6251df123697a4d95de78a5648bc57df)
;
var marker_14cfbb2c15e23785c5ef4eaae59d4c3f = L.marker(
[34.06, -118.23],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_c14ad845b4f0f63e3a910f481955469c = L.popup({"maxWidth": "100%"});
var html_bb064da16d3f923c0bf4afc45b791ba8 = $(`<div id="html_bb064da16d3f923c0bf4afc45b791ba8" style="width: 100.0%; height: 100.0%;">VANDALISM - MISDEAMEANOR ($399 OR UNDER)</div>`)[0];
popup_c14ad845b4f0f63e3a910f481955469c.setContent(html_bb064da16d3f923c0bf4afc45b791ba8);
marker_14cfbb2c15e23785c5ef4eaae59d4c3f.bindPopup(popup_c14ad845b4f0f63e3a910f481955469c)
;
var marker_fdead55a3568d2b49cd2b9172ba2f998 = L.marker(
[34.04, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_c056267bfdb3f372bbe2a854615db2e3 = L.popup({"maxWidth": "100%"});
var html_5e45411561080bd83626bda73d338ef8 = $(`<div id="html_5e45411561080bd83626bda73d338ef8" style="width: 100.0%; height: 100.0%;">VANDALISM - MISDEAMEANOR ($399 OR UNDER)</div>`)[0];
popup_c056267bfdb3f372bbe2a854615db2e3.setContent(html_5e45411561080bd83626bda73d338ef8);
marker_fdead55a3568d2b49cd2b9172ba2f998.bindPopup(popup_c056267bfdb3f372bbe2a854615db2e3)
;
var marker_c9a1082c0bc267c18d6bd874215c0876 = L.marker(
[34.06, -118.24],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_b472142c522669bfb0f9173ff581c889 = L.popup({"maxWidth": "100%"});
var html_ac23cf89c50825a5f13c538ef6b84aee = $(`<div id="html_ac23cf89c50825a5f13c538ef6b84aee" style="width: 100.0%; height: 100.0%;">BURGLARY</div>`)[0];
popup_b472142c522669bfb0f9173ff581c889.setContent(html_ac23cf89c50825a5f13c538ef6b84aee);
marker_c9a1082c0bc267c18d6bd874215c0876.bindPopup(popup_b472142c522669bfb0f9173ff581c889)
;
var marker_b343124ce35daff5af02bd4f03194f67 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_fee2088622ef957b2e8f4a0dd0e3b71e = L.popup({"maxWidth": "100%"});
var html_f20bdd38695d80ba8b434ae19922cc57 = $(`<div id="html_f20bdd38695d80ba8b434ae19922cc57" style="width: 100.0%; height: 100.0%;">VEHICLE - STOLEN</div>`)[0];
popup_fee2088622ef957b2e8f4a0dd0e3b71e.setContent(html_f20bdd38695d80ba8b434ae19922cc57);
marker_b343124ce35daff5af02bd4f03194f67.bindPopup(popup_fee2088622ef957b2e8f4a0dd0e3b71e)
;
var marker_27e04193f2fa09a06cbec4baa3f07284 = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_e59c9f86db67efd6fa7c2f1f42e98cb9 = L.popup({"maxWidth": "100%"});
var html_0b24c524821afd70ee58b4f2cd3da2f9 = $(`<div id="html_0b24c524821afd70ee58b4f2cd3da2f9" style="width: 100.0%; height: 100.0%;">THEFT PLAIN - PETTY ($950 & UNDER)</div>`)[0];
popup_e59c9f86db67efd6fa7c2f1f42e98cb9.setContent(html_0b24c524821afd70ee58b4f2cd3da2f9);
marker_27e04193f2fa09a06cbec4baa3f07284.bindPopup(popup_e59c9f86db67efd6fa7c2f1f42e98cb9)
;
var marker_932f67f836907642922e91f190290406 = L.marker(
[34.05, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_504eca2c77a6851318351c76e5876662 = L.popup({"maxWidth": "100%"});
var html_8335741a77dc8b45e27f9eb4f86592fc = $(`<div id="html_8335741a77dc8b45e27f9eb4f86592fc" style="width: 100.0%; height: 100.0%;">THEFT-GRAND ($950.01 & OVER)EXCPT,GUNS,FOWL,LIVESTK,PROD</div>`)[0];
popup_504eca2c77a6851318351c76e5876662.setContent(html_8335741a77dc8b45e27f9eb4f86592fc);
marker_932f67f836907642922e91f190290406.bindPopup(popup_504eca2c77a6851318351c76e5876662)
;
var marker_4e644c812cc989107fd162c1394dd543 = L.marker(
[34.03, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_c50153c3aef9e05325f58ec7bca0c7fd = L.popup({"maxWidth": "100%"});
var html_a7d5d8c833a928a9963fc604606c96a5 = $(`<div id="html_a7d5d8c833a928a9963fc604606c96a5" style="width: 100.0%; height: 100.0%;">BURGLARY FROM VEHICLE</div>`)[0];
popup_c50153c3aef9e05325f58ec7bca0c7fd.setContent(html_a7d5d8c833a928a9963fc604606c96a5);
marker_4e644c812cc989107fd162c1394dd543.bindPopup(popup_c50153c3aef9e05325f58ec7bca0c7fd)
;
var marker_e5d428efb7ca132d46c347135abacfd6 = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_efd74d7144c634d522555eadfb874ca0 = L.popup({"maxWidth": "100%"});
var html_113ca5adb9af5981bb9b63453e9031d2 = $(`<div id="html_113ca5adb9af5981bb9b63453e9031d2" style="width: 100.0%; height: 100.0%;">ROBBERY</div>`)[0];
popup_efd74d7144c634d522555eadfb874ca0.setContent(html_113ca5adb9af5981bb9b63453e9031d2);
marker_e5d428efb7ca132d46c347135abacfd6.bindPopup(popup_efd74d7144c634d522555eadfb874ca0)
;
var marker_71d2877697a521aa47153840f01d2842 = L.marker(
[34.04, -118.25],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_ba36a6bc93eaf7975985bb0a62c23047 = L.popup({"maxWidth": "100%"});
var html_f7e9ca6378aa119cf5b1211866b3250b = $(`<div id="html_f7e9ca6378aa119cf5b1211866b3250b" style="width: 100.0%; height: 100.0%;">BATTERY - SIMPLE ASSAULT</div>`)[0];
popup_ba36a6bc93eaf7975985bb0a62c23047.setContent(html_f7e9ca6378aa119cf5b1211866b3250b);
marker_71d2877697a521aa47153840f01d2842.bindPopup(popup_ba36a6bc93eaf7975985bb0a62c23047)
;
var marker_8bdb87a230c5fabe624ffd31d1fec64d = L.marker(
[34.05, -118.26],
{}
).addTo(map_d7a814b0d0d6e3bbfaa3c81580c5145b);
var popup_74cfea7f398753c64702add5aa22236b = L.popup({"maxWidth": "100%"});