-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchicago_map.html
More file actions
6350 lines (3770 loc) · 204 KB
/
chicago_map.html
File metadata and controls
6350 lines (3770 loc) · 204 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<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/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/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/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/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_d9fe789f3fc05e473549f7287cbc934b {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_d9fe789f3fc05e473549f7287cbc934b" ></div>
</body>
<script>
var map_d9fe789f3fc05e473549f7287cbc934b = L.map(
"map_d9fe789f3fc05e473549f7287cbc934b",
{
center: [41.8781, -87.6298],
crs: L.CRS.EPSG3857,
...{
"zoom": 10,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_719ce7b426a2d65394aabbf8b1bb3ec9 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_719ce7b426a2d65394aabbf8b1bb3ec9.addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var heat_map_5fcd08917f56091175a01af658628b83 = L.heatLayer(
[[41.678891184, -87.50060877, 1], [42.111995185, -87.97992055, 1], [42.065588239, -87.98362351, 1], [42.005440874, -88.01321492, 1], [42.072481204, -88.02244039, 1], [42.046328557, -87.88675142, 1], [42.014128151, -87.89779845, 23], [42.072961243, -87.81761952, 5], [42.091225679, -87.83767203, 3], [42.205331861, -87.81345198, 1], [42.088602112, -87.71642381, 2], [42.286589543, -87.86560363, 1], [42.238613525, -87.85746062, 10], [42.200496415, -88.06410968, 1], [42.041712908, -87.78929815, 9], [42.061321793, -87.93919082, 1], [42.12498608, -87.84348057, 7], [42.012235089, -87.84198696, 6], [42.190253401, -87.92196801, 2], [42.036065201, -87.73371746, 30], [42.035876401, -87.75397538, 43], [42.360561426, -87.8611953, 2], [42.1617671, -87.96449449, 2], [42.133256419, -87.93234659, 1], [42.076879175, -87.72390636, 23], [42.103640201, -87.75358498, 12], [41.933693289, -88.00605971, 1], [41.882168463, -87.87808754, 2], [41.949036969, -87.94478055, 1], [42.040989137, -88.25968214, 2], [42.036556962, -88.31150822, 4], [41.892171049, -87.94209959, 5], [41.875414175, -87.8109904, 2], [41.934120414, -87.87217575, 4], [41.86878661, -88.01562275, 3], [41.879509877, -87.8453371, 1], [41.861017854, -87.85243047, 2], [41.901485743, -87.85715226, 5], [41.873030496, -87.90143568, 3], [41.918883708, -87.89605706, 2], [41.929238006, -87.83800074, 2], [41.956696608, -87.86844075, 7], [41.876294037, -87.97901081, 1], [42.084261549, -88.15473589, 1], [42.05406256, -87.69401507, 160], [42.030161533, -87.68456724, 101], [42.048791268, -87.71717322, 4], [41.887817685, -87.80177289, 4], [41.890629755, -87.79099109, 12], [41.872239277, -87.78762538, 2], [41.894298512, -87.81545925, 4], [41.841224507, -87.79110081, 7], [41.613673855, -87.55224022, 5], [41.508922206, -87.60866065, 1], [41.500319749, -87.8378222, 1], [41.59758978, -87.68742007, 1], [41.556134199, -87.66280236, 3], [41.665143587, -87.98534623, 1], [41.50886812, -87.74362412, 2], [41.712865351, -87.75024259, 3], [41.740679299, -87.80653099, 2], [41.731290979, -87.73239855, 1], [41.725724287, -87.82833317, 1], [41.744588267, -87.7694308, 1], [41.517794375, -87.69180157, 1], [41.481038633, -87.72273939, 2], [41.597841442, -87.59660735, 1], [41.578603923, -87.79229502, 1], [41.783937361, -87.80765356, 3], [41.821286073, -87.84916924, 3], [41.802709498, -88.01448531, 1], [41.749137676, -88.0458023, 1], [41.799896365, -87.92934897, 2], [41.837643646, -87.96621327, 2], [41.789739439, -87.87726847, 2], [41.813355913, -87.82334989, 2], [41.83804023, -87.82248934, 8], [41.803329637, -87.90001909, 2], [41.746362986, -87.9791149, 1], [41.885894352, -87.62096734, 145], [41.883043091, -87.62573876, 58], [41.880660042, -87.62750783, 104], [41.877817747, -87.6262399, 25], [41.868191909, -87.62640339, 183], [41.884662792, -87.63651855, 141], [41.877256078, -87.65293491, 427], [41.850597614, -87.6657888, 136], [41.813027697, -87.65700733, 41], [41.904394764, -87.63306339, 293], [41.894846272, -87.621348, 375], [41.880242894, -87.68683592, 201], [41.954120336, -87.65564955, 312], [41.9239581, -87.64807649, 568], [41.802092367, -87.59798509, 33], [41.846276034, -87.62717615, 149], [41.724582794, -87.55722215, 4], [41.947067514, -87.70245047, 329], [41.745939654, -87.60588226, 15], [41.741830838, -87.65324928, 14], [41.774283626, -87.64100946, 12], [41.902945247, -87.68062392, 497], [41.850788226, -87.71736471, 56], [41.879624975, -87.72095903, 70], [41.970573136, -87.70188102, 180], [42.009459655, -87.66788452, 194], [41.694951011, -87.62331053, 9], [41.777797323, -87.70893965, 18], [41.970377848, -87.76040231, 63], [41.997262563, -87.80994551, 18], [41.808056252, -87.70758501, 34], [41.649251355, -87.54760133, 1], [41.944998528, -87.79500493, 31], [41.775111789, -87.66772895, 12], [41.782158538, -87.60329725, 40], [41.788167416, -87.77367008, 20], [41.921021155, -87.7551146, 111], [41.972009533, -87.66138262, 350], [41.946471025, -87.74639339, 97], [41.898313875, -87.65907659, 240], [41.69971579, -87.66214046, 5], [41.882746777, -87.7599721, 39], [42.00839721, -87.69298751, 88], [41.993111267, -87.76217861, 16], [41.920674661, -87.70107155, 629], [41.762930095, -87.56955447, 10], [41.902544167, -87.73961846, 119], [41.745188034, -87.71411138, 10], [41.819079849, -87.61133759, 23], [41.892446206, -87.63506968, 333], [41.975064707, -87.82471809, 11], [41.939795746, -87.6506393, 553], [41.991292532, -87.70002174, 58], [41.990465399, -87.66173571, 162], [41.883483965, -87.64413646, 140], [41.965063425, -87.81672586, 10], [41.923067391, -87.80816346, 12], [42.005731666, -87.73293891, 15], [42.033787381, -87.81949975, 14], [41.673159489, -87.7261352, 6], [41.845914128, -87.76219264, 12], [41.720134379, -87.70292022, 5], [41.650162391, -87.63066653, 1]],
{
"minOpacity": 0.5,
"maxZoom": 18,
"radius": 15,
"blur": 15,
"maxOpacity": 0.8,
}
);
heat_map_5fcd08917f56091175a01af658628b83.addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var marker_c627f29a0d1af18ebc816eaf086d0f7b = L.marker(
[41.678891184, -87.50060877],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_54535a49d71329c9339e84e5ec9264af = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e46394\u003c/div\u003e",
"className": "empty",
});
marker_c627f29a0d1af18ebc816eaf086d0f7b.setIcon(div_icon_54535a49d71329c9339e84e5ec9264af);
var popup_3f05c92433ab36656f65516af757d138 = L.popup({
"maxWidth": "100%",
});
var html_ad62188de4dac837309eff65e3fc86a8 = $(`<div id="html_ad62188de4dac837309eff65e3fc86a8" style="width: 100.0%; height: 100.0%;">Zip: 46394<br>Count: 1</div>`)[0];
popup_3f05c92433ab36656f65516af757d138.setContent(html_ad62188de4dac837309eff65e3fc86a8);
marker_c627f29a0d1af18ebc816eaf086d0f7b.bindPopup(popup_3f05c92433ab36656f65516af757d138)
;
marker_c627f29a0d1af18ebc816eaf086d0f7b.bindTooltip(
`<div>
46394
</div>`,
{
"sticky": true,
}
);
marker_c627f29a0d1af18ebc816eaf086d0f7b.setIcon(div_icon_54535a49d71329c9339e84e5ec9264af);
var marker_a2da508ed776d19d7b35146ff4b2d84d = L.marker(
[42.111995185, -87.97992055],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_e5a37db8347fa84ba9d1b8cfd07697a6 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60004\u003c/div\u003e",
"className": "empty",
});
marker_a2da508ed776d19d7b35146ff4b2d84d.setIcon(div_icon_e5a37db8347fa84ba9d1b8cfd07697a6);
var popup_b306f9724782f8883d9031b60a20e2a4 = L.popup({
"maxWidth": "100%",
});
var html_093518de6a4148b88dbdc11e9756593e = $(`<div id="html_093518de6a4148b88dbdc11e9756593e" style="width: 100.0%; height: 100.0%;">Zip: 60004<br>Count: 1</div>`)[0];
popup_b306f9724782f8883d9031b60a20e2a4.setContent(html_093518de6a4148b88dbdc11e9756593e);
marker_a2da508ed776d19d7b35146ff4b2d84d.bindPopup(popup_b306f9724782f8883d9031b60a20e2a4)
;
marker_a2da508ed776d19d7b35146ff4b2d84d.bindTooltip(
`<div>
60004
</div>`,
{
"sticky": true,
}
);
marker_a2da508ed776d19d7b35146ff4b2d84d.setIcon(div_icon_e5a37db8347fa84ba9d1b8cfd07697a6);
var marker_88104d9a5a019be62b301830723035cd = L.marker(
[42.065588239, -87.98362351],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_bf2d2b177eecab1a223ef7a94c0ef6be = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60005\u003c/div\u003e",
"className": "empty",
});
marker_88104d9a5a019be62b301830723035cd.setIcon(div_icon_bf2d2b177eecab1a223ef7a94c0ef6be);
var popup_fef906add939b7e1cc0f89e3f8120014 = L.popup({
"maxWidth": "100%",
});
var html_ed37d6b31d02a4b868c7e6cb0f308634 = $(`<div id="html_ed37d6b31d02a4b868c7e6cb0f308634" style="width: 100.0%; height: 100.0%;">Zip: 60005<br>Count: 1</div>`)[0];
popup_fef906add939b7e1cc0f89e3f8120014.setContent(html_ed37d6b31d02a4b868c7e6cb0f308634);
marker_88104d9a5a019be62b301830723035cd.bindPopup(popup_fef906add939b7e1cc0f89e3f8120014)
;
marker_88104d9a5a019be62b301830723035cd.bindTooltip(
`<div>
60005
</div>`,
{
"sticky": true,
}
);
marker_88104d9a5a019be62b301830723035cd.setIcon(div_icon_bf2d2b177eecab1a223ef7a94c0ef6be);
var marker_d0e0c51809a30a6b1d5eb21e7d1dec00 = L.marker(
[42.005440874, -88.01321492],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_3f23446b6ca9870ba29c17e0ac130fbf = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60007\u003c/div\u003e",
"className": "empty",
});
marker_d0e0c51809a30a6b1d5eb21e7d1dec00.setIcon(div_icon_3f23446b6ca9870ba29c17e0ac130fbf);
var popup_4dc4e4da47b21905b3a1410e1d8114fd = L.popup({
"maxWidth": "100%",
});
var html_bb8a22cc0d27cd754d52bb667a33560e = $(`<div id="html_bb8a22cc0d27cd754d52bb667a33560e" style="width: 100.0%; height: 100.0%;">Zip: 60007<br>Count: 1</div>`)[0];
popup_4dc4e4da47b21905b3a1410e1d8114fd.setContent(html_bb8a22cc0d27cd754d52bb667a33560e);
marker_d0e0c51809a30a6b1d5eb21e7d1dec00.bindPopup(popup_4dc4e4da47b21905b3a1410e1d8114fd)
;
marker_d0e0c51809a30a6b1d5eb21e7d1dec00.bindTooltip(
`<div>
60007
</div>`,
{
"sticky": true,
}
);
marker_d0e0c51809a30a6b1d5eb21e7d1dec00.setIcon(div_icon_3f23446b6ca9870ba29c17e0ac130fbf);
var marker_68a6a073d661f581dbb0fd1b4d083f12 = L.marker(
[42.072481204, -88.02244039],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_4b492f797aad8dad3705ca82f7fcb109 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60008\u003c/div\u003e",
"className": "empty",
});
marker_68a6a073d661f581dbb0fd1b4d083f12.setIcon(div_icon_4b492f797aad8dad3705ca82f7fcb109);
var popup_256b062f1c9d06374d6f9c601a981f21 = L.popup({
"maxWidth": "100%",
});
var html_a7d26a09dc8085cf0247c04f3a601b12 = $(`<div id="html_a7d26a09dc8085cf0247c04f3a601b12" style="width: 100.0%; height: 100.0%;">Zip: 60008<br>Count: 1</div>`)[0];
popup_256b062f1c9d06374d6f9c601a981f21.setContent(html_a7d26a09dc8085cf0247c04f3a601b12);
marker_68a6a073d661f581dbb0fd1b4d083f12.bindPopup(popup_256b062f1c9d06374d6f9c601a981f21)
;
marker_68a6a073d661f581dbb0fd1b4d083f12.bindTooltip(
`<div>
60008
</div>`,
{
"sticky": true,
}
);
marker_68a6a073d661f581dbb0fd1b4d083f12.setIcon(div_icon_4b492f797aad8dad3705ca82f7fcb109);
var marker_62255ce3f7e40277e1a1ca8bd3ab2446 = L.marker(
[42.046328557, -87.88675142],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_6956449c164d7c43e8270b9239b63dd8 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60016\u003c/div\u003e",
"className": "empty",
});
marker_62255ce3f7e40277e1a1ca8bd3ab2446.setIcon(div_icon_6956449c164d7c43e8270b9239b63dd8);
var popup_d0dd8c7a7d52a6995bc0079f11d9ce3e = L.popup({
"maxWidth": "100%",
});
var html_70c814c0c77980c8c75e4165ea139a1e = $(`<div id="html_70c814c0c77980c8c75e4165ea139a1e" style="width: 100.0%; height: 100.0%;">Zip: 60016<br>Count: 1</div>`)[0];
popup_d0dd8c7a7d52a6995bc0079f11d9ce3e.setContent(html_70c814c0c77980c8c75e4165ea139a1e);
marker_62255ce3f7e40277e1a1ca8bd3ab2446.bindPopup(popup_d0dd8c7a7d52a6995bc0079f11d9ce3e)
;
marker_62255ce3f7e40277e1a1ca8bd3ab2446.bindTooltip(
`<div>
60016
</div>`,
{
"sticky": true,
}
);
marker_62255ce3f7e40277e1a1ca8bd3ab2446.setIcon(div_icon_6956449c164d7c43e8270b9239b63dd8);
var marker_5e1a3f3443489d25eca36c361043cee6 = L.marker(
[42.014128151, -87.89779845],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_b7dd38ee5d06c5654855d14cd2ab2342 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60018\u003c/div\u003e",
"className": "empty",
});
marker_5e1a3f3443489d25eca36c361043cee6.setIcon(div_icon_b7dd38ee5d06c5654855d14cd2ab2342);
var popup_d6c2cb4b384b364d82fc9a951ca2ceba = L.popup({
"maxWidth": "100%",
});
var html_fbe5690889c721c671afc4f3f0399438 = $(`<div id="html_fbe5690889c721c671afc4f3f0399438" style="width: 100.0%; height: 100.0%;">Zip: 60018<br>Count: 23</div>`)[0];
popup_d6c2cb4b384b364d82fc9a951ca2ceba.setContent(html_fbe5690889c721c671afc4f3f0399438);
marker_5e1a3f3443489d25eca36c361043cee6.bindPopup(popup_d6c2cb4b384b364d82fc9a951ca2ceba)
;
marker_5e1a3f3443489d25eca36c361043cee6.bindTooltip(
`<div>
60018
</div>`,
{
"sticky": true,
}
);
marker_5e1a3f3443489d25eca36c361043cee6.setIcon(div_icon_b7dd38ee5d06c5654855d14cd2ab2342);
var marker_0cd68b6d50cea1e34531719e1a782965 = L.marker(
[42.072961243, -87.81761952],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_df842b51b9cdf632aff0a4d2be1c9157 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60025\u003c/div\u003e",
"className": "empty",
});
marker_0cd68b6d50cea1e34531719e1a782965.setIcon(div_icon_df842b51b9cdf632aff0a4d2be1c9157);
var popup_4f1826b957117977a9edaf1589618b37 = L.popup({
"maxWidth": "100%",
});
var html_60280d578e5d41b718f220b11b5e69d0 = $(`<div id="html_60280d578e5d41b718f220b11b5e69d0" style="width: 100.0%; height: 100.0%;">Zip: 60025<br>Count: 5</div>`)[0];
popup_4f1826b957117977a9edaf1589618b37.setContent(html_60280d578e5d41b718f220b11b5e69d0);
marker_0cd68b6d50cea1e34531719e1a782965.bindPopup(popup_4f1826b957117977a9edaf1589618b37)
;
marker_0cd68b6d50cea1e34531719e1a782965.bindTooltip(
`<div>
60025
</div>`,
{
"sticky": true,
}
);
marker_0cd68b6d50cea1e34531719e1a782965.setIcon(div_icon_df842b51b9cdf632aff0a4d2be1c9157);
var marker_45f7567d837f19ea5688f2914597e376 = L.marker(
[42.091225679, -87.83767203],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_2395169c653b1021c23e86a692674984 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60026\u003c/div\u003e",
"className": "empty",
});
marker_45f7567d837f19ea5688f2914597e376.setIcon(div_icon_2395169c653b1021c23e86a692674984);
var popup_ba5b2ab3974e686801c6b3b79fb15437 = L.popup({
"maxWidth": "100%",
});
var html_02e0e911d83c460196887cbdd2f11d67 = $(`<div id="html_02e0e911d83c460196887cbdd2f11d67" style="width: 100.0%; height: 100.0%;">Zip: 60026<br>Count: 3</div>`)[0];
popup_ba5b2ab3974e686801c6b3b79fb15437.setContent(html_02e0e911d83c460196887cbdd2f11d67);
marker_45f7567d837f19ea5688f2914597e376.bindPopup(popup_ba5b2ab3974e686801c6b3b79fb15437)
;
marker_45f7567d837f19ea5688f2914597e376.bindTooltip(
`<div>
60026
</div>`,
{
"sticky": true,
}
);
marker_45f7567d837f19ea5688f2914597e376.setIcon(div_icon_2395169c653b1021c23e86a692674984);
var marker_91adcbc3f679db4502136531068a18ae = L.marker(
[42.205331861, -87.81345198],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_b18dc059aa3f3383f04959f2b61c3f60 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60040\u003c/div\u003e",
"className": "empty",
});
marker_91adcbc3f679db4502136531068a18ae.setIcon(div_icon_b18dc059aa3f3383f04959f2b61c3f60);
var popup_5e2b8ea7b23893f02b12a17bf6a1b526 = L.popup({
"maxWidth": "100%",
});
var html_43bd288724610acb532e839377e09602 = $(`<div id="html_43bd288724610acb532e839377e09602" style="width: 100.0%; height: 100.0%;">Zip: 60040<br>Count: 1</div>`)[0];
popup_5e2b8ea7b23893f02b12a17bf6a1b526.setContent(html_43bd288724610acb532e839377e09602);
marker_91adcbc3f679db4502136531068a18ae.bindPopup(popup_5e2b8ea7b23893f02b12a17bf6a1b526)
;
marker_91adcbc3f679db4502136531068a18ae.bindTooltip(
`<div>
60040
</div>`,
{
"sticky": true,
}
);
marker_91adcbc3f679db4502136531068a18ae.setIcon(div_icon_b18dc059aa3f3383f04959f2b61c3f60);
var marker_4d28a8d6cd81d2b67a3e05413a1467b8 = L.marker(
[42.088602112, -87.71642381],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_92b2589b1fd2625a05a48d0059b344cd = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60043\u003c/div\u003e",
"className": "empty",
});
marker_4d28a8d6cd81d2b67a3e05413a1467b8.setIcon(div_icon_92b2589b1fd2625a05a48d0059b344cd);
var popup_b3cd68532fb4c4a6c3ec7a47aff10155 = L.popup({
"maxWidth": "100%",
});
var html_c9dda080c43a1394e9e6e3b4c6fc0749 = $(`<div id="html_c9dda080c43a1394e9e6e3b4c6fc0749" style="width: 100.0%; height: 100.0%;">Zip: 60043<br>Count: 2</div>`)[0];
popup_b3cd68532fb4c4a6c3ec7a47aff10155.setContent(html_c9dda080c43a1394e9e6e3b4c6fc0749);
marker_4d28a8d6cd81d2b67a3e05413a1467b8.bindPopup(popup_b3cd68532fb4c4a6c3ec7a47aff10155)
;
marker_4d28a8d6cd81d2b67a3e05413a1467b8.bindTooltip(
`<div>
60043
</div>`,
{
"sticky": true,
}
);
marker_4d28a8d6cd81d2b67a3e05413a1467b8.setIcon(div_icon_92b2589b1fd2625a05a48d0059b344cd);
var marker_20f82efd6d86f03887167c3428092f46 = L.marker(
[42.286589543, -87.86560363],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_0c713d23c342ed123cf3d7fd5f93dfe5 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60044\u003c/div\u003e",
"className": "empty",
});
marker_20f82efd6d86f03887167c3428092f46.setIcon(div_icon_0c713d23c342ed123cf3d7fd5f93dfe5);
var popup_35ae62561bcc3be68bd8722d020fd46a = L.popup({
"maxWidth": "100%",
});
var html_9aeffacb0ab6a43ffe22ade9241d8c81 = $(`<div id="html_9aeffacb0ab6a43ffe22ade9241d8c81" style="width: 100.0%; height: 100.0%;">Zip: 60044<br>Count: 1</div>`)[0];
popup_35ae62561bcc3be68bd8722d020fd46a.setContent(html_9aeffacb0ab6a43ffe22ade9241d8c81);
marker_20f82efd6d86f03887167c3428092f46.bindPopup(popup_35ae62561bcc3be68bd8722d020fd46a)
;
marker_20f82efd6d86f03887167c3428092f46.bindTooltip(
`<div>
60044
</div>`,
{
"sticky": true,
}
);
marker_20f82efd6d86f03887167c3428092f46.setIcon(div_icon_0c713d23c342ed123cf3d7fd5f93dfe5);
var marker_af444a51f8bb25defa8fa7ad6dc65a4c = L.marker(
[42.238613525, -87.85746062],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_88ddf9472918a0b1d62a57840fd72bcd = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60045\u003c/div\u003e",
"className": "empty",
});
marker_af444a51f8bb25defa8fa7ad6dc65a4c.setIcon(div_icon_88ddf9472918a0b1d62a57840fd72bcd);
var popup_977852538ce8d339df4264a5265ea638 = L.popup({
"maxWidth": "100%",
});
var html_7009043beff87fbed060f22329ad1f6d = $(`<div id="html_7009043beff87fbed060f22329ad1f6d" style="width: 100.0%; height: 100.0%;">Zip: 60045<br>Count: 10</div>`)[0];
popup_977852538ce8d339df4264a5265ea638.setContent(html_7009043beff87fbed060f22329ad1f6d);
marker_af444a51f8bb25defa8fa7ad6dc65a4c.bindPopup(popup_977852538ce8d339df4264a5265ea638)
;
marker_af444a51f8bb25defa8fa7ad6dc65a4c.bindTooltip(
`<div>
60045
</div>`,
{
"sticky": true,
}
);
marker_af444a51f8bb25defa8fa7ad6dc65a4c.setIcon(div_icon_88ddf9472918a0b1d62a57840fd72bcd);
var marker_c24ab91fcc7db25747de719de7acbe2c = L.marker(
[42.200496415, -88.06410968],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_da9278e26d8471994e89d086aaeafb03 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60047\u003c/div\u003e",
"className": "empty",
});
marker_c24ab91fcc7db25747de719de7acbe2c.setIcon(div_icon_da9278e26d8471994e89d086aaeafb03);
var popup_634ede05497a6c49251d16fa2bf0a8a2 = L.popup({
"maxWidth": "100%",
});
var html_c0044e8a79841afb0eb71bb8e2779bf7 = $(`<div id="html_c0044e8a79841afb0eb71bb8e2779bf7" style="width: 100.0%; height: 100.0%;">Zip: 60047<br>Count: 1</div>`)[0];
popup_634ede05497a6c49251d16fa2bf0a8a2.setContent(html_c0044e8a79841afb0eb71bb8e2779bf7);
marker_c24ab91fcc7db25747de719de7acbe2c.bindPopup(popup_634ede05497a6c49251d16fa2bf0a8a2)
;
marker_c24ab91fcc7db25747de719de7acbe2c.bindTooltip(
`<div>
60047
</div>`,
{
"sticky": true,
}
);
marker_c24ab91fcc7db25747de719de7acbe2c.setIcon(div_icon_da9278e26d8471994e89d086aaeafb03);
var marker_c6b5c9d11219cc787b22860c2ceef492 = L.marker(
[42.041712908, -87.78929815],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_8feb2015435be1c3d99ea21503f5bd1b = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60053\u003c/div\u003e",
"className": "empty",
});
marker_c6b5c9d11219cc787b22860c2ceef492.setIcon(div_icon_8feb2015435be1c3d99ea21503f5bd1b);
var popup_dd425d9835192768d3eff1ee2edc20f2 = L.popup({
"maxWidth": "100%",
});
var html_e90c04c0efbeb845d24fc750ffd7f2b0 = $(`<div id="html_e90c04c0efbeb845d24fc750ffd7f2b0" style="width: 100.0%; height: 100.0%;">Zip: 60053<br>Count: 9</div>`)[0];
popup_dd425d9835192768d3eff1ee2edc20f2.setContent(html_e90c04c0efbeb845d24fc750ffd7f2b0);
marker_c6b5c9d11219cc787b22860c2ceef492.bindPopup(popup_dd425d9835192768d3eff1ee2edc20f2)
;
marker_c6b5c9d11219cc787b22860c2ceef492.bindTooltip(
`<div>
60053
</div>`,
{
"sticky": true,
}
);
marker_c6b5c9d11219cc787b22860c2ceef492.setIcon(div_icon_8feb2015435be1c3d99ea21503f5bd1b);
var marker_5658607cd5cabef931f55f35aef2a7a6 = L.marker(
[42.061321793, -87.93919082],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_93aefa9ae98f99cc8afa3c7dbf5c7c2a = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60056\u003c/div\u003e",
"className": "empty",
});
marker_5658607cd5cabef931f55f35aef2a7a6.setIcon(div_icon_93aefa9ae98f99cc8afa3c7dbf5c7c2a);
var popup_12f77c723f46ec3f8a7193ccd537a762 = L.popup({
"maxWidth": "100%",
});
var html_064f7f20dc79c2c7ee29ff6bd31db738 = $(`<div id="html_064f7f20dc79c2c7ee29ff6bd31db738" style="width: 100.0%; height: 100.0%;">Zip: 60056<br>Count: 1</div>`)[0];
popup_12f77c723f46ec3f8a7193ccd537a762.setContent(html_064f7f20dc79c2c7ee29ff6bd31db738);
marker_5658607cd5cabef931f55f35aef2a7a6.bindPopup(popup_12f77c723f46ec3f8a7193ccd537a762)
;
marker_5658607cd5cabef931f55f35aef2a7a6.bindTooltip(
`<div>
60056
</div>`,
{
"sticky": true,
}
);
marker_5658607cd5cabef931f55f35aef2a7a6.setIcon(div_icon_93aefa9ae98f99cc8afa3c7dbf5c7c2a);
var marker_2f8f9995ed07a454230e2077051d1d9a = L.marker(
[42.12498608, -87.84348057],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_88bd4770c8b12d0e1a8420f44aa6acf3 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60062\u003c/div\u003e",
"className": "empty",
});
marker_2f8f9995ed07a454230e2077051d1d9a.setIcon(div_icon_88bd4770c8b12d0e1a8420f44aa6acf3);
var popup_d7bbbce45c0e36f7e046a3213945b932 = L.popup({
"maxWidth": "100%",
});
var html_4c7e1c84732270ad444a53e91fd001f9 = $(`<div id="html_4c7e1c84732270ad444a53e91fd001f9" style="width: 100.0%; height: 100.0%;">Zip: 60062<br>Count: 7</div>`)[0];
popup_d7bbbce45c0e36f7e046a3213945b932.setContent(html_4c7e1c84732270ad444a53e91fd001f9);
marker_2f8f9995ed07a454230e2077051d1d9a.bindPopup(popup_d7bbbce45c0e36f7e046a3213945b932)
;
marker_2f8f9995ed07a454230e2077051d1d9a.bindTooltip(
`<div>
60062
</div>`,
{
"sticky": true,
}
);
marker_2f8f9995ed07a454230e2077051d1d9a.setIcon(div_icon_88bd4770c8b12d0e1a8420f44aa6acf3);
var marker_4e1844924935fd7746b9dd1fbc5b1836 = L.marker(
[42.012235089, -87.84198696],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_5845497ae1d34b447a2edcaeb48c013a = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60068\u003c/div\u003e",
"className": "empty",
});
marker_4e1844924935fd7746b9dd1fbc5b1836.setIcon(div_icon_5845497ae1d34b447a2edcaeb48c013a);
var popup_04f7547e8a71af06778cdb9735b1db73 = L.popup({
"maxWidth": "100%",
});
var html_b68883ba60495525b47b23bd345545c8 = $(`<div id="html_b68883ba60495525b47b23bd345545c8" style="width: 100.0%; height: 100.0%;">Zip: 60068<br>Count: 6</div>`)[0];
popup_04f7547e8a71af06778cdb9735b1db73.setContent(html_b68883ba60495525b47b23bd345545c8);
marker_4e1844924935fd7746b9dd1fbc5b1836.bindPopup(popup_04f7547e8a71af06778cdb9735b1db73)
;
marker_4e1844924935fd7746b9dd1fbc5b1836.bindTooltip(
`<div>
60068
</div>`,
{
"sticky": true,
}
);
marker_4e1844924935fd7746b9dd1fbc5b1836.setIcon(div_icon_5845497ae1d34b447a2edcaeb48c013a);
var marker_269ebf27b204b4167c2192277d3f1257 = L.marker(
[42.190253401, -87.92196801],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_ff2cfe61f3783a23177ec2f2839a4526 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60069\u003c/div\u003e",
"className": "empty",
});
marker_269ebf27b204b4167c2192277d3f1257.setIcon(div_icon_ff2cfe61f3783a23177ec2f2839a4526);
var popup_3b77c7f67d913e65b89e8936521550f3 = L.popup({
"maxWidth": "100%",
});
var html_f5a1d02ee95b8dd1db833aaa74736669 = $(`<div id="html_f5a1d02ee95b8dd1db833aaa74736669" style="width: 100.0%; height: 100.0%;">Zip: 60069<br>Count: 2</div>`)[0];
popup_3b77c7f67d913e65b89e8936521550f3.setContent(html_f5a1d02ee95b8dd1db833aaa74736669);
marker_269ebf27b204b4167c2192277d3f1257.bindPopup(popup_3b77c7f67d913e65b89e8936521550f3)
;
marker_269ebf27b204b4167c2192277d3f1257.bindTooltip(
`<div>
60069
</div>`,
{
"sticky": true,
}
);
marker_269ebf27b204b4167c2192277d3f1257.setIcon(div_icon_ff2cfe61f3783a23177ec2f2839a4526);
var marker_501850a0b17596c07e0b919cb0677792 = L.marker(
[42.036065201, -87.73371746],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_b30504a82f7a157b34123ab50adf7924 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60076\u003c/div\u003e",
"className": "empty",
});
marker_501850a0b17596c07e0b919cb0677792.setIcon(div_icon_b30504a82f7a157b34123ab50adf7924);
var popup_cd8dddb87da584bf42dc93e1de1424d9 = L.popup({
"maxWidth": "100%",
});
var html_4d1c4577ec3c356cfa64be61dd991044 = $(`<div id="html_4d1c4577ec3c356cfa64be61dd991044" style="width: 100.0%; height: 100.0%;">Zip: 60076<br>Count: 30</div>`)[0];
popup_cd8dddb87da584bf42dc93e1de1424d9.setContent(html_4d1c4577ec3c356cfa64be61dd991044);
marker_501850a0b17596c07e0b919cb0677792.bindPopup(popup_cd8dddb87da584bf42dc93e1de1424d9)
;
marker_501850a0b17596c07e0b919cb0677792.bindTooltip(
`<div>
60076
</div>`,
{
"sticky": true,
}
);
marker_501850a0b17596c07e0b919cb0677792.setIcon(div_icon_b30504a82f7a157b34123ab50adf7924);
var marker_bc4c77842e948abdf91bacb6a6bd6ac5 = L.marker(
[42.035876401, -87.75397538],
{
}
).addTo(map_d9fe789f3fc05e473549f7287cbc934b);
var div_icon_ba6255268a2fda099fc187d451618fd0 = L.divIcon({
"html": "\u003cdiv style=\"font-family: courier new; color: blue\"\u003e60077\u003c/div\u003e",
"className": "empty",
});
marker_bc4c77842e948abdf91bacb6a6bd6ac5.setIcon(div_icon_ba6255268a2fda099fc187d451618fd0);
var popup_20a89588014ce80779fcc1b2e6d54a6e = L.popup({
"maxWidth": "100%",
});