This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_conclusions_combinedproduct__bnw.html
5940 lines (2835 loc) · 318 KB
/
map_conclusions_combinedproduct__bnw.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_1de58e46512e49b492650b113844da3b {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_1de58e46512e49b492650b113844da3b" ></div>
</body>
<script>
var map_1de58e46512e49b492650b113844da3b = L.map(
"map_1de58e46512e49b492650b113844da3b",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_179509eea7184df681d18a301ca6fa9e = 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_1de58e46512e49b492650b113844da3b);
var tile_layer_d2a2ddd7d2fa44a4a9b83019ec73ff7c = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_1de58e46512e49b492650b113844da3b);
var circle_marker_6706729b382d4bfd9f81049cd1f1deec = L.circleMarker(
[43.7532586, -79.3296565],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_31e8f8e2d09d4dfc8357d547128fc87f = L.popup({"maxWidth": "100%"});
var html_a857d0fa2c534720afb471ef2b0ce124 = $(`<div id="html_a857d0fa2c534720afb471ef2b0ce124" style="width: 100.0%; height: 100.0%;">Parkwoods Lack product: 0.0</div>`)[0];
popup_31e8f8e2d09d4dfc8357d547128fc87f.setContent(html_a857d0fa2c534720afb471ef2b0ce124);
circle_marker_6706729b382d4bfd9f81049cd1f1deec.bindPopup(popup_31e8f8e2d09d4dfc8357d547128fc87f)
;
var circle_marker_60d2aeeb86ab400abc2babbac3f4c7a3 = L.circleMarker(
[43.7532586, -79.3296565],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_418b94a8061743c4a702bcd6b9fa7313 = L.popup({"maxWidth": "100%"});
var html_5a7450ca7b6d42e39b73b208461d82d9 = $(`<div id="html_5a7450ca7b6d42e39b73b208461d82d9" style="width: 100.0%; height: 100.0%;">Parkwoods Cluster lack: 0.0</div>`)[0];
popup_418b94a8061743c4a702bcd6b9fa7313.setContent(html_5a7450ca7b6d42e39b73b208461d82d9);
circle_marker_60d2aeeb86ab400abc2babbac3f4c7a3.bindPopup(popup_418b94a8061743c4a702bcd6b9fa7313)
;
var circle_marker_38025304b1aa4a06b66df7cec6a12a05 = L.circleMarker(
[43.7532586, -79.3296565],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_d27b944687c54f6e8fd3eb9e0caaee4e = L.popup({"maxWidth": "100%"});
var html_fa17b0eabe4d40e388a77f6a96b340d2 = $(`<div id="html_fa17b0eabe4d40e388a77f6a96b340d2" style="width: 100.0%; height: 100.0%;">Parkwoods Coffee lack: 0.0</div>`)[0];
popup_d27b944687c54f6e8fd3eb9e0caaee4e.setContent(html_fa17b0eabe4d40e388a77f6a96b340d2);
circle_marker_38025304b1aa4a06b66df7cec6a12a05.bindPopup(popup_d27b944687c54f6e8fd3eb9e0caaee4e)
;
var circle_marker_42af0f4d2b434af8b6278a7841341d61 = L.circleMarker(
[43.725882299999995, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_e69d168492934ed89d21c6f6a3a1ccc0 = L.popup({"maxWidth": "100%"});
var html_7424a3c27b5b4940a44d69f38d10c378 = $(`<div id="html_7424a3c27b5b4940a44d69f38d10c378" style="width: 100.0%; height: 100.0%;">Victoria Village Lack product: 0.0</div>`)[0];
popup_e69d168492934ed89d21c6f6a3a1ccc0.setContent(html_7424a3c27b5b4940a44d69f38d10c378);
circle_marker_42af0f4d2b434af8b6278a7841341d61.bindPopup(popup_e69d168492934ed89d21c6f6a3a1ccc0)
;
var circle_marker_90e67e2bc8784f399d0278cdba1336f9 = L.circleMarker(
[43.725882299999995, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_0040036d42b74ccb932249fd85ea7b74 = L.popup({"maxWidth": "100%"});
var html_dd397d99cb044a7f84a44c965b0877a3 = $(`<div id="html_dd397d99cb044a7f84a44c965b0877a3" style="width: 100.0%; height: 100.0%;">Victoria Village Cluster lack: 0.0</div>`)[0];
popup_0040036d42b74ccb932249fd85ea7b74.setContent(html_dd397d99cb044a7f84a44c965b0877a3);
circle_marker_90e67e2bc8784f399d0278cdba1336f9.bindPopup(popup_0040036d42b74ccb932249fd85ea7b74)
;
var circle_marker_5880a60024bc48f6adf74719247c7b1d = L.circleMarker(
[43.725882299999995, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_60e8d5a080a746e3840c37f53d8c7ead = L.popup({"maxWidth": "100%"});
var html_1a07dba6bbca4841aa6070528ad50682 = $(`<div id="html_1a07dba6bbca4841aa6070528ad50682" style="width: 100.0%; height: 100.0%;">Victoria Village Coffee lack: 0.0</div>`)[0];
popup_60e8d5a080a746e3840c37f53d8c7ead.setContent(html_1a07dba6bbca4841aa6070528ad50682);
circle_marker_5880a60024bc48f6adf74719247c7b1d.bindPopup(popup_60e8d5a080a746e3840c37f53d8c7ead)
;
var circle_marker_4db73c59c4ee4fc69f70533bcf28b192 = L.circleMarker(
[43.6542599, -79.3606359],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_195e723d39404ec6b770252155542dc0 = L.popup({"maxWidth": "100%"});
var html_9e56a0ea6e6f4472955ecaaca878f46a = $(`<div id="html_9e56a0ea6e6f4472955ecaaca878f46a" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Lack product: 0.0</div>`)[0];
popup_195e723d39404ec6b770252155542dc0.setContent(html_9e56a0ea6e6f4472955ecaaca878f46a);
circle_marker_4db73c59c4ee4fc69f70533bcf28b192.bindPopup(popup_195e723d39404ec6b770252155542dc0)
;
var circle_marker_c3d0a58095eb43e49db5df9b032675cd = L.circleMarker(
[43.6542599, -79.3606359],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_964653e0a57749cf975c7ca89e6c1632 = L.popup({"maxWidth": "100%"});
var html_76a852fdbbe44facb99f15f671db2459 = $(`<div id="html_76a852fdbbe44facb99f15f671db2459" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Cluster lack: 0.0</div>`)[0];
popup_964653e0a57749cf975c7ca89e6c1632.setContent(html_76a852fdbbe44facb99f15f671db2459);
circle_marker_c3d0a58095eb43e49db5df9b032675cd.bindPopup(popup_964653e0a57749cf975c7ca89e6c1632)
;
var circle_marker_50db247e0aa741f6af6729f01191fbb2 = L.circleMarker(
[43.6542599, -79.3606359],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_b3455d5dbced42489185bd50ff0defdf = L.popup({"maxWidth": "100%"});
var html_949f0177248541afbac2a778cf631d81 = $(`<div id="html_949f0177248541afbac2a778cf631d81" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Coffee lack: 0.0</div>`)[0];
popup_b3455d5dbced42489185bd50ff0defdf.setContent(html_949f0177248541afbac2a778cf631d81);
circle_marker_50db247e0aa741f6af6729f01191fbb2.bindPopup(popup_b3455d5dbced42489185bd50ff0defdf)
;
var circle_marker_d0da019160574075b40fc1417ac43887 = L.circleMarker(
[43.718517999999996, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_304bce1e88824ade91f22ef36a3e1c12 = L.popup({"maxWidth": "100%"});
var html_88c1cddf8c4442218848be4321c383f1 = $(`<div id="html_88c1cddf8c4442218848be4321c383f1" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Lack product: 0.0</div>`)[0];
popup_304bce1e88824ade91f22ef36a3e1c12.setContent(html_88c1cddf8c4442218848be4321c383f1);
circle_marker_d0da019160574075b40fc1417ac43887.bindPopup(popup_304bce1e88824ade91f22ef36a3e1c12)
;
var circle_marker_d9def9b7a73e4cb6a74f016aa4f56a67 = L.circleMarker(
[43.718517999999996, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.022486964973657, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_b84530b637b94ae895d5f7f163030a08 = L.popup({"maxWidth": "100%"});
var html_8024561873ca4233ac87bcfb17a1a84d = $(`<div id="html_8024561873ca4233ac87bcfb17a1a84d" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Cluster lack: 2.5</div>`)[0];
popup_b84530b637b94ae895d5f7f163030a08.setContent(html_8024561873ca4233ac87bcfb17a1a84d);
circle_marker_d9def9b7a73e4cb6a74f016aa4f56a67.bindPopup(popup_b84530b637b94ae895d5f7f163030a08)
;
var circle_marker_93a59ec6b72d43c4a940228979629f79 = L.circleMarker(
[43.718517999999996, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_6e4cf70631694d0d918ec99debe8c8d7 = L.popup({"maxWidth": "100%"});
var html_ce159b3ccc8d48ae98d8a1ea4cb90d54 = $(`<div id="html_ce159b3ccc8d48ae98d8a1ea4cb90d54" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Coffee lack: 0.0</div>`)[0];
popup_6e4cf70631694d0d918ec99debe8c8d7.setContent(html_ce159b3ccc8d48ae98d8a1ea4cb90d54);
circle_marker_93a59ec6b72d43c4a940228979629f79.bindPopup(popup_6e4cf70631694d0d918ec99debe8c8d7)
;
var circle_marker_003d21ad7e3541d098858faee928798c = L.circleMarker(
[43.6623015, -79.3894938],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_032f9bba840f4988b79697460f61f22e = L.popup({"maxWidth": "100%"});
var html_a8e23b346064411daaae08e790143f8f = $(`<div id="html_a8e23b346064411daaae08e790143f8f" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Lack product: 0.0</div>`)[0];
popup_032f9bba840f4988b79697460f61f22e.setContent(html_a8e23b346064411daaae08e790143f8f);
circle_marker_003d21ad7e3541d098858faee928798c.bindPopup(popup_032f9bba840f4988b79697460f61f22e)
;
var circle_marker_aa3aa90fb9614cc89325a53c47b8a5f3 = L.circleMarker(
[43.6623015, -79.3894938],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_7bf7f7242c8d42359a6cd9107ecc2c9c = L.popup({"maxWidth": "100%"});
var html_939453077d1844e186462a804bffb9f6 = $(`<div id="html_939453077d1844e186462a804bffb9f6" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Cluster lack: 0.0</div>`)[0];
popup_7bf7f7242c8d42359a6cd9107ecc2c9c.setContent(html_939453077d1844e186462a804bffb9f6);
circle_marker_aa3aa90fb9614cc89325a53c47b8a5f3.bindPopup(popup_7bf7f7242c8d42359a6cd9107ecc2c9c)
;
var circle_marker_c9f72fd92dfa45cb97b5a3cb00e60b48 = L.circleMarker(
[43.6623015, -79.3894938],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_7586eba771f3473a815075d77a988e4d = L.popup({"maxWidth": "100%"});
var html_402b64b489a44d909402efecfc4f0335 = $(`<div id="html_402b64b489a44d909402efecfc4f0335" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Coffee lack: 0.0</div>`)[0];
popup_7586eba771f3473a815075d77a988e4d.setContent(html_402b64b489a44d909402efecfc4f0335);
circle_marker_c9f72fd92dfa45cb97b5a3cb00e60b48.bindPopup(popup_7586eba771f3473a815075d77a988e4d)
;
var circle_marker_e669f8172b8c4ef29f93b667fdb3c49a = L.circleMarker(
[43.6678556, -79.53224240000002],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_1dee832668114d8680d374dbf735455b = L.popup({"maxWidth": "100%"});
var html_6adfcb97d92c46d2a667b7e2dc4981f5 = $(`<div id="html_6adfcb97d92c46d2a667b7e2dc4981f5" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Lack product: 0.0</div>`)[0];
popup_1dee832668114d8680d374dbf735455b.setContent(html_6adfcb97d92c46d2a667b7e2dc4981f5);
circle_marker_e669f8172b8c4ef29f93b667fdb3c49a.bindPopup(popup_1dee832668114d8680d374dbf735455b)
;
var circle_marker_671377604f994871aa1e4e94f33fcd51 = L.circleMarker(
[43.6678556, -79.53224240000002],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_a4c0e597449d4fa4abc93a023115e7eb = L.popup({"maxWidth": "100%"});
var html_3cd24044d0ef43acbfccc0a72e019712 = $(`<div id="html_3cd24044d0ef43acbfccc0a72e019712" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Cluster lack: 0.0</div>`)[0];
popup_a4c0e597449d4fa4abc93a023115e7eb.setContent(html_3cd24044d0ef43acbfccc0a72e019712);
circle_marker_671377604f994871aa1e4e94f33fcd51.bindPopup(popup_a4c0e597449d4fa4abc93a023115e7eb)
;
var circle_marker_9d87a45f8bec44929cf3e83bac08eff4 = L.circleMarker(
[43.6678556, -79.53224240000002],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_d48b2a8b697b4f529fd9ccc3445f30ca = L.popup({"maxWidth": "100%"});
var html_cca022fe58dc4382b73903dd4c0b8a9c = $(`<div id="html_cca022fe58dc4382b73903dd4c0b8a9c" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Coffee lack: 0.0</div>`)[0];
popup_d48b2a8b697b4f529fd9ccc3445f30ca.setContent(html_cca022fe58dc4382b73903dd4c0b8a9c);
circle_marker_9d87a45f8bec44929cf3e83bac08eff4.bindPopup(popup_d48b2a8b697b4f529fd9ccc3445f30ca)
;
var circle_marker_0d17ae684d4e4ccaa4d5758e4fc0bb1d = L.circleMarker(
[43.806686299999996, -79.19435340000001],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_d4b7128b4a1140cfa85877a83bff49fc = L.popup({"maxWidth": "100%"});
var html_bfdfe1b921794f999456666d54647c08 = $(`<div id="html_bfdfe1b921794f999456666d54647c08" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Lack product: 0.0</div>`)[0];
popup_d4b7128b4a1140cfa85877a83bff49fc.setContent(html_bfdfe1b921794f999456666d54647c08);
circle_marker_0d17ae684d4e4ccaa4d5758e4fc0bb1d.bindPopup(popup_d4b7128b4a1140cfa85877a83bff49fc)
;
var circle_marker_4fc7fc2cbb1349d287a0ede0022dc6b7 = L.circleMarker(
[43.806686299999996, -79.19435340000001],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_cad35c390dff49eabbb21f65bce65462 = L.popup({"maxWidth": "100%"});
var html_cd6abd5c191b4c1e90df9342c5e069dc = $(`<div id="html_cd6abd5c191b4c1e90df9342c5e069dc" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Cluster lack: 0.0</div>`)[0];
popup_cad35c390dff49eabbb21f65bce65462.setContent(html_cd6abd5c191b4c1e90df9342c5e069dc);
circle_marker_4fc7fc2cbb1349d287a0ede0022dc6b7.bindPopup(popup_cad35c390dff49eabbb21f65bce65462)
;
var circle_marker_0fa2942d15b64999899458109e25930b = L.circleMarker(
[43.806686299999996, -79.19435340000001],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_3ee15bb100bf4b0ba742a9d60ad4da2f = L.popup({"maxWidth": "100%"});
var html_ed2c2e54f277466f83625e82a9e8d52e = $(`<div id="html_ed2c2e54f277466f83625e82a9e8d52e" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Coffee lack: 0.0</div>`)[0];
popup_3ee15bb100bf4b0ba742a9d60ad4da2f.setContent(html_ed2c2e54f277466f83625e82a9e8d52e);
circle_marker_0fa2942d15b64999899458109e25930b.bindPopup(popup_3ee15bb100bf4b0ba742a9d60ad4da2f)
;
var circle_marker_6f9b3d4ccb8845c6a4a3189050c0e5be = L.circleMarker(
[43.745905799999996, -79.352188],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_71608118e2814003805d5e47a4131953 = L.popup({"maxWidth": "100%"});
var html_34d8abdc7f184df2ac09074c079a8341 = $(`<div id="html_34d8abdc7f184df2ac09074c079a8341" style="width: 100.0%; height: 100.0%;">Don Mills Lack product: 0.0</div>`)[0];
popup_71608118e2814003805d5e47a4131953.setContent(html_34d8abdc7f184df2ac09074c079a8341);
circle_marker_6f9b3d4ccb8845c6a4a3189050c0e5be.bindPopup(popup_71608118e2814003805d5e47a4131953)
;
var circle_marker_bf8f2fbdee3448e2b55c4283490dd22b = L.circleMarker(
[43.745905799999996, -79.352188],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.013453472563223, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_49a44ee69a9b48f58f075068986977c1 = L.popup({"maxWidth": "100%"});
var html_4ba0ad46f76a45838081c3ed192741cd = $(`<div id="html_4ba0ad46f76a45838081c3ed192741cd" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.2</div>`)[0];
popup_49a44ee69a9b48f58f075068986977c1.setContent(html_4ba0ad46f76a45838081c3ed192741cd);
circle_marker_bf8f2fbdee3448e2b55c4283490dd22b.bindPopup(popup_49a44ee69a9b48f58f075068986977c1)
;
var circle_marker_c6acabc501454a9585d89f4c193171fa = L.circleMarker(
[43.745905799999996, -79.352188],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_bf91255cb1cf4ee899c4b8da406c13c4 = L.popup({"maxWidth": "100%"});
var html_147f64f97af24a7a8728f24a0a8d3db4 = $(`<div id="html_147f64f97af24a7a8728f24a0a8d3db4" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.0</div>`)[0];
popup_bf91255cb1cf4ee899c4b8da406c13c4.setContent(html_147f64f97af24a7a8728f24a0a8d3db4);
circle_marker_c6acabc501454a9585d89f4c193171fa.bindPopup(popup_bf91255cb1cf4ee899c4b8da406c13c4)
;
var circle_marker_3aacc6533e22475b916d931c9216717e = L.circleMarker(
[43.7063972, -79.309937],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.5025574367863748, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_cabc65f5d2ee404d833181d54c0b8db4 = L.popup({"maxWidth": "100%"});
var html_b0a69b9d178441098cf6f2e1d9a0693b = $(`<div id="html_b0a69b9d178441098cf6f2e1d9a0693b" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Lack product: 0.5</div>`)[0];
popup_cabc65f5d2ee404d833181d54c0b8db4.setContent(html_b0a69b9d178441098cf6f2e1d9a0693b);
circle_marker_3aacc6533e22475b916d931c9216717e.bindPopup(popup_cabc65f5d2ee404d833181d54c0b8db4)
;
var circle_marker_9c598319da874fa3b33cf2cfca51a7ef = L.circleMarker(
[43.7063972, -79.309937],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.9350339275236021, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_9043f44b8fb241219b03456fd621f54d = L.popup({"maxWidth": "100%"});
var html_8b06a70a58da4f90a0f1e6d6a6313d5e = $(`<div id="html_8b06a70a58da4f90a0f1e6d6a6313d5e" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Cluster lack: 0.7</div>`)[0];
popup_9043f44b8fb241219b03456fd621f54d.setContent(html_8b06a70a58da4f90a0f1e6d6a6313d5e);
circle_marker_9c598319da874fa3b33cf2cfca51a7ef.bindPopup(popup_9043f44b8fb241219b03456fd621f54d)
;
var circle_marker_74068e1956f9404d8a664bc43951f2e3 = L.circleMarker(
[43.7063972, -79.309937],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.8169004492859626, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_a9350674b2a241a39bf597fcc8f1bdd4 = L.popup({"maxWidth": "100%"});
var html_85107a56ecab45bb991f08c5cb14c50d = $(`<div id="html_85107a56ecab45bb991f08c5cb14c50d" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Coffee lack: 0.7</div>`)[0];
popup_a9350674b2a241a39bf597fcc8f1bdd4.setContent(html_85107a56ecab45bb991f08c5cb14c50d);
circle_marker_74068e1956f9404d8a664bc43951f2e3.bindPopup(popup_a9350674b2a241a39bf597fcc8f1bdd4)
;
var circle_marker_4ba3ff4bef3e4f0aaa44f3f07a8ed03f = L.circleMarker(
[43.6571618, -79.37893709999999],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_c37006fd25c447ffb9f99be2fd8f725f = L.popup({"maxWidth": "100%"});
var html_69e95194e86f4a5d9f1f7bf3fdfc927f = $(`<div id="html_69e95194e86f4a5d9f1f7bf3fdfc927f" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Lack product: 0.0</div>`)[0];
popup_c37006fd25c447ffb9f99be2fd8f725f.setContent(html_69e95194e86f4a5d9f1f7bf3fdfc927f);
circle_marker_4ba3ff4bef3e4f0aaa44f3f07a8ed03f.bindPopup(popup_c37006fd25c447ffb9f99be2fd8f725f)
;
var circle_marker_f6475421857a482fb213ebfd554adcb9 = L.circleMarker(
[43.6571618, -79.37893709999999],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.9535346628941266, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_cf3bedf3ccc04aeabc0ed0ba3f9650ae = L.popup({"maxWidth": "100%"});
var html_76935a1499f1493bb5e279f8f2a8f66c = $(`<div id="html_76935a1499f1493bb5e279f8f2a8f66c" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Cluster lack: 0.2</div>`)[0];
popup_cf3bedf3ccc04aeabc0ed0ba3f9650ae.setContent(html_76935a1499f1493bb5e279f8f2a8f66c);
circle_marker_f6475421857a482fb213ebfd554adcb9.bindPopup(popup_cf3bedf3ccc04aeabc0ed0ba3f9650ae)
;
var circle_marker_c1bea285a53246018a3a26fc2196312a = L.circleMarker(
[43.6571618, -79.37893709999999],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_18c00ba228a741f9838e690d1e9cca1b = L.popup({"maxWidth": "100%"});
var html_0d70c3332a774402844bd3e9c677f4ca = $(`<div id="html_0d70c3332a774402844bd3e9c677f4ca" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Coffee lack: 0.0</div>`)[0];
popup_18c00ba228a741f9838e690d1e9cca1b.setContent(html_0d70c3332a774402844bd3e9c677f4ca);
circle_marker_c1bea285a53246018a3a26fc2196312a.bindPopup(popup_18c00ba228a741f9838e690d1e9cca1b)
;
var circle_marker_b69a8c7998c54e389bb78ad6d1be0520 = L.circleMarker(
[43.709577, -79.44507259999999],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_548b6aa1a4654e95a43ba5dbcd4ddf1d = L.popup({"maxWidth": "100%"});
var html_99214dac0cde4144833d103dc0405b9d = $(`<div id="html_99214dac0cde4144833d103dc0405b9d" style="width: 100.0%; height: 100.0%;">Glencairn Lack product: 0.0</div>`)[0];
popup_548b6aa1a4654e95a43ba5dbcd4ddf1d.setContent(html_99214dac0cde4144833d103dc0405b9d);
circle_marker_b69a8c7998c54e389bb78ad6d1be0520.bindPopup(popup_548b6aa1a4654e95a43ba5dbcd4ddf1d)
;
var circle_marker_e1ff744030da4919be397a1de04325d0 = L.circleMarker(
[43.709577, -79.44507259999999],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_814e091b18b34da4a4e1dda4a6879358 = L.popup({"maxWidth": "100%"});
var html_8bd82b6a914846bf928123e66db1b2c4 = $(`<div id="html_8bd82b6a914846bf928123e66db1b2c4" style="width: 100.0%; height: 100.0%;">Glencairn Cluster lack: 0.0</div>`)[0];
popup_814e091b18b34da4a4e1dda4a6879358.setContent(html_8bd82b6a914846bf928123e66db1b2c4);
circle_marker_e1ff744030da4919be397a1de04325d0.bindPopup(popup_814e091b18b34da4a4e1dda4a6879358)
;
var circle_marker_feefb9bb2f864f96b454b21b7500ee85 = L.circleMarker(
[43.709577, -79.44507259999999],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.269146806467296, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_8cc673b205e24e67858076147e57439b = L.popup({"maxWidth": "100%"});
var html_8c7c632d1e1942d7aa71d7ebf91347fd = $(`<div id="html_8c7c632d1e1942d7aa71d7ebf91347fd" style="width: 100.0%; height: 100.0%;">Glencairn Coffee lack: 0.4</div>`)[0];
popup_8cc673b205e24e67858076147e57439b.setContent(html_8c7c632d1e1942d7aa71d7ebf91347fd);
circle_marker_feefb9bb2f864f96b454b21b7500ee85.bindPopup(popup_8cc673b205e24e67858076147e57439b)
;
var circle_marker_07813e94ba484e6a8a902fc40ad0d693 = L.circleMarker(
[43.6509432, -79.55472440000001],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_bc797c8ffb0446688818c8161e952de3 = L.popup({"maxWidth": "100%"});
var html_35b1949c1ba24968bf7a7ece5eff5cef = $(`<div id="html_35b1949c1ba24968bf7a7ece5eff5cef" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Lack product: 0.0</div>`)[0];
popup_bc797c8ffb0446688818c8161e952de3.setContent(html_35b1949c1ba24968bf7a7ece5eff5cef);
circle_marker_07813e94ba484e6a8a902fc40ad0d693.bindPopup(popup_bc797c8ffb0446688818c8161e952de3)
;
var circle_marker_54b07ba7a4254059ad5e7c7bb31f07c6 = L.circleMarker(
[43.6509432, -79.55472440000001],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_6ad5ea8d4bbf4ee8a835941289e49396 = L.popup({"maxWidth": "100%"});
var html_bda6dc0bf447422692cd6d17b7948e6b = $(`<div id="html_bda6dc0bf447422692cd6d17b7948e6b" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Cluster lack: 0.0</div>`)[0];
popup_6ad5ea8d4bbf4ee8a835941289e49396.setContent(html_bda6dc0bf447422692cd6d17b7948e6b);
circle_marker_54b07ba7a4254059ad5e7c7bb31f07c6.bindPopup(popup_6ad5ea8d4bbf4ee8a835941289e49396)
;
var circle_marker_1e4f7b53eab547dd8af188c8259be43f = L.circleMarker(
[43.6509432, -79.55472440000001],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_d33b751e622b4a88982199f72d0d4cf5 = L.popup({"maxWidth": "100%"});
var html_643ae8e84dde4ac6a7c6f41e51a0e644 = $(`<div id="html_643ae8e84dde4ac6a7c6f41e51a0e644" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Coffee lack: 0.0</div>`)[0];
popup_d33b751e622b4a88982199f72d0d4cf5.setContent(html_643ae8e84dde4ac6a7c6f41e51a0e644);
circle_marker_1e4f7b53eab547dd8af188c8259be43f.bindPopup(popup_d33b751e622b4a88982199f72d0d4cf5)
;
var circle_marker_cd9dccd53ed541e5a554d6f998334bfb = L.circleMarker(
[43.7845351, -79.16049709999999],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_d88c00cdb7ee497788331e7145e089e8 = L.popup({"maxWidth": "100%"});
var html_d23c450797e540528678e733b32bca14 = $(`<div id="html_d23c450797e540528678e733b32bca14" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Lack product: 0.0</div>`)[0];
popup_d88c00cdb7ee497788331e7145e089e8.setContent(html_d23c450797e540528678e733b32bca14);
circle_marker_cd9dccd53ed541e5a554d6f998334bfb.bindPopup(popup_d88c00cdb7ee497788331e7145e089e8)
;
var circle_marker_bb44159224684444a1e7ecb0e1e56d99 = L.circleMarker(
[43.7845351, -79.16049709999999],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_77968ae8783349eda00d8677b4a77fe2 = L.popup({"maxWidth": "100%"});
var html_231ec7feed88495793cd29a0b09efbba = $(`<div id="html_231ec7feed88495793cd29a0b09efbba" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Cluster lack: 0.0</div>`)[0];
popup_77968ae8783349eda00d8677b4a77fe2.setContent(html_231ec7feed88495793cd29a0b09efbba);
circle_marker_bb44159224684444a1e7ecb0e1e56d99.bindPopup(popup_77968ae8783349eda00d8677b4a77fe2)
;
var circle_marker_d1fcd5b5d17141a0aec66d8f5d70e562 = L.circleMarker(
[43.7845351, -79.16049709999999],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.6, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_cfa40a573005494e96eeb61bb22949ab = L.popup({"maxWidth": "100%"});
var html_9a435c7e671f4b8c8f616c3e9d1cb871 = $(`<div id="html_9a435c7e671f4b8c8f616c3e9d1cb871" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Coffee lack: 0.0</div>`)[0];
popup_cfa40a573005494e96eeb61bb22949ab.setContent(html_9a435c7e671f4b8c8f616c3e9d1cb871);
circle_marker_d1fcd5b5d17141a0aec66d8f5d70e562.bindPopup(popup_cfa40a573005494e96eeb61bb22949ab)
;
var circle_marker_af974e0135f84740ae57862e4f8c75e7 = L.circleMarker(
[43.72589970000001, -79.340923],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.9532631846238113, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_01889a96d1bb4645b6ac738a1d3ab146 = L.popup({"maxWidth": "100%"});
var html_13cb89148b7f482caac1963bed35d72a = $(`<div id="html_13cb89148b7f482caac1963bed35d72a" style="width: 100.0%; height: 100.0%;">Don Mills Lack product: 0.2</div>`)[0];
popup_01889a96d1bb4645b6ac738a1d3ab146.setContent(html_13cb89148b7f482caac1963bed35d72a);
circle_marker_af974e0135f84740ae57862e4f8c75e7.bindPopup(popup_01889a96d1bb4645b6ac738a1d3ab146)
;
var circle_marker_1f5c1f20ec634a019f08a5b2dc75dcb9 = L.circleMarker(
[43.72589970000001, -79.340923],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.9730770752283282, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_2bf51c08e305422f971a1fdf726eedc9 = L.popup({"maxWidth": "100%"});
var html_0d96c3e861914c889ccc17881a5d728f = $(`<div id="html_0d96c3e861914c889ccc17881a5d728f" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.2</div>`)[0];
popup_2bf51c08e305422f971a1fdf726eedc9.setContent(html_0d96c3e861914c889ccc17881a5d728f);
circle_marker_1f5c1f20ec634a019f08a5b2dc75dcb9.bindPopup(popup_2bf51c08e305422f971a1fdf726eedc9)
;
var circle_marker_61a9eab63cfe4400b883551422f94348 = L.circleMarker(
[43.72589970000001, -79.340923],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.3044031234931732, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_7461e8ef2d4e4a33a392777418644e06 = L.popup({"maxWidth": "100%"});
var html_addd70622af140aa867ca3ecc78523fd = $(`<div id="html_addd70622af140aa867ca3ecc78523fd" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.9</div>`)[0];
popup_7461e8ef2d4e4a33a392777418644e06.setContent(html_addd70622af140aa867ca3ecc78523fd);
circle_marker_61a9eab63cfe4400b883551422f94348.bindPopup(popup_7461e8ef2d4e4a33a392777418644e06)
;
var circle_marker_c5c59044ce3f477487a2c5fbcaa8444d = L.circleMarker(
[43.695343900000005, -79.3183887],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.2429267801786383, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_9fc803a715a1492f9ac98436dfb7324e = L.popup({"maxWidth": "100%"});
var html_7ccc929970b54b478171060a55cd1f93 = $(`<div id="html_7ccc929970b54b478171060a55cd1f93" style="width: 100.0%; height: 100.0%;">Woodbine Heights Lack product: 0.4</div>`)[0];
popup_9fc803a715a1492f9ac98436dfb7324e.setContent(html_7ccc929970b54b478171060a55cd1f93);
circle_marker_c5c59044ce3f477487a2c5fbcaa8444d.bindPopup(popup_9fc803a715a1492f9ac98436dfb7324e)
;
var circle_marker_b64e8d05d140472899d0ade504468a9c = L.circleMarker(
[43.695343900000005, -79.3183887],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.039158567709349, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_f18168e9d9164bd0a72ab9eb8606603c = L.popup({"maxWidth": "100%"});
var html_31670c56d6f34446a9a12783d9dc4d1d = $(`<div id="html_31670c56d6f34446a9a12783d9dc4d1d" style="width: 100.0%; height: 100.0%;">Woodbine Heights Cluster lack: 0.8</div>`)[0];
popup_f18168e9d9164bd0a72ab9eb8606603c.setContent(html_31670c56d6f34446a9a12783d9dc4d1d);
circle_marker_b64e8d05d140472899d0ade504468a9c.bindPopup(popup_f18168e9d9164bd0a72ab9eb8606603c)
;
var circle_marker_52b8a4e368e9444196c6ac96520bebfe = L.circleMarker(
[43.695343900000005, -79.3183887],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.404128349917359, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_0e28260d133541ceac6117c81174cfd7 = L.popup({"maxWidth": "100%"});
var html_80b6f9be163d4e4186af1c66f1a6f867 = $(`<div id="html_80b6f9be163d4e4186af1c66f1a6f867" style="width: 100.0%; height: 100.0%;">Woodbine Heights Coffee lack: 0.4</div>`)[0];
popup_0e28260d133541ceac6117c81174cfd7.setContent(html_80b6f9be163d4e4186af1c66f1a6f867);
circle_marker_52b8a4e368e9444196c6ac96520bebfe.bindPopup(popup_0e28260d133541ceac6117c81174cfd7)
;
var circle_marker_f1af06d6e4f84c5892a0c49a308deb3f = L.circleMarker(
[43.6514939, -79.3754179],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 16.42664699002008, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_e63cb664a0684c2e803905fff0355f3d = L.popup({"maxWidth": "100%"});
var html_83e6c753f28d4c02bcd4732eb91ff87c = $(`<div id="html_83e6c753f28d4c02bcd4732eb91ff87c" style="width: 100.0%; height: 100.0%;">St. James Town Lack product: 8.8</div>`)[0];
popup_e63cb664a0684c2e803905fff0355f3d.setContent(html_83e6c753f28d4c02bcd4732eb91ff87c);
circle_marker_f1af06d6e4f84c5892a0c49a308deb3f.bindPopup(popup_e63cb664a0684c2e803905fff0355f3d)
;
var circle_marker_5b9aaae0ad5949268414ee824ca62f80 = L.circleMarker(
[43.6514939, -79.3754179],
{"bubblingMouseEvents": true, "color": "yellow", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "yellow", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11.800551276996483, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_8ac70da7d90446a697ae8fa4a2f86f60 = L.popup({"maxWidth": "100%"});
var html_80bf556f07ed495ea75fb71fb8bcd3aa = $(`<div id="html_80bf556f07ed495ea75fb71fb8bcd3aa" style="width: 100.0%; height: 100.0%;">St. James Town Cluster lack: 6.2</div>`)[0];
popup_8ac70da7d90446a697ae8fa4a2f86f60.setContent(html_80bf556f07ed495ea75fb71fb8bcd3aa);
circle_marker_5b9aaae0ad5949268414ee824ca62f80.bindPopup(popup_8ac70da7d90446a697ae8fa4a2f86f60)
;
var circle_marker_b686b167c42e4d70ad69ec03d6001643 = L.circleMarker(
[43.6514939, -79.3754179],
{"bubblingMouseEvents": true, "color": "#01CEAF", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#01CEAF", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.143443075033662, "stroke": true, "weight": 0}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_94be7375139a4671a2de3de28e793f03 = L.popup({"maxWidth": "100%"});
var html_de310d8191384baba148399fc1f1e09d = $(`<div id="html_de310d8191384baba148399fc1f1e09d" style="width: 100.0%; height: 100.0%;">St. James Town Coffee lack: 1.4</div>`)[0];
popup_94be7375139a4671a2de3de28e793f03.setContent(html_de310d8191384baba148399fc1f1e09d);
circle_marker_b686b167c42e4d70ad69ec03d6001643.bindPopup(popup_94be7375139a4671a2de3de28e793f03)
;
var circle_marker_a309e9ef76e0436c80d44cbb01b116fe = L.circleMarker(
[43.6937813, -79.42819140000002],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0415661980104496, "stroke": true, "weight": 1.5}
).addTo(map_1de58e46512e49b492650b113844da3b);
var popup_299d44b5c373463981ce6f6940732593 = L.popup({"maxWidth": "100%"});
var html_c7be2ed5d28e4849bcff8ef35d8fc02f = $(`<div id="html_c7be2ed5d28e4849bcff8ef35d8fc02f" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Lack product: 0.2</div>`)[0];
popup_299d44b5c373463981ce6f6940732593.setContent(html_c7be2ed5d28e4849bcff8ef35d8fc02f);
circle_marker_a309e9ef76e0436c80d44cbb01b116fe.bindPopup(popup_299d44b5c373463981ce6f6940732593)
;