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_combinedproduct__zoom2_bnw.html
5940 lines (2835 loc) · 318 KB
/
map_combinedproduct__zoom2_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_9d13ea40d46643128df5a72d0ba866a6 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_9d13ea40d46643128df5a72d0ba866a6" ></div>
</body>
<script>
var map_9d13ea40d46643128df5a72d0ba866a6 = L.map(
"map_9d13ea40d46643128df5a72d0ba866a6",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_1f61d930db1b4523ac331b3c7b214b18 = 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_9d13ea40d46643128df5a72d0ba866a6);
var tile_layer_3d16a5cb9402473fb9ab50544dc7b44e = 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_9d13ea40d46643128df5a72d0ba866a6);
var circle_marker_75d7df30506d4f7b828ffa2ad98b399f = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_483ddd66d76846d7aeb0faca62a0841d = L.popup({"maxWidth": "100%"});
var html_bb4593aa3ca742c381f19812d4e70176 = $(`<div id="html_bb4593aa3ca742c381f19812d4e70176" style="width: 100.0%; height: 100.0%;">Parkwoods Lack product: 0.0</div>`)[0];
popup_483ddd66d76846d7aeb0faca62a0841d.setContent(html_bb4593aa3ca742c381f19812d4e70176);
circle_marker_75d7df30506d4f7b828ffa2ad98b399f.bindPopup(popup_483ddd66d76846d7aeb0faca62a0841d)
;
var circle_marker_b6e2b55c702a4ec784060368872875b4 = 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": 2.980619629523206, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_475d4ef8515c40d8b12e30e8c4e67f1e = L.popup({"maxWidth": "100%"});
var html_91aa1410bc204c259469aa3768c9d8ba = $(`<div id="html_91aa1410bc204c259469aa3768c9d8ba" style="width: 100.0%; height: 100.0%;">Parkwoods Cluster lack: 0.7</div>`)[0];
popup_475d4ef8515c40d8b12e30e8c4e67f1e.setContent(html_91aa1410bc204c259469aa3768c9d8ba);
circle_marker_b6e2b55c702a4ec784060368872875b4.bindPopup(popup_475d4ef8515c40d8b12e30e8c4e67f1e)
;
var circle_marker_833558549c4946099c151c0e7930314a = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_82d3cd3e04a648048c5a66305231e1e2 = L.popup({"maxWidth": "100%"});
var html_0fffaee3084b4697aa72fcc7e8eed66c = $(`<div id="html_0fffaee3084b4697aa72fcc7e8eed66c" style="width: 100.0%; height: 100.0%;">Parkwoods Coffee lack: 0.0</div>`)[0];
popup_82d3cd3e04a648048c5a66305231e1e2.setContent(html_0fffaee3084b4697aa72fcc7e8eed66c);
circle_marker_833558549c4946099c151c0e7930314a.bindPopup(popup_82d3cd3e04a648048c5a66305231e1e2)
;
var circle_marker_356b559f165745edb36b6039103e08ae = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_fa17405bb2d84643ba18822f6c2c95ec = L.popup({"maxWidth": "100%"});
var html_84fa27ebbfe440348a1d4a1f871e4d4a = $(`<div id="html_84fa27ebbfe440348a1d4a1f871e4d4a" style="width: 100.0%; height: 100.0%;">Victoria Village Lack product: 0.0</div>`)[0];
popup_fa17405bb2d84643ba18822f6c2c95ec.setContent(html_84fa27ebbfe440348a1d4a1f871e4d4a);
circle_marker_356b559f165745edb36b6039103e08ae.bindPopup(popup_fa17405bb2d84643ba18822f6c2c95ec)
;
var circle_marker_e4e33d08cdae4d6c96820294d610f05b = 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": 1.0790092683039754, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_638e804136144622b98816cb52848887 = L.popup({"maxWidth": "100%"});
var html_de12c5b0f0f34f0ab3158bffd745133a = $(`<div id="html_de12c5b0f0f34f0ab3158bffd745133a" style="width: 100.0%; height: 100.0%;">Victoria Village Cluster lack: 0.0</div>`)[0];
popup_638e804136144622b98816cb52848887.setContent(html_de12c5b0f0f34f0ab3158bffd745133a);
circle_marker_e4e33d08cdae4d6c96820294d610f05b.bindPopup(popup_638e804136144622b98816cb52848887)
;
var circle_marker_7fe0d76d2c3243ac82a8a8e2bf63d4d6 = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_b60bf4e5e33941c6bef71b2841e971d3 = L.popup({"maxWidth": "100%"});
var html_8fcafca9687e40e797a58a2347230f79 = $(`<div id="html_8fcafca9687e40e797a58a2347230f79" style="width: 100.0%; height: 100.0%;">Victoria Village Coffee lack: 0.0</div>`)[0];
popup_b60bf4e5e33941c6bef71b2841e971d3.setContent(html_8fcafca9687e40e797a58a2347230f79);
circle_marker_7fe0d76d2c3243ac82a8a8e2bf63d4d6.bindPopup(popup_b60bf4e5e33941c6bef71b2841e971d3)
;
var circle_marker_e5f9f08295004a6ea2672daecab7eb6b = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_94d992011d83436ca40e0604e7759561 = L.popup({"maxWidth": "100%"});
var html_512df0b4120243df969f0cc829f65b78 = $(`<div id="html_512df0b4120243df969f0cc829f65b78" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Lack product: 0.0</div>`)[0];
popup_94d992011d83436ca40e0604e7759561.setContent(html_512df0b4120243df969f0cc829f65b78);
circle_marker_e5f9f08295004a6ea2672daecab7eb6b.bindPopup(popup_94d992011d83436ca40e0604e7759561)
;
var circle_marker_64a343d400b642bfa0dddc1691e410eb = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_ceac0ff97f6549d89d51d1b6e5519fac = L.popup({"maxWidth": "100%"});
var html_faf4498c025340b7ac63e028de6a19a1 = $(`<div id="html_faf4498c025340b7ac63e028de6a19a1" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Cluster lack: 0.0</div>`)[0];
popup_ceac0ff97f6549d89d51d1b6e5519fac.setContent(html_faf4498c025340b7ac63e028de6a19a1);
circle_marker_64a343d400b642bfa0dddc1691e410eb.bindPopup(popup_ceac0ff97f6549d89d51d1b6e5519fac)
;
var circle_marker_c35062fff8944a9883f5c46b94f1daaf = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_88ccd637e3284728b8cfe4d34b1bbc86 = L.popup({"maxWidth": "100%"});
var html_b5d509678f80479b9af5111ac00e2b03 = $(`<div id="html_b5d509678f80479b9af5111ac00e2b03" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Coffee lack: 0.0</div>`)[0];
popup_88ccd637e3284728b8cfe4d34b1bbc86.setContent(html_b5d509678f80479b9af5111ac00e2b03);
circle_marker_c35062fff8944a9883f5c46b94f1daaf.bindPopup(popup_88ccd637e3284728b8cfe4d34b1bbc86)
;
var circle_marker_20a23c13d10d4d2493996e05fa2faf5f = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_02238c2caee0422ab422a3620feea226 = L.popup({"maxWidth": "100%"});
var html_b51b892d15ae469dbff952d174b0ef06 = $(`<div id="html_b51b892d15ae469dbff952d174b0ef06" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Lack product: 0.0</div>`)[0];
popup_02238c2caee0422ab422a3620feea226.setContent(html_b51b892d15ae469dbff952d174b0ef06);
circle_marker_20a23c13d10d4d2493996e05fa2faf5f.bindPopup(popup_02238c2caee0422ab422a3620feea226)
;
var circle_marker_8439dee24395439e812c32e997cb84dd = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_7433c49b831d465e8a17d2754ada5f6c = L.popup({"maxWidth": "100%"});
var html_e989818126ce465da27872ffe24ec8a7 = $(`<div id="html_e989818126ce465da27872ffe24ec8a7" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Cluster lack: 0.0</div>`)[0];
popup_7433c49b831d465e8a17d2754ada5f6c.setContent(html_e989818126ce465da27872ffe24ec8a7);
circle_marker_8439dee24395439e812c32e997cb84dd.bindPopup(popup_7433c49b831d465e8a17d2754ada5f6c)
;
var circle_marker_dd018464a0a84dd9aa249041539576e1 = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_6e311f96463145eea0a6e64a69f2b0c1 = L.popup({"maxWidth": "100%"});
var html_4a51f8c8266a44308ece6841d6bd65e9 = $(`<div id="html_4a51f8c8266a44308ece6841d6bd65e9" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Coffee lack: 0.0</div>`)[0];
popup_6e311f96463145eea0a6e64a69f2b0c1.setContent(html_4a51f8c8266a44308ece6841d6bd65e9);
circle_marker_dd018464a0a84dd9aa249041539576e1.bindPopup(popup_6e311f96463145eea0a6e64a69f2b0c1)
;
var circle_marker_883589767d61454ba187a0ad5b7ccf5b = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_34e21128f7c7489a86264add3616625e = L.popup({"maxWidth": "100%"});
var html_8e61d5affeef4cca9f95e3e1524fc96c = $(`<div id="html_8e61d5affeef4cca9f95e3e1524fc96c" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Lack product: 0.0</div>`)[0];
popup_34e21128f7c7489a86264add3616625e.setContent(html_8e61d5affeef4cca9f95e3e1524fc96c);
circle_marker_883589767d61454ba187a0ad5b7ccf5b.bindPopup(popup_34e21128f7c7489a86264add3616625e)
;
var circle_marker_aef380e4d88d4378974f998ed9bf2a47 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_e9c065705bae48d7bb0c6d032bd73ba3 = L.popup({"maxWidth": "100%"});
var html_86bfba7c410e4ec498221e0f022e31af = $(`<div id="html_86bfba7c410e4ec498221e0f022e31af" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Cluster lack: 0.0</div>`)[0];
popup_e9c065705bae48d7bb0c6d032bd73ba3.setContent(html_86bfba7c410e4ec498221e0f022e31af);
circle_marker_aef380e4d88d4378974f998ed9bf2a47.bindPopup(popup_e9c065705bae48d7bb0c6d032bd73ba3)
;
var circle_marker_78c1469d06dc42ab82b16db229030cfe = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_c40361218d6d440fa9218807d33f0fce = L.popup({"maxWidth": "100%"});
var html_9111a20bfc654de6a6fbf732be38689d = $(`<div id="html_9111a20bfc654de6a6fbf732be38689d" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Coffee lack: 0.0</div>`)[0];
popup_c40361218d6d440fa9218807d33f0fce.setContent(html_9111a20bfc654de6a6fbf732be38689d);
circle_marker_78c1469d06dc42ab82b16db229030cfe.bindPopup(popup_c40361218d6d440fa9218807d33f0fce)
;
var circle_marker_ffc45fd38e57490a99d5c4e0f44c8263 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_c0fbcb9aafdc42a5990e2f3e6e7e7665 = L.popup({"maxWidth": "100%"});
var html_a78269306e9d41ab89e208b0a0e979cf = $(`<div id="html_a78269306e9d41ab89e208b0a0e979cf" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Lack product: 0.0</div>`)[0];
popup_c0fbcb9aafdc42a5990e2f3e6e7e7665.setContent(html_a78269306e9d41ab89e208b0a0e979cf);
circle_marker_ffc45fd38e57490a99d5c4e0f44c8263.bindPopup(popup_c0fbcb9aafdc42a5990e2f3e6e7e7665)
;
var circle_marker_2f6ee7d2d8a0464b8bb2ef85e39ee133 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_3600e6467f05465c830e21d7c3b4679a = L.popup({"maxWidth": "100%"});
var html_7c0a527f971a42979f2e54565d96e929 = $(`<div id="html_7c0a527f971a42979f2e54565d96e929" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Cluster lack: 0.0</div>`)[0];
popup_3600e6467f05465c830e21d7c3b4679a.setContent(html_7c0a527f971a42979f2e54565d96e929);
circle_marker_2f6ee7d2d8a0464b8bb2ef85e39ee133.bindPopup(popup_3600e6467f05465c830e21d7c3b4679a)
;
var circle_marker_28ca6511d5f6465098d655e34a290a3d = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_8e0ba926bc9340c5b031b535f2382715 = L.popup({"maxWidth": "100%"});
var html_11ddfde0f93d4580bc7c3d4675537065 = $(`<div id="html_11ddfde0f93d4580bc7c3d4675537065" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Coffee lack: 0.0</div>`)[0];
popup_8e0ba926bc9340c5b031b535f2382715.setContent(html_11ddfde0f93d4580bc7c3d4675537065);
circle_marker_28ca6511d5f6465098d655e34a290a3d.bindPopup(popup_8e0ba926bc9340c5b031b535f2382715)
;
var circle_marker_6613646f8fd846a898e93ac3d28fa433 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_4a274de4d9d0451f97c89b1033afd05b = L.popup({"maxWidth": "100%"});
var html_0501838e236f48fd9f2cffc114888843 = $(`<div id="html_0501838e236f48fd9f2cffc114888843" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Lack product: 0.0</div>`)[0];
popup_4a274de4d9d0451f97c89b1033afd05b.setContent(html_0501838e236f48fd9f2cffc114888843);
circle_marker_6613646f8fd846a898e93ac3d28fa433.bindPopup(popup_4a274de4d9d0451f97c89b1033afd05b)
;
var circle_marker_1b51d55d597d431d8b1dd7f55b7051dc = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_5eab5f3f60944f1ca478d8c98f9fc8f1 = L.popup({"maxWidth": "100%"});
var html_cc15fc77211142cca03565e4954bff47 = $(`<div id="html_cc15fc77211142cca03565e4954bff47" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Cluster lack: 0.0</div>`)[0];
popup_5eab5f3f60944f1ca478d8c98f9fc8f1.setContent(html_cc15fc77211142cca03565e4954bff47);
circle_marker_1b51d55d597d431d8b1dd7f55b7051dc.bindPopup(popup_5eab5f3f60944f1ca478d8c98f9fc8f1)
;
var circle_marker_30ecee8b48eb489eb55309285d0b2c02 = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_95867a8277eb4f92a7519d6cdc5a8c92 = L.popup({"maxWidth": "100%"});
var html_7322141aa68d476bbd76ac87fc270a6b = $(`<div id="html_7322141aa68d476bbd76ac87fc270a6b" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Coffee lack: 0.0</div>`)[0];
popup_95867a8277eb4f92a7519d6cdc5a8c92.setContent(html_7322141aa68d476bbd76ac87fc270a6b);
circle_marker_30ecee8b48eb489eb55309285d0b2c02.bindPopup(popup_95867a8277eb4f92a7519d6cdc5a8c92)
;
var circle_marker_3ce85b50456448de88919da6b69613e9 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_5567a4ea4bdb435f84896648d4ad438a = L.popup({"maxWidth": "100%"});
var html_580763e551ff48c096a504d75da69278 = $(`<div id="html_580763e551ff48c096a504d75da69278" style="width: 100.0%; height: 100.0%;">Don Mills Lack product: 0.0</div>`)[0];
popup_5567a4ea4bdb435f84896648d4ad438a.setContent(html_580763e551ff48c096a504d75da69278);
circle_marker_3ce85b50456448de88919da6b69613e9.bindPopup(popup_5567a4ea4bdb435f84896648d4ad438a)
;
var circle_marker_0e012da1837d414fa4c467219f52c7c8 = 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.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_988bacaa58e246118940dce370e9989d = L.popup({"maxWidth": "100%"});
var html_16a72e6f21c64331bffed8189362791e = $(`<div id="html_16a72e6f21c64331bffed8189362791e" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_988bacaa58e246118940dce370e9989d.setContent(html_16a72e6f21c64331bffed8189362791e);
circle_marker_0e012da1837d414fa4c467219f52c7c8.bindPopup(popup_988bacaa58e246118940dce370e9989d)
;
var circle_marker_120fca6e1e0a4fb1961768f1b5a382db = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_d44ada9bb8ba40c799a4432205025e7b = L.popup({"maxWidth": "100%"});
var html_bb207c48367c4973af72a8862a83a0f1 = $(`<div id="html_bb207c48367c4973af72a8862a83a0f1" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.0</div>`)[0];
popup_d44ada9bb8ba40c799a4432205025e7b.setContent(html_bb207c48367c4973af72a8862a83a0f1);
circle_marker_120fca6e1e0a4fb1961768f1b5a382db.bindPopup(popup_d44ada9bb8ba40c799a4432205025e7b)
;
var circle_marker_6c50eb4364a74809b52c0c37181cbf38 = 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": 8.79303371024269, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_f9d1ff4e1d3248229fce61480bc56c19 = L.popup({"maxWidth": "100%"});
var html_bff089e0cd2845719e141590bbb06e57 = $(`<div id="html_bff089e0cd2845719e141590bbb06e57" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Lack product: 2.6</div>`)[0];
popup_f9d1ff4e1d3248229fce61480bc56c19.setContent(html_bff089e0cd2845719e141590bbb06e57);
circle_marker_6c50eb4364a74809b52c0c37181cbf38.bindPopup(popup_f9d1ff4e1d3248229fce61480bc56c19)
;
var circle_marker_cc878d5092e64143b8ef7df2c0b99c8c = 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": 12.527204782172452, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_7401eb07b2fa4c95ad0e69686eb82cf0 = L.popup({"maxWidth": "100%"});
var html_4c3f861e3a424f33915341cfa41da133 = $(`<div id="html_4c3f861e3a424f33915341cfa41da133" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Cluster lack: 3.8</div>`)[0];
popup_7401eb07b2fa4c95ad0e69686eb82cf0.setContent(html_4c3f861e3a424f33915341cfa41da133);
circle_marker_cc878d5092e64143b8ef7df2c0b99c8c.bindPopup(popup_7401eb07b2fa4c95ad0e69686eb82cf0)
;
var circle_marker_594e1fdad6ad4157b73bd55bf91f75bb = 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": 3.028167415476588, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_3bedaee350004badb8fff7a20fe936f5 = L.popup({"maxWidth": "100%"});
var html_1ade2d0d1f8c460c9a4f2295ff49706f = $(`<div id="html_1ade2d0d1f8c460c9a4f2295ff49706f" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Coffee lack: 0.7</div>`)[0];
popup_3bedaee350004badb8fff7a20fe936f5.setContent(html_1ade2d0d1f8c460c9a4f2295ff49706f);
circle_marker_594e1fdad6ad4157b73bd55bf91f75bb.bindPopup(popup_3bedaee350004badb8fff7a20fe936f5)
;
var circle_marker_058ffd4f8a0e46ee9c91bb5b0ad40c01 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_019175715bed492183373e9d0ee3af02 = L.popup({"maxWidth": "100%"});
var html_cb921d174abc4016abd6ef443de2c32d = $(`<div id="html_cb921d174abc4016abd6ef443de2c32d" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Lack product: 0.0</div>`)[0];
popup_019175715bed492183373e9d0ee3af02.setContent(html_cb921d174abc4016abd6ef443de2c32d);
circle_marker_058ffd4f8a0e46ee9c91bb5b0ad40c01.bindPopup(popup_019175715bed492183373e9d0ee3af02)
;
var circle_marker_5efc83ca948f4402a05b60897b15e011 = 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": 3.999161839025037, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_d4c36030f2f44507a5c1dfb8dbc0fa1e = L.popup({"maxWidth": "100%"});
var html_5c302896dd5c459082c570640c2caa27 = $(`<div id="html_5c302896dd5c459082c570640c2caa27" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Cluster lack: 1.0</div>`)[0];
popup_d4c36030f2f44507a5c1dfb8dbc0fa1e.setContent(html_5c302896dd5c459082c570640c2caa27);
circle_marker_5efc83ca948f4402a05b60897b15e011.bindPopup(popup_d4c36030f2f44507a5c1dfb8dbc0fa1e)
;
var circle_marker_23e79abdbaea4f8a89db17ac315bfbd9 = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_41c524ebf8cf45aa863fb06ee522c916 = L.popup({"maxWidth": "100%"});
var html_5f8f1fb87edc410fa35e8ea4c68d7a9b = $(`<div id="html_5f8f1fb87edc410fa35e8ea4c68d7a9b" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Coffee lack: 0.0</div>`)[0];
popup_41c524ebf8cf45aa863fb06ee522c916.setContent(html_5f8f1fb87edc410fa35e8ea4c68d7a9b);
circle_marker_23e79abdbaea4f8a89db17ac315bfbd9.bindPopup(popup_41c524ebf8cf45aa863fb06ee522c916)
;
var circle_marker_018fa7d5e09f427fa3e3588a56aecf13 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_23e9344fec884847b689abcca996d051 = L.popup({"maxWidth": "100%"});
var html_8de957b681bf415faf5b1ceadbbefc97 = $(`<div id="html_8de957b681bf415faf5b1ceadbbefc97" style="width: 100.0%; height: 100.0%;">Glencairn Lack product: 0.0</div>`)[0];
popup_23e9344fec884847b689abcca996d051.setContent(html_8de957b681bf415faf5b1ceadbbefc97);
circle_marker_018fa7d5e09f427fa3e3588a56aecf13.bindPopup(popup_23e9344fec884847b689abcca996d051)
;
var circle_marker_a41a2f1a265b428f99f63b7191fec637 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_58f4977eb2f1423092e592d17ee081ae = L.popup({"maxWidth": "100%"});
var html_83a538801e08432d9a83ad0c3512c6f1 = $(`<div id="html_83a538801e08432d9a83ad0c3512c6f1" style="width: 100.0%; height: 100.0%;">Glencairn Cluster lack: 0.0</div>`)[0];
popup_58f4977eb2f1423092e592d17ee081ae.setContent(html_83a538801e08432d9a83ad0c3512c6f1);
circle_marker_a41a2f1a265b428f99f63b7191fec637.bindPopup(popup_58f4977eb2f1423092e592d17ee081ae)
;
var circle_marker_56a09aa62eaa4a4a934885959f25efd2 = 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": 2.1152446774455074, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_d56a50487fc84ab5bc2b0ea77490c7a4 = L.popup({"maxWidth": "100%"});
var html_7d08c029506143f3957d7367c277a231 = $(`<div id="html_7d08c029506143f3957d7367c277a231" style="width: 100.0%; height: 100.0%;">Glencairn Coffee lack: 0.4</div>`)[0];
popup_d56a50487fc84ab5bc2b0ea77490c7a4.setContent(html_7d08c029506143f3957d7367c277a231);
circle_marker_56a09aa62eaa4a4a934885959f25efd2.bindPopup(popup_d56a50487fc84ab5bc2b0ea77490c7a4)
;
var circle_marker_74cb199dc52c40a59f52f83b2bb2f2a2 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_1995a48f8aa6435288c83cb78d526c86 = L.popup({"maxWidth": "100%"});
var html_866cd89e3bcc4a5eac5d03d1b5149ec1 = $(`<div id="html_866cd89e3bcc4a5eac5d03d1b5149ec1" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Lack product: 0.0</div>`)[0];
popup_1995a48f8aa6435288c83cb78d526c86.setContent(html_866cd89e3bcc4a5eac5d03d1b5149ec1);
circle_marker_74cb199dc52c40a59f52f83b2bb2f2a2.bindPopup(popup_1995a48f8aa6435288c83cb78d526c86)
;
var circle_marker_cdf4dd2c8a5d449391c38d066d6a5811 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_2c050a1c81a448c8854bb5d49eb67e97 = L.popup({"maxWidth": "100%"});
var html_b11091e2d6d14e258868f3742d494c18 = $(`<div id="html_b11091e2d6d14e258868f3742d494c18" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Cluster lack: 0.0</div>`)[0];
popup_2c050a1c81a448c8854bb5d49eb67e97.setContent(html_b11091e2d6d14e258868f3742d494c18);
circle_marker_cdf4dd2c8a5d449391c38d066d6a5811.bindPopup(popup_2c050a1c81a448c8854bb5d49eb67e97)
;
var circle_marker_9d9c562f1da647c39fbc5d3858d893db = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_249830a685a947d789c53c61ec6a27bd = L.popup({"maxWidth": "100%"});
var html_e972d702783d402a908bfabe3762bfb7 = $(`<div id="html_e972d702783d402a908bfabe3762bfb7" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Coffee lack: 0.0</div>`)[0];
popup_249830a685a947d789c53c61ec6a27bd.setContent(html_e972d702783d402a908bfabe3762bfb7);
circle_marker_9d9c562f1da647c39fbc5d3858d893db.bindPopup(popup_249830a685a947d789c53c61ec6a27bd)
;
var circle_marker_85c22c2f6fc044a0b869bed8c235ff86 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_31a70130122443a8acb2ea39805ff51c = L.popup({"maxWidth": "100%"});
var html_5100ff0362d240d788db1a955625387e = $(`<div id="html_5100ff0362d240d788db1a955625387e" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Lack product: 0.0</div>`)[0];
popup_31a70130122443a8acb2ea39805ff51c.setContent(html_5100ff0362d240d788db1a955625387e);
circle_marker_85c22c2f6fc044a0b869bed8c235ff86.bindPopup(popup_31a70130122443a8acb2ea39805ff51c)
;
var circle_marker_71f67ea58e9543bfbdb4ff27a3a0e3cd = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_0f515c591c7b48899bf99c49df1bfc4d = L.popup({"maxWidth": "100%"});
var html_77a25d7186a34de08997fa4beb3997ae = $(`<div id="html_77a25d7186a34de08997fa4beb3997ae" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Cluster lack: 0.0</div>`)[0];
popup_0f515c591c7b48899bf99c49df1bfc4d.setContent(html_77a25d7186a34de08997fa4beb3997ae);
circle_marker_71f67ea58e9543bfbdb4ff27a3a0e3cd.bindPopup(popup_0f515c591c7b48899bf99c49df1bfc4d)
;
var circle_marker_b7e31d4ce49a4146a93a6239d608745f = 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": 1.0, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_3479a67f25e04b069e33acdd67eca269 = L.popup({"maxWidth": "100%"});
var html_3b9655849a234f69b99ab2bbc96de80d = $(`<div id="html_3b9655849a234f69b99ab2bbc96de80d" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Coffee lack: 0.0</div>`)[0];
popup_3479a67f25e04b069e33acdd67eca269.setContent(html_3b9655849a234f69b99ab2bbc96de80d);
circle_marker_b7e31d4ce49a4146a93a6239d608745f.bindPopup(popup_3479a67f25e04b069e33acdd67eca269)
;
var circle_marker_3a1664a4bb2e41498c51b8de254af7ea = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_741b96ae1bbe461f8780e74c7364820b = L.popup({"maxWidth": "100%"});
var html_8a195340f2aa423f98bbf9acf0c43498 = $(`<div id="html_8a195340f2aa423f98bbf9acf0c43498" style="width: 100.0%; height: 100.0%;">Don Mills Lack product: 0.0</div>`)[0];
popup_741b96ae1bbe461f8780e74c7364820b.setContent(html_8a195340f2aa423f98bbf9acf0c43498);
circle_marker_3a1664a4bb2e41498c51b8de254af7ea.bindPopup(popup_741b96ae1bbe461f8780e74c7364820b)
;
var circle_marker_0d710486110644aaa94a35971ca036c6 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_7c90a9032a1f4b8ab8302f39d37a03a8 = L.popup({"maxWidth": "100%"});
var html_b8aeb13405ea4689b9df768e0c3e3639 = $(`<div id="html_b8aeb13405ea4689b9df768e0c3e3639" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_7c90a9032a1f4b8ab8302f39d37a03a8.setContent(html_b8aeb13405ea4689b9df768e0c3e3639);
circle_marker_0d710486110644aaa94a35971ca036c6.bindPopup(popup_7c90a9032a1f4b8ab8302f39d37a03a8)
;
var circle_marker_a81070ec052b4dc0966d1dd7e26f2852 = 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": 3.8406718724886186, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_678a1f7a6b9d4976b0c48711ea4fc222 = L.popup({"maxWidth": "100%"});
var html_76c56ed90fb14828b1f721b8d8e75de9 = $(`<div id="html_76c56ed90fb14828b1f721b8d8e75de9" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.9</div>`)[0];
popup_678a1f7a6b9d4976b0c48711ea4fc222.setContent(html_76c56ed90fb14828b1f721b8d8e75de9);
circle_marker_a81070ec052b4dc0966d1dd7e26f2852.bindPopup(popup_678a1f7a6b9d4976b0c48711ea4fc222)
;
var circle_marker_ceef81a9a20c4ad9b69b7a3e6e988d42 = 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.5648081910200402, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_c2e7fe1ecc0e4c028e12335f3d005de0 = L.popup({"maxWidth": "100%"});
var html_383100f78e024a31b4b22b5f406d3817 = $(`<div id="html_383100f78e024a31b4b22b5f406d3817" style="width: 100.0%; height: 100.0%;">Woodbine Heights Lack product: 0.2</div>`)[0];
popup_c2e7fe1ecc0e4c028e12335f3d005de0.setContent(html_383100f78e024a31b4b22b5f406d3817);
circle_marker_ceef81a9a20c4ad9b69b7a3e6e988d42.bindPopup(popup_c2e7fe1ecc0e4c028e12335f3d005de0)
;
var circle_marker_99db0c6a57cd49d89d9809aac597296a = 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.2642941191422126, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_ee8701b80a5c4d4e8c50a106453cf37f = L.popup({"maxWidth": "100%"});
var html_507ed6da574949d6b115e1a2b3a9a464 = $(`<div id="html_507ed6da574949d6b115e1a2b3a9a464" style="width: 100.0%; height: 100.0%;">Woodbine Heights Cluster lack: 0.4</div>`)[0];
popup_ee8701b80a5c4d4e8c50a106453cf37f.setContent(html_507ed6da574949d6b115e1a2b3a9a464);
circle_marker_99db0c6a57cd49d89d9809aac597296a.bindPopup(popup_ee8701b80a5c4d4e8c50a106453cf37f)
;
var circle_marker_e6f2761231dd4962ad56d36371e84b27 = 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": 2.3402139165289633, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_415a74355ad14b0e93cbb851d3d5f439 = L.popup({"maxWidth": "100%"});
var html_1082526924994fb2a8aac92deeb496af = $(`<div id="html_1082526924994fb2a8aac92deeb496af" style="width: 100.0%; height: 100.0%;">Woodbine Heights Coffee lack: 0.4</div>`)[0];
popup_415a74355ad14b0e93cbb851d3d5f439.setContent(html_1082526924994fb2a8aac92deeb496af);
circle_marker_e6f2761231dd4962ad56d36371e84b27.bindPopup(popup_415a74355ad14b0e93cbb851d3d5f439)
;
var circle_marker_0622374c513c4ec1a742d3e19fd4a694 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_32f5306a436940b7a43e5cd409f1f60f = L.popup({"maxWidth": "100%"});
var html_8900bc6b7fee476a9e514897d4961321 = $(`<div id="html_8900bc6b7fee476a9e514897d4961321" style="width: 100.0%; height: 100.0%;">St. James Town Lack product: 0.0</div>`)[0];
popup_32f5306a436940b7a43e5cd409f1f60f.setContent(html_8900bc6b7fee476a9e514897d4961321);
circle_marker_0622374c513c4ec1a742d3e19fd4a694.bindPopup(popup_32f5306a436940b7a43e5cd409f1f60f)
;
var circle_marker_b84548a9b99240fca2f1fe8626d61b96 = 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": 1.0, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_dfadd88b4da84c918f93fa32b3a242dc = L.popup({"maxWidth": "100%"});
var html_f7280ec2432541728da408833750df96 = $(`<div id="html_f7280ec2432541728da408833750df96" style="width: 100.0%; height: 100.0%;">St. James Town Cluster lack: 0.0</div>`)[0];
popup_dfadd88b4da84c918f93fa32b3a242dc.setContent(html_f7280ec2432541728da408833750df96);
circle_marker_b84548a9b99240fca2f1fe8626d61b96.bindPopup(popup_dfadd88b4da84c918f93fa32b3a242dc)
;
var circle_marker_b24d6192cf1b4b25947e301a05ae7ba8 = 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": 5.239071791722685, "stroke": true, "weight": 0}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_a8d10d38a5894fe1bf9069c5503d4cb3 = L.popup({"maxWidth": "100%"});
var html_dfb52d34d9ac4bf1be12d7add5aba97d = $(`<div id="html_dfb52d34d9ac4bf1be12d7add5aba97d" style="width: 100.0%; height: 100.0%;">St. James Town Coffee lack: 1.4</div>`)[0];
popup_a8d10d38a5894fe1bf9069c5503d4cb3.setContent(html_dfb52d34d9ac4bf1be12d7add5aba97d);
circle_marker_b24d6192cf1b4b25947e301a05ae7ba8.bindPopup(popup_a8d10d38a5894fe1bf9069c5503d4cb3)
;
var circle_marker_f401569441d2471ebf0e282d09e65cfe = 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": 2.1870363892925457, "stroke": true, "weight": 1.5}
).addTo(map_9d13ea40d46643128df5a72d0ba866a6);
var popup_d5ead21b20bf43c180cc0e66aa0ffa2e = L.popup({"maxWidth": "100%"});
var html_84664ffffda34aafb479a9e1f8765c51 = $(`<div id="html_84664ffffda34aafb479a9e1f8765c51" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Lack product: 0.4</div>`)[0];
popup_d5ead21b20bf43c180cc0e66aa0ffa2e.setContent(html_84664ffffda34aafb479a9e1f8765c51);
circle_marker_f401569441d2471ebf0e282d09e65cfe.bindPopup(popup_d5ead21b20bf43c180cc0e66aa0ffa2e)
;