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_product_bnw.html
3983 lines (1908 loc) · 214 KB
/
map_product_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_0f1870bfa7b44e95a6bb3e8f6dccebfe {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_0f1870bfa7b44e95a6bb3e8f6dccebfe" ></div>
</body>
<script>
var map_0f1870bfa7b44e95a6bb3e8f6dccebfe = L.map(
"map_0f1870bfa7b44e95a6bb3e8f6dccebfe",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_5e07fbecaeac4199b370f1a37ce95302 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var tile_layer_c9ef8db7ea9c47d1b8bf6cc76e5996ed = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var circle_marker_ceb47d2f665d451384a9c2365655be3c = 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": 1.7883717777139234, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_5f64e663144e451aa59dd931c85f48a0 = L.popup({"maxWidth": "100%"});
var html_45906964504e411188bb3e032c7abcc3 = $(`<div id="html_45906964504e411188bb3e032c7abcc3" style="width: 100.0%; height: 100.0%;">Parkwoods Cluster lack: 0.7</div>`)[0];
popup_5f64e663144e451aa59dd931c85f48a0.setContent(html_45906964504e411188bb3e032c7abcc3);
circle_marker_ceb47d2f665d451384a9c2365655be3c.bindPopup(popup_5f64e663144e451aa59dd931c85f48a0)
;
var circle_marker_f67a8e8f8cf442c4a04dc1d545f2f564 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_33395f3b69e24245a49ccc01751e1457 = L.popup({"maxWidth": "100%"});
var html_ef23a6af7f644d56aa3b7302674074d6 = $(`<div id="html_ef23a6af7f644d56aa3b7302674074d6" style="width: 100.0%; height: 100.0%;">Parkwoods Coffee lack: 0.0</div>`)[0];
popup_33395f3b69e24245a49ccc01751e1457.setContent(html_ef23a6af7f644d56aa3b7302674074d6);
circle_marker_f67a8e8f8cf442c4a04dc1d545f2f564.bindPopup(popup_33395f3b69e24245a49ccc01751e1457)
;
var circle_marker_d2fb5cf553ce4157955a5bcbf21e5e8b = 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.6474055609823852, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_3ee70a5f0aca4abe9e6d4fb502d2455f = L.popup({"maxWidth": "100%"});
var html_5871103108754935a09ab1a961dc0f8d = $(`<div id="html_5871103108754935a09ab1a961dc0f8d" style="width: 100.0%; height: 100.0%;">Victoria Village Cluster lack: 0.0</div>`)[0];
popup_3ee70a5f0aca4abe9e6d4fb502d2455f.setContent(html_5871103108754935a09ab1a961dc0f8d);
circle_marker_d2fb5cf553ce4157955a5bcbf21e5e8b.bindPopup(popup_3ee70a5f0aca4abe9e6d4fb502d2455f)
;
var circle_marker_7477e72297cb4d3c90b21e9bccb3f5b5 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_1cbcee12e74b432ab7a801ab5126f5ff = L.popup({"maxWidth": "100%"});
var html_da35c162822f42d2b067af85d6de98df = $(`<div id="html_da35c162822f42d2b067af85d6de98df" style="width: 100.0%; height: 100.0%;">Victoria Village Coffee lack: 0.0</div>`)[0];
popup_1cbcee12e74b432ab7a801ab5126f5ff.setContent(html_da35c162822f42d2b067af85d6de98df);
circle_marker_7477e72297cb4d3c90b21e9bccb3f5b5.bindPopup(popup_1cbcee12e74b432ab7a801ab5126f5ff)
;
var circle_marker_7c5d744f688e43f0851499d045de03dd = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_b76716f3ca11479b8e8f11131d3aa263 = L.popup({"maxWidth": "100%"});
var html_1d74a48b4fe14a1d93f61aacfeec5f4c = $(`<div id="html_1d74a48b4fe14a1d93f61aacfeec5f4c" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Cluster lack: 0.0</div>`)[0];
popup_b76716f3ca11479b8e8f11131d3aa263.setContent(html_1d74a48b4fe14a1d93f61aacfeec5f4c);
circle_marker_7c5d744f688e43f0851499d045de03dd.bindPopup(popup_b76716f3ca11479b8e8f11131d3aa263)
;
var circle_marker_a28765f9f7dc44c38ffbae15afe1bf1e = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_eb58a16637824db5aaf2ee9d35097cc3 = L.popup({"maxWidth": "100%"});
var html_111c2655210640e29bf002a73a854842 = $(`<div id="html_111c2655210640e29bf002a73a854842" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Coffee lack: 0.0</div>`)[0];
popup_eb58a16637824db5aaf2ee9d35097cc3.setContent(html_111c2655210640e29bf002a73a854842);
circle_marker_a28765f9f7dc44c38ffbae15afe1bf1e.bindPopup(popup_eb58a16637824db5aaf2ee9d35097cc3)
;
var circle_marker_bf6a37373aaa45458656aa3b67b8411f = 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": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_4ae9331165f145f0bd5ac1a7c96f8e31 = L.popup({"maxWidth": "100%"});
var html_f6bddc885b9f468fb78dd93f7b1522d0 = $(`<div id="html_f6bddc885b9f468fb78dd93f7b1522d0" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Cluster lack: 0.0</div>`)[0];
popup_4ae9331165f145f0bd5ac1a7c96f8e31.setContent(html_f6bddc885b9f468fb78dd93f7b1522d0);
circle_marker_bf6a37373aaa45458656aa3b67b8411f.bindPopup(popup_4ae9331165f145f0bd5ac1a7c96f8e31)
;
var circle_marker_940301d9f8f8456d934fd702647b819d = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_ede33291bdcf460c91db6b221e98230f = L.popup({"maxWidth": "100%"});
var html_e5022a9bcfc64a7cbf90ba8275dfe839 = $(`<div id="html_e5022a9bcfc64a7cbf90ba8275dfe839" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Coffee lack: 0.0</div>`)[0];
popup_ede33291bdcf460c91db6b221e98230f.setContent(html_e5022a9bcfc64a7cbf90ba8275dfe839);
circle_marker_940301d9f8f8456d934fd702647b819d.bindPopup(popup_ede33291bdcf460c91db6b221e98230f)
;
var circle_marker_5ccb67c22d3641bf82ae12628e18f75c = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_06f43ee7c84b4d72af15b03012762dfe = L.popup({"maxWidth": "100%"});
var html_d09ca903d49c4171b029c0b4b1206d27 = $(`<div id="html_d09ca903d49c4171b029c0b4b1206d27" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Cluster lack: 0.0</div>`)[0];
popup_06f43ee7c84b4d72af15b03012762dfe.setContent(html_d09ca903d49c4171b029c0b4b1206d27);
circle_marker_5ccb67c22d3641bf82ae12628e18f75c.bindPopup(popup_06f43ee7c84b4d72af15b03012762dfe)
;
var circle_marker_b22a8d737434409fa7249c62780f2d01 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_e9bd3dae9e494131b735cff12d182fd9 = L.popup({"maxWidth": "100%"});
var html_ccbc367788ae40848b123b0e097db211 = $(`<div id="html_ccbc367788ae40848b123b0e097db211" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Coffee lack: 0.0</div>`)[0];
popup_e9bd3dae9e494131b735cff12d182fd9.setContent(html_ccbc367788ae40848b123b0e097db211);
circle_marker_b22a8d737434409fa7249c62780f2d01.bindPopup(popup_e9bd3dae9e494131b735cff12d182fd9)
;
var circle_marker_d1fdc23da7954ad8837e2af3918a8634 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_e61509ec77d5425fbf768aadd50af337 = L.popup({"maxWidth": "100%"});
var html_7f1f859c7fc74f8f9feac36daf367e34 = $(`<div id="html_7f1f859c7fc74f8f9feac36daf367e34" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Cluster lack: 0.0</div>`)[0];
popup_e61509ec77d5425fbf768aadd50af337.setContent(html_7f1f859c7fc74f8f9feac36daf367e34);
circle_marker_d1fdc23da7954ad8837e2af3918a8634.bindPopup(popup_e61509ec77d5425fbf768aadd50af337)
;
var circle_marker_e579ff7810a4400f91c34aa845b8c822 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c707fad7a1014c0b9ecfbc071cae949e = L.popup({"maxWidth": "100%"});
var html_b40cd13fd3054e1ab3306dfa21d28188 = $(`<div id="html_b40cd13fd3054e1ab3306dfa21d28188" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Coffee lack: 0.0</div>`)[0];
popup_c707fad7a1014c0b9ecfbc071cae949e.setContent(html_b40cd13fd3054e1ab3306dfa21d28188);
circle_marker_e579ff7810a4400f91c34aa845b8c822.bindPopup(popup_c707fad7a1014c0b9ecfbc071cae949e)
;
var circle_marker_8ce36b324ebd4f4e8c1190a99178d73c = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_74ad1447ff594f0280365152c0dd768a = L.popup({"maxWidth": "100%"});
var html_cdefff9c30c144ff99cf889ed0bfc396 = $(`<div id="html_cdefff9c30c144ff99cf889ed0bfc396" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Cluster lack: 0.0</div>`)[0];
popup_74ad1447ff594f0280365152c0dd768a.setContent(html_cdefff9c30c144ff99cf889ed0bfc396);
circle_marker_8ce36b324ebd4f4e8c1190a99178d73c.bindPopup(popup_74ad1447ff594f0280365152c0dd768a)
;
var circle_marker_294079abb9244878b71216d7ddd03ac9 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_6e0d1517b7f2444288abae47522b11cb = L.popup({"maxWidth": "100%"});
var html_b398515a0317492a91ad1c6d93293660 = $(`<div id="html_b398515a0317492a91ad1c6d93293660" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Coffee lack: 0.0</div>`)[0];
popup_6e0d1517b7f2444288abae47522b11cb.setContent(html_b398515a0317492a91ad1c6d93293660);
circle_marker_294079abb9244878b71216d7ddd03ac9.bindPopup(popup_6e0d1517b7f2444288abae47522b11cb)
;
var circle_marker_33434136c2ac43dea90bd1327d48084d = 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": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_d56b47815b114b08a8cd9dc61c4d3ad1 = L.popup({"maxWidth": "100%"});
var html_e7bb6749d4dc4c58b5d5fd428cf2f872 = $(`<div id="html_e7bb6749d4dc4c58b5d5fd428cf2f872" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_d56b47815b114b08a8cd9dc61c4d3ad1.setContent(html_e7bb6749d4dc4c58b5d5fd428cf2f872);
circle_marker_33434136c2ac43dea90bd1327d48084d.bindPopup(popup_d56b47815b114b08a8cd9dc61c4d3ad1)
;
var circle_marker_4c04ba131d1b43479e7ddc4e6a1e9703 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_ecbd8c4fbd7b45669dbf2e064769827d = L.popup({"maxWidth": "100%"});
var html_5bbcbe305eff436982737b020ffe698a = $(`<div id="html_5bbcbe305eff436982737b020ffe698a" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.0</div>`)[0];
popup_ecbd8c4fbd7b45669dbf2e064769827d.setContent(html_5bbcbe305eff436982737b020ffe698a);
circle_marker_4c04ba131d1b43479e7ddc4e6a1e9703.bindPopup(popup_ecbd8c4fbd7b45669dbf2e064769827d)
;
var circle_marker_e9511ef73a884d6193de482a98a86d53 = 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": 7.516322869303471, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_ec20b646b47540a5b7285f0b29610f84 = L.popup({"maxWidth": "100%"});
var html_c26bce3010f143e49c63847e36660da2 = $(`<div id="html_c26bce3010f143e49c63847e36660da2" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Cluster lack: 3.8</div>`)[0];
popup_ec20b646b47540a5b7285f0b29610f84.setContent(html_c26bce3010f143e49c63847e36660da2);
circle_marker_e9511ef73a884d6193de482a98a86d53.bindPopup(popup_ec20b646b47540a5b7285f0b29610f84)
;
var circle_marker_59e61aae57b9456bb95a97aceaefdf74 = 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.8169004492859528, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c969d10070e04474a93a1042f609e1f4 = L.popup({"maxWidth": "100%"});
var html_4e4b06922aa94c89ab4f5a9464767263 = $(`<div id="html_4e4b06922aa94c89ab4f5a9464767263" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Coffee lack: 0.7</div>`)[0];
popup_c969d10070e04474a93a1042f609e1f4.setContent(html_4e4b06922aa94c89ab4f5a9464767263);
circle_marker_59e61aae57b9456bb95a97aceaefdf74.bindPopup(popup_c969d10070e04474a93a1042f609e1f4)
;
var circle_marker_5a68d83c6f38481ab39ea1891ec0fe6a = 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": 2.399497103415022, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_2162e94a9d5c47e4a7125bd124111edc = L.popup({"maxWidth": "100%"});
var html_7941c7e8deb2425299baf9571d0d561e = $(`<div id="html_7941c7e8deb2425299baf9571d0d561e" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Cluster lack: 1.0</div>`)[0];
popup_2162e94a9d5c47e4a7125bd124111edc.setContent(html_7941c7e8deb2425299baf9571d0d561e);
circle_marker_5a68d83c6f38481ab39ea1891ec0fe6a.bindPopup(popup_2162e94a9d5c47e4a7125bd124111edc)
;
var circle_marker_fef4366fef554fcab198ac9e44552140 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_89d5ba12a76e40d98acbd4a7ca41615c = L.popup({"maxWidth": "100%"});
var html_8b0637dad98b4ff89efeeef42a08bc40 = $(`<div id="html_8b0637dad98b4ff89efeeef42a08bc40" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Coffee lack: 0.0</div>`)[0];
popup_89d5ba12a76e40d98acbd4a7ca41615c.setContent(html_8b0637dad98b4ff89efeeef42a08bc40);
circle_marker_fef4366fef554fcab198ac9e44552140.bindPopup(popup_89d5ba12a76e40d98acbd4a7ca41615c)
;
var circle_marker_7b84d7cafefb448daf0472b9137c38b6 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_98a8df5c3b6747fcaa2f902024e6b94b = L.popup({"maxWidth": "100%"});
var html_7fdda38fc8db44c2a38bdcf111d8d8aa = $(`<div id="html_7fdda38fc8db44c2a38bdcf111d8d8aa" style="width: 100.0%; height: 100.0%;">Glencairn Cluster lack: 0.0</div>`)[0];
popup_98a8df5c3b6747fcaa2f902024e6b94b.setContent(html_7fdda38fc8db44c2a38bdcf111d8d8aa);
circle_marker_7b84d7cafefb448daf0472b9137c38b6.bindPopup(popup_98a8df5c3b6747fcaa2f902024e6b94b)
;
var circle_marker_7576ca29fe5648b88033ec98a7e0df04 = 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.2691468064673044, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_a4bcf68854df4366ae9f7060bf773135 = L.popup({"maxWidth": "100%"});
var html_e981f5f711c54701b9611b1953e1dac9 = $(`<div id="html_e981f5f711c54701b9611b1953e1dac9" style="width: 100.0%; height: 100.0%;">Glencairn Coffee lack: 0.4</div>`)[0];
popup_a4bcf68854df4366ae9f7060bf773135.setContent(html_e981f5f711c54701b9611b1953e1dac9);
circle_marker_7576ca29fe5648b88033ec98a7e0df04.bindPopup(popup_a4bcf68854df4366ae9f7060bf773135)
;
var circle_marker_46d2d2a4ea3e4c2cb836f3f37447f53e = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_0981e215b8044496831670607db293cd = L.popup({"maxWidth": "100%"});
var html_d33b51c445c54f3f856f205556444e1a = $(`<div id="html_d33b51c445c54f3f856f205556444e1a" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Cluster lack: 0.0</div>`)[0];
popup_0981e215b8044496831670607db293cd.setContent(html_d33b51c445c54f3f856f205556444e1a);
circle_marker_46d2d2a4ea3e4c2cb836f3f37447f53e.bindPopup(popup_0981e215b8044496831670607db293cd)
;
var circle_marker_5d475788644c4018a279f37cd217a65e = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c3f9a301c83f47999460fc4c2d0aca91 = L.popup({"maxWidth": "100%"});
var html_d7f1707a11aa4f39bf15b28bd52c0567 = $(`<div id="html_d7f1707a11aa4f39bf15b28bd52c0567" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Coffee lack: 0.0</div>`)[0];
popup_c3f9a301c83f47999460fc4c2d0aca91.setContent(html_d7f1707a11aa4f39bf15b28bd52c0567);
circle_marker_5d475788644c4018a279f37cd217a65e.bindPopup(popup_c3f9a301c83f47999460fc4c2d0aca91)
;
var circle_marker_884b9583e3374f698644c0d3f20bb0ea = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_0fb8e4ef3d924288b8d8f451231a4e55 = L.popup({"maxWidth": "100%"});
var html_71931a9ce0d241e78dac300253e85fa5 = $(`<div id="html_71931a9ce0d241e78dac300253e85fa5" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Cluster lack: 0.0</div>`)[0];
popup_0fb8e4ef3d924288b8d8f451231a4e55.setContent(html_71931a9ce0d241e78dac300253e85fa5);
circle_marker_884b9583e3374f698644c0d3f20bb0ea.bindPopup(popup_0fb8e4ef3d924288b8d8f451231a4e55)
;
var circle_marker_23fac3a6f1474e02ad720c77bcc1fec6 = 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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_f33e00655c7e4dc0b4bf9224d91c92c1 = L.popup({"maxWidth": "100%"});
var html_7f81613b15b1432e984395eadc8263a9 = $(`<div id="html_7f81613b15b1432e984395eadc8263a9" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Coffee lack: 0.0</div>`)[0];
popup_f33e00655c7e4dc0b4bf9224d91c92c1.setContent(html_7f81613b15b1432e984395eadc8263a9);
circle_marker_23fac3a6f1474e02ad720c77bcc1fec6.bindPopup(popup_f33e00655c7e4dc0b4bf9224d91c92c1)
;
var circle_marker_fde3cdb0742740d6b9c9c0b15d1e4555 = 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.6, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_42da355b861b410482cf60dbfb4bac05 = L.popup({"maxWidth": "100%"});
var html_9874a452a4244dd9ae60664256173077 = $(`<div id="html_9874a452a4244dd9ae60664256173077" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_42da355b861b410482cf60dbfb4bac05.setContent(html_9874a452a4244dd9ae60664256173077);
circle_marker_fde3cdb0742740d6b9c9c0b15d1e4555.bindPopup(popup_42da355b861b410482cf60dbfb4bac05)
;
var circle_marker_7a2fb5c0f5a34825b62c8ed35da2e194 = 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.304403123493171, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_82bf7704b990435b9a459ba459ad6596 = L.popup({"maxWidth": "100%"});
var html_d2afc746214e47c69fa45c7c22632c83 = $(`<div id="html_d2afc746214e47c69fa45c7c22632c83" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.9</div>`)[0];
popup_82bf7704b990435b9a459ba459ad6596.setContent(html_d2afc746214e47c69fa45c7c22632c83);
circle_marker_7a2fb5c0f5a34825b62c8ed35da2e194.bindPopup(popup_82bf7704b990435b9a459ba459ad6596)
;
var circle_marker_8b40af5596304bfa8ae292a9ac8a19d5 = 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": 1.3585764714853275, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_28fed84beeab4c40b6993554c15495f6 = L.popup({"maxWidth": "100%"});
var html_180c4d7e459c4098a06526c529f5a4bd = $(`<div id="html_180c4d7e459c4098a06526c529f5a4bd" style="width: 100.0%; height: 100.0%;">Woodbine Heights Cluster lack: 0.4</div>`)[0];
popup_28fed84beeab4c40b6993554c15495f6.setContent(html_180c4d7e459c4098a06526c529f5a4bd);
circle_marker_8b40af5596304bfa8ae292a9ac8a19d5.bindPopup(popup_28fed84beeab4c40b6993554c15495f6)
;
var circle_marker_062f468212e64829a71f41ed49c46ded = 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.404128349917378, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_38a6a57b423d4cc69fc763fa2755b622 = L.popup({"maxWidth": "100%"});
var html_37b28124030b44549dc0f12b3b09adc6 = $(`<div id="html_37b28124030b44549dc0f12b3b09adc6" style="width: 100.0%; height: 100.0%;">Woodbine Heights Coffee lack: 0.4</div>`)[0];
popup_38a6a57b423d4cc69fc763fa2755b622.setContent(html_37b28124030b44549dc0f12b3b09adc6);
circle_marker_062f468212e64829a71f41ed49c46ded.bindPopup(popup_38a6a57b423d4cc69fc763fa2755b622)
;
var circle_marker_76e5041f6f0b40e89a2980a1c46c6787 = 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": 0.6, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_1db718f836f945f699a8e430a9c31a30 = L.popup({"maxWidth": "100%"});
var html_e634d9106aa7461bafae77fab1780a0b = $(`<div id="html_e634d9106aa7461bafae77fab1780a0b" style="width: 100.0%; height: 100.0%;">St. James Town Cluster lack: 0.0</div>`)[0];
popup_1db718f836f945f699a8e430a9c31a30.setContent(html_e634d9106aa7461bafae77fab1780a0b);
circle_marker_76e5041f6f0b40e89a2980a1c46c6787.bindPopup(popup_1db718f836f945f699a8e430a9c31a30)
;
var circle_marker_ef97d736cb8d4374964ff75530784fe0 = 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.143443075033611, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c254ffaf22ce486a9143bf2a4d591cd7 = L.popup({"maxWidth": "100%"});
var html_a3e1eb683986409ca7e3126abb9463e8 = $(`<div id="html_a3e1eb683986409ca7e3126abb9463e8" style="width: 100.0%; height: 100.0%;">St. James Town Coffee lack: 1.4</div>`)[0];
popup_c254ffaf22ce486a9143bf2a4d591cd7.setContent(html_a3e1eb683986409ca7e3126abb9463e8);
circle_marker_ef97d736cb8d4374964ff75530784fe0.bindPopup(popup_c254ffaf22ce486a9143bf2a4d591cd7)
;
var circle_marker_ab7ab7100f854e84b2613f411fdebc76 = L.circleMarker(
[43.6937813, -79.42819140000002],
{"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.186035666625403, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_814713dcfad14cee8405dd6e62b0750f = L.popup({"maxWidth": "100%"});
var html_6cc9996e34e24df7968a83eacc3b98c2 = $(`<div id="html_6cc9996e34e24df7968a83eacc3b98c2" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Cluster lack: 1.4</div>`)[0];
popup_814713dcfad14cee8405dd6e62b0750f.setContent(html_6cc9996e34e24df7968a83eacc3b98c2);
circle_marker_ab7ab7100f854e84b2613f411fdebc76.bindPopup(popup_814713dcfad14cee8405dd6e62b0750f)
;
var circle_marker_dc34e29a88ae4585bb1cdf91424902b6 = L.circleMarker(
[43.6937813, -79.42819140000002],
{"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.0957392185193138, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c8b2463939ee4180b01ca11f7d93c436 = L.popup({"maxWidth": "100%"});
var html_d4d6b0aa577049c681e6b695f18d5406 = $(`<div id="html_d4d6b0aa577049c681e6b695f18d5406" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Coffee lack: 0.3</div>`)[0];
popup_c8b2463939ee4180b01ca11f7d93c436.setContent(html_d4d6b0aa577049c681e6b695f18d5406);
circle_marker_dc34e29a88ae4585bb1cdf91424902b6.bindPopup(popup_c8b2463939ee4180b01ca11f7d93c436)
;
var circle_marker_cd2bd0e503c04cb8aee11dc3fe52efc7 = L.circleMarker(
[43.6435152, -79.57720079999999],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_68bcf4d3cdde41848254ad813d3ffc7a = L.popup({"maxWidth": "100%"});
var html_a7ced47f3d484851a3d05eed6319978b = $(`<div id="html_a7ced47f3d484851a3d05eed6319978b" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Cluster lack: 0.0</div>`)[0];
popup_68bcf4d3cdde41848254ad813d3ffc7a.setContent(html_a7ced47f3d484851a3d05eed6319978b);
circle_marker_cd2bd0e503c04cb8aee11dc3fe52efc7.bindPopup(popup_68bcf4d3cdde41848254ad813d3ffc7a)
;
var circle_marker_d1bf9c5992b94cc38aa878b29c2f7436 = L.circleMarker(
[43.6435152, -79.57720079999999],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_c270347f291644979833942bbaf2eb0b = L.popup({"maxWidth": "100%"});
var html_74c14583770c47f28a130251fe725680 = $(`<div id="html_74c14583770c47f28a130251fe725680" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Coffee lack: 0.0</div>`)[0];
popup_c270347f291644979833942bbaf2eb0b.setContent(html_74c14583770c47f28a130251fe725680);
circle_marker_d1bf9c5992b94cc38aa878b29c2f7436.bindPopup(popup_c270347f291644979833942bbaf2eb0b)
;
var circle_marker_691bc6bd06fa494faf9540c448f1ec9d = L.circleMarker(
[43.7635726, -79.1887115],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_9b11fbfba7bb4b88b678e736273fb907 = L.popup({"maxWidth": "100%"});
var html_76d77da2c6ec4c4ab871e80ae0eaba7c = $(`<div id="html_76d77da2c6ec4c4ab871e80ae0eaba7c" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Cluster lack: 0.0</div>`)[0];
popup_9b11fbfba7bb4b88b678e736273fb907.setContent(html_76d77da2c6ec4c4ab871e80ae0eaba7c);
circle_marker_691bc6bd06fa494faf9540c448f1ec9d.bindPopup(popup_9b11fbfba7bb4b88b678e736273fb907)
;
var circle_marker_9130f255f4cd4938a31e2bd2aac81059 = L.circleMarker(
[43.7635726, -79.1887115],
{"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.4706811107277282, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_1b9bd01b5bb0431da182050d9dab9d0b = L.popup({"maxWidth": "100%"});
var html_05a57ab2889048378ae924f188d18bbb = $(`<div id="html_05a57ab2889048378ae924f188d18bbb" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Coffee lack: 0.5</div>`)[0];
popup_1b9bd01b5bb0431da182050d9dab9d0b.setContent(html_05a57ab2889048378ae924f188d18bbb);
circle_marker_9130f255f4cd4938a31e2bd2aac81059.bindPopup(popup_1b9bd01b5bb0431da182050d9dab9d0b)
;
var circle_marker_8eee0458d0ed4b3da90118decfdc2dc8 = L.circleMarker(
[43.67635739999999, -79.2930312],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_cfa8e1d82b394bbcbbdeb0060361cf9f = L.popup({"maxWidth": "100%"});
var html_5133b146e4ae4df48378634583d4d09b = $(`<div id="html_5133b146e4ae4df48378634583d4d09b" style="width: 100.0%; height: 100.0%;">The Beaches Cluster lack: 0.0</div>`)[0];
popup_cfa8e1d82b394bbcbbdeb0060361cf9f.setContent(html_5133b146e4ae4df48378634583d4d09b);
circle_marker_8eee0458d0ed4b3da90118decfdc2dc8.bindPopup(popup_cfa8e1d82b394bbcbbdeb0060361cf9f)
;
var circle_marker_6173bbc0da0c4afc820e621abf2684d2 = L.circleMarker(
[43.67635739999999, -79.2930312],
{"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.2703061733435916, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_2674278084bf42188fe82020594922b9 = L.popup({"maxWidth": "100%"});
var html_8e293bfbfeb748fc9c5987ce60356fd3 = $(`<div id="html_8e293bfbfeb748fc9c5987ce60356fd3" style="width: 100.0%; height: 100.0%;">The Beaches Coffee lack: 0.4</div>`)[0];
popup_2674278084bf42188fe82020594922b9.setContent(html_8e293bfbfeb748fc9c5987ce60356fd3);
circle_marker_6173bbc0da0c4afc820e621abf2684d2.bindPopup(popup_2674278084bf42188fe82020594922b9)
;
var circle_marker_04f615b0732d44fcae4310f3848d2be9 = L.circleMarker(
[43.644770799999996, -79.3733064],
{"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": 10.705856777409856, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_68480454ae4b47abb453b99e5e69495c = L.popup({"maxWidth": "100%"});
var html_59cc38e20eee4e5da64de8c529bde2f6 = $(`<div id="html_59cc38e20eee4e5da64de8c529bde2f6" style="width: 100.0%; height: 100.0%;">Berczy Park Cluster lack: 5.6</div>`)[0];
popup_68480454ae4b47abb453b99e5e69495c.setContent(html_59cc38e20eee4e5da64de8c529bde2f6);
circle_marker_04f615b0732d44fcae4310f3848d2be9.bindPopup(popup_68480454ae4b47abb453b99e5e69495c)
;
var circle_marker_090eb221317b4f3b9103bd6b952e5905 = L.circleMarker(
[43.644770799999996, -79.3733064],
{"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.7227851356628636, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_dc1b42c600f54dd3b35aa6ab28d9a0fe = L.popup({"maxWidth": "100%"});
var html_71f4bb442da14ee4bc9a8d0689cad2e2 = $(`<div id="html_71f4bb442da14ee4bc9a8d0689cad2e2" style="width: 100.0%; height: 100.0%;">Berczy Park Coffee lack: 1.7</div>`)[0];
popup_dc1b42c600f54dd3b35aa6ab28d9a0fe.setContent(html_71f4bb442da14ee4bc9a8d0689cad2e2);
circle_marker_090eb221317b4f3b9103bd6b952e5905.bindPopup(popup_dc1b42c600f54dd3b35aa6ab28d9a0fe)
;
var circle_marker_e32a3d6bc03247d0bc2393658182fc0a = L.circleMarker(
[43.6890256, -79.453512],
{"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.9998639469957333, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_75025d0302c04735b79792551162589b = L.popup({"maxWidth": "100%"});
var html_bcc1b1c2522f4b1e85114a50c31dc890 = $(`<div id="html_bcc1b1c2522f4b1e85114a50c31dc890" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Cluster lack: 0.2</div>`)[0];
popup_75025d0302c04735b79792551162589b.setContent(html_bcc1b1c2522f4b1e85114a50c31dc890);
circle_marker_e32a3d6bc03247d0bc2393658182fc0a.bindPopup(popup_75025d0302c04735b79792551162589b)
;
var circle_marker_c9b6207b26fb413982c8b57b1bdf6176 = L.circleMarker(
[43.6890256, -79.453512],
{"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.8613339591182847, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_4b8b0481fe2d4095bd95482e76d8284a = L.popup({"maxWidth": "100%"});
var html_6fa102fa081141058c3f29a7857c9c43 = $(`<div id="html_6fa102fa081141058c3f29a7857c9c43" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Coffee lack: 0.1</div>`)[0];
popup_4b8b0481fe2d4095bd95482e76d8284a.setContent(html_6fa102fa081141058c3f29a7857c9c43);
circle_marker_c9b6207b26fb413982c8b57b1bdf6176.bindPopup(popup_4b8b0481fe2d4095bd95482e76d8284a)
;
var circle_marker_c46b93c52b654ea79ae5a3b4470ca1fb = L.circleMarker(
[43.7709921, -79.21691740000001],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_79280d6374ba48f39a5f4dd25287d556 = L.popup({"maxWidth": "100%"});
var html_8c15fc9272ad464eba58b53d2402706c = $(`<div id="html_8c15fc9272ad464eba58b53d2402706c" style="width: 100.0%; height: 100.0%;">Woburn Cluster lack: 0.0</div>`)[0];
popup_79280d6374ba48f39a5f4dd25287d556.setContent(html_8c15fc9272ad464eba58b53d2402706c);
circle_marker_c46b93c52b654ea79ae5a3b4470ca1fb.bindPopup(popup_79280d6374ba48f39a5f4dd25287d556)
;
var circle_marker_983f9139e83a4a6f949c20d67fdd77e9 = L.circleMarker(
[43.7709921, -79.21691740000001],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_e018343d6e744d6f82f1ac50e476cc35 = L.popup({"maxWidth": "100%"});
var html_2992ddf556774ec280ce92db0ddd7b1f = $(`<div id="html_2992ddf556774ec280ce92db0ddd7b1f" style="width: 100.0%; height: 100.0%;">Woburn Coffee lack: 0.0</div>`)[0];
popup_e018343d6e744d6f82f1ac50e476cc35.setContent(html_2992ddf556774ec280ce92db0ddd7b1f);
circle_marker_983f9139e83a4a6f949c20d67fdd77e9.bindPopup(popup_e018343d6e744d6f82f1ac50e476cc35)
;
var circle_marker_3bf60e92b31942b4a85b352a09e395de = L.circleMarker(
[43.7090604, -79.3634517],
{"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.2134456449849895, "stroke": true, "weight": 1.5}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_0f5c6c811edb417facb1583e3b9943c6 = L.popup({"maxWidth": "100%"});
var html_1e122bb1d05a495fadbecf3a3b53effb = $(`<div id="html_1e122bb1d05a495fadbecf3a3b53effb" style="width: 100.0%; height: 100.0%;">Leaside Cluster lack: 0.9</div>`)[0];
popup_0f5c6c811edb417facb1583e3b9943c6.setContent(html_1e122bb1d05a495fadbecf3a3b53effb);
circle_marker_3bf60e92b31942b4a85b352a09e395de.bindPopup(popup_0f5c6c811edb417facb1583e3b9943c6)
;
var circle_marker_4dbc3ecdade3444d8141092f7c946f61 = L.circleMarker(
[43.7090604, -79.3634517],
{"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.8218253610631354, "stroke": true, "weight": 0}
).addTo(map_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_9842cf357d6540e8aeab4ebf138037ab = L.popup({"maxWidth": "100%"});
var html_058c16cd40b94f3c99183633d46a7b67 = $(`<div id="html_058c16cd40b94f3c99183633d46a7b67" style="width: 100.0%; height: 100.0%;">Leaside Coffee lack: 1.8</div>`)[0];
popup_9842cf357d6540e8aeab4ebf138037ab.setContent(html_058c16cd40b94f3c99183633d46a7b67);
circle_marker_4dbc3ecdade3444d8141092f7c946f61.bindPopup(popup_9842cf357d6540e8aeab4ebf138037ab)
;
var circle_marker_56a2ec2149134c858aba99deef64b132 = L.circleMarker(
[43.6579524, -79.3873826],
{"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_0f1870bfa7b44e95a6bb3e8f6dccebfe);
var popup_2bb09d1a28c84a57b146b9c53864f62c = L.popup({"maxWidth": "100%"});
var html_f87c06e495c149ceaf114733076874d6 = $(`<div id="html_f87c06e495c149ceaf114733076874d6" style="width: 100.0%; height: 100.0%;">Central Bay Street Cluster lack: 0.0</div>`)[0];
popup_2bb09d1a28c84a57b146b9c53864f62c.setContent(html_f87c06e495c149ceaf114733076874d6);
circle_marker_56a2ec2149134c858aba99deef64b132.bindPopup(popup_2bb09d1a28c84a57b146b9c53864f62c)
;