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_combined__bnw.html
3983 lines (1908 loc) · 214 KB
/
map_combined__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_19dd0a1123714ec685fa94d3738c80e2 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_19dd0a1123714ec685fa94d3738c80e2" ></div>
</body>
<script>
var map_19dd0a1123714ec685fa94d3738c80e2 = L.map(
"map_19dd0a1123714ec685fa94d3738c80e2",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_3251f162957c464daf1ad882af08d0e2 = 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_19dd0a1123714ec685fa94d3738c80e2);
var tile_layer_be05d59f5752478e90c4bd5f53fdd78c = 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_19dd0a1123714ec685fa94d3738c80e2);
var circle_marker_6ea2a439bb154d358644f6948ce79e61 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_d02ba43b2e57463ba4edaf70ae73c7c4 = L.popup({"maxWidth": "100%"});
var html_8d82263634d644b5a9c1ff92218a4e7e = $(`<div id="html_8d82263634d644b5a9c1ff92218a4e7e" style="width: 100.0%; height: 100.0%;">Parkwoods Cluster lack: 0.7</div>`)[0];
popup_d02ba43b2e57463ba4edaf70ae73c7c4.setContent(html_8d82263634d644b5a9c1ff92218a4e7e);
circle_marker_6ea2a439bb154d358644f6948ce79e61.bindPopup(popup_d02ba43b2e57463ba4edaf70ae73c7c4)
;
var circle_marker_2142a884a3ba4bcb9cf12a1f03273840 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_50c4f6e0a94440538e10c6ac6494319c = L.popup({"maxWidth": "100%"});
var html_a3bf922c270c4b7987e76d3e383813a3 = $(`<div id="html_a3bf922c270c4b7987e76d3e383813a3" style="width: 100.0%; height: 100.0%;">Parkwoods Coffee lack: 0.0</div>`)[0];
popup_50c4f6e0a94440538e10c6ac6494319c.setContent(html_a3bf922c270c4b7987e76d3e383813a3);
circle_marker_2142a884a3ba4bcb9cf12a1f03273840.bindPopup(popup_50c4f6e0a94440538e10c6ac6494319c)
;
var circle_marker_4b44fa6cf6ec43b1afebdf4eead75b9d = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_574cf1c026bc40b7b42b8831f5c9c42e = L.popup({"maxWidth": "100%"});
var html_b016548aae944842b82e06acfcaa270b = $(`<div id="html_b016548aae944842b82e06acfcaa270b" style="width: 100.0%; height: 100.0%;">Victoria Village Cluster lack: 0.0</div>`)[0];
popup_574cf1c026bc40b7b42b8831f5c9c42e.setContent(html_b016548aae944842b82e06acfcaa270b);
circle_marker_4b44fa6cf6ec43b1afebdf4eead75b9d.bindPopup(popup_574cf1c026bc40b7b42b8831f5c9c42e)
;
var circle_marker_710b8dc397634e038cbc6930659f250f = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_e62e74f040b24b7d87f9f25e79a62636 = L.popup({"maxWidth": "100%"});
var html_e507e9a406ac41a7abf355e98c22ce36 = $(`<div id="html_e507e9a406ac41a7abf355e98c22ce36" style="width: 100.0%; height: 100.0%;">Victoria Village Coffee lack: 0.0</div>`)[0];
popup_e62e74f040b24b7d87f9f25e79a62636.setContent(html_e507e9a406ac41a7abf355e98c22ce36);
circle_marker_710b8dc397634e038cbc6930659f250f.bindPopup(popup_e62e74f040b24b7d87f9f25e79a62636)
;
var circle_marker_64f57f98f3944a5ca22147457803c1f7 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_59133f21bc4e4e2c92a1956452607ebd = L.popup({"maxWidth": "100%"});
var html_e25c697063ab4906913087ebdc0e3050 = $(`<div id="html_e25c697063ab4906913087ebdc0e3050" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Cluster lack: 0.0</div>`)[0];
popup_59133f21bc4e4e2c92a1956452607ebd.setContent(html_e25c697063ab4906913087ebdc0e3050);
circle_marker_64f57f98f3944a5ca22147457803c1f7.bindPopup(popup_59133f21bc4e4e2c92a1956452607ebd)
;
var circle_marker_a05cf887873c40c8b7ac935012826e14 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_a5649c7ff68c41dda5eb3321589a7d24 = L.popup({"maxWidth": "100%"});
var html_bf6c91b90c2243919c9fbb57b114b770 = $(`<div id="html_bf6c91b90c2243919c9fbb57b114b770" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Coffee lack: 0.0</div>`)[0];
popup_a5649c7ff68c41dda5eb3321589a7d24.setContent(html_bf6c91b90c2243919c9fbb57b114b770);
circle_marker_a05cf887873c40c8b7ac935012826e14.bindPopup(popup_a5649c7ff68c41dda5eb3321589a7d24)
;
var circle_marker_c945aca60bae48d78a992ba2503be10b = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_0e04275dfb764c8f9335e02f8cdadc56 = L.popup({"maxWidth": "100%"});
var html_3e2273b6540440f8883fea105e485f14 = $(`<div id="html_3e2273b6540440f8883fea105e485f14" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Cluster lack: 0.0</div>`)[0];
popup_0e04275dfb764c8f9335e02f8cdadc56.setContent(html_3e2273b6540440f8883fea105e485f14);
circle_marker_c945aca60bae48d78a992ba2503be10b.bindPopup(popup_0e04275dfb764c8f9335e02f8cdadc56)
;
var circle_marker_37890042f0354068b8e8e35b88a1ab1a = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_7e407893cee340cd84fe9993f42f13a3 = L.popup({"maxWidth": "100%"});
var html_b705d345e406482392afb234a06955a6 = $(`<div id="html_b705d345e406482392afb234a06955a6" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Coffee lack: 0.0</div>`)[0];
popup_7e407893cee340cd84fe9993f42f13a3.setContent(html_b705d345e406482392afb234a06955a6);
circle_marker_37890042f0354068b8e8e35b88a1ab1a.bindPopup(popup_7e407893cee340cd84fe9993f42f13a3)
;
var circle_marker_1d60a691fec74a95b35d230a4987664b = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_17a19784f6264b65b26efa457cbff09b = L.popup({"maxWidth": "100%"});
var html_9522a8d425424b3995f660f48c9d9577 = $(`<div id="html_9522a8d425424b3995f660f48c9d9577" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Cluster lack: 0.0</div>`)[0];
popup_17a19784f6264b65b26efa457cbff09b.setContent(html_9522a8d425424b3995f660f48c9d9577);
circle_marker_1d60a691fec74a95b35d230a4987664b.bindPopup(popup_17a19784f6264b65b26efa457cbff09b)
;
var circle_marker_8fdb22fa7ae84ace8eae8e30299f57ff = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_1cb9dc1875394d31a5ad821e345268ed = L.popup({"maxWidth": "100%"});
var html_0e3aca5bee224d41acb3abef42f1d7b3 = $(`<div id="html_0e3aca5bee224d41acb3abef42f1d7b3" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Coffee lack: 0.0</div>`)[0];
popup_1cb9dc1875394d31a5ad821e345268ed.setContent(html_0e3aca5bee224d41acb3abef42f1d7b3);
circle_marker_8fdb22fa7ae84ace8eae8e30299f57ff.bindPopup(popup_1cb9dc1875394d31a5ad821e345268ed)
;
var circle_marker_7ea8bd8592254ce499072d9e5f8f93fe = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_22ad8827a3ff41159aea9a7ffef4ec00 = L.popup({"maxWidth": "100%"});
var html_a6f0c59c58284f66bf5e58d0c988cb29 = $(`<div id="html_a6f0c59c58284f66bf5e58d0c988cb29" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Cluster lack: 0.0</div>`)[0];
popup_22ad8827a3ff41159aea9a7ffef4ec00.setContent(html_a6f0c59c58284f66bf5e58d0c988cb29);
circle_marker_7ea8bd8592254ce499072d9e5f8f93fe.bindPopup(popup_22ad8827a3ff41159aea9a7ffef4ec00)
;
var circle_marker_c7900293eb8a4cebac076c30d84294c9 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_bfa1041f29c64287b080bba1440acb22 = L.popup({"maxWidth": "100%"});
var html_a60e1d34d31b4b928ec3504902aae97a = $(`<div id="html_a60e1d34d31b4b928ec3504902aae97a" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Coffee lack: 0.0</div>`)[0];
popup_bfa1041f29c64287b080bba1440acb22.setContent(html_a60e1d34d31b4b928ec3504902aae97a);
circle_marker_c7900293eb8a4cebac076c30d84294c9.bindPopup(popup_bfa1041f29c64287b080bba1440acb22)
;
var circle_marker_2e1f0af569a84273b467eb8cbd690610 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_87f9ae6b748c4293851918cc1381d27f = L.popup({"maxWidth": "100%"});
var html_5d3cd1b820804c189f8529b76928ed11 = $(`<div id="html_5d3cd1b820804c189f8529b76928ed11" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Cluster lack: 0.0</div>`)[0];
popup_87f9ae6b748c4293851918cc1381d27f.setContent(html_5d3cd1b820804c189f8529b76928ed11);
circle_marker_2e1f0af569a84273b467eb8cbd690610.bindPopup(popup_87f9ae6b748c4293851918cc1381d27f)
;
var circle_marker_22068f98ae3941f08854b349b81539c8 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_67dde8ba73e040c5ba5029c1b0eb36be = L.popup({"maxWidth": "100%"});
var html_33eee4c4ff0f4a94b21a978aa8cee6cc = $(`<div id="html_33eee4c4ff0f4a94b21a978aa8cee6cc" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Coffee lack: 0.0</div>`)[0];
popup_67dde8ba73e040c5ba5029c1b0eb36be.setContent(html_33eee4c4ff0f4a94b21a978aa8cee6cc);
circle_marker_22068f98ae3941f08854b349b81539c8.bindPopup(popup_67dde8ba73e040c5ba5029c1b0eb36be)
;
var circle_marker_a587c0dea0c2478f82aed055562a1dc0 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_9e25e8ece25c4d36a0c129e002d083f4 = L.popup({"maxWidth": "100%"});
var html_60b9f36499dc4dc0949106d2fccf2ea8 = $(`<div id="html_60b9f36499dc4dc0949106d2fccf2ea8" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_9e25e8ece25c4d36a0c129e002d083f4.setContent(html_60b9f36499dc4dc0949106d2fccf2ea8);
circle_marker_a587c0dea0c2478f82aed055562a1dc0.bindPopup(popup_9e25e8ece25c4d36a0c129e002d083f4)
;
var circle_marker_fd0f86dac72d497b9c41e01b222b7859 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_2fcdcf60b5df41bb803840a43e154dd2 = L.popup({"maxWidth": "100%"});
var html_3bd40fdc083f4d029737ae0dfd1a3584 = $(`<div id="html_3bd40fdc083f4d029737ae0dfd1a3584" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.0</div>`)[0];
popup_2fcdcf60b5df41bb803840a43e154dd2.setContent(html_3bd40fdc083f4d029737ae0dfd1a3584);
circle_marker_fd0f86dac72d497b9c41e01b222b7859.bindPopup(popup_2fcdcf60b5df41bb803840a43e154dd2)
;
var circle_marker_4964cfe17158489b80fc4eb15a3b6704 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_1af7756bc0a64c1d9eec92c4757829c5 = L.popup({"maxWidth": "100%"});
var html_70e474411b8340cea883d907aa200d54 = $(`<div id="html_70e474411b8340cea883d907aa200d54" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Cluster lack: 3.8</div>`)[0];
popup_1af7756bc0a64c1d9eec92c4757829c5.setContent(html_70e474411b8340cea883d907aa200d54);
circle_marker_4964cfe17158489b80fc4eb15a3b6704.bindPopup(popup_1af7756bc0a64c1d9eec92c4757829c5)
;
var circle_marker_53ef93ae782947db972cfdcef17bfcde = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_19cfbf249a2a488d83d69d6912086ff3 = L.popup({"maxWidth": "100%"});
var html_644d3e79cdb84f05a982355a51a2d4b7 = $(`<div id="html_644d3e79cdb84f05a982355a51a2d4b7" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Coffee lack: 0.7</div>`)[0];
popup_19cfbf249a2a488d83d69d6912086ff3.setContent(html_644d3e79cdb84f05a982355a51a2d4b7);
circle_marker_53ef93ae782947db972cfdcef17bfcde.bindPopup(popup_19cfbf249a2a488d83d69d6912086ff3)
;
var circle_marker_bf1d4c1d0a21488a8575186c8be2544c = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_5ac7426136114b2e830fab2d52abbf39 = L.popup({"maxWidth": "100%"});
var html_20382ebc67784597a4ea7d947d24ab29 = $(`<div id="html_20382ebc67784597a4ea7d947d24ab29" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Cluster lack: 1.0</div>`)[0];
popup_5ac7426136114b2e830fab2d52abbf39.setContent(html_20382ebc67784597a4ea7d947d24ab29);
circle_marker_bf1d4c1d0a21488a8575186c8be2544c.bindPopup(popup_5ac7426136114b2e830fab2d52abbf39)
;
var circle_marker_5eded12e06144c1796fa521b59ca2ba2 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_51dcf5985f034daa8e07df6db58f0831 = L.popup({"maxWidth": "100%"});
var html_9282a41d4bab4c01b96f9433e9e45b46 = $(`<div id="html_9282a41d4bab4c01b96f9433e9e45b46" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Coffee lack: 0.0</div>`)[0];
popup_51dcf5985f034daa8e07df6db58f0831.setContent(html_9282a41d4bab4c01b96f9433e9e45b46);
circle_marker_5eded12e06144c1796fa521b59ca2ba2.bindPopup(popup_51dcf5985f034daa8e07df6db58f0831)
;
var circle_marker_3ee0603f8f04416e9a946ec633d720f8 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_dbfe1c8ce914406f88130c5e07ae89e5 = L.popup({"maxWidth": "100%"});
var html_7268f662782e43649b72bef4a30266f7 = $(`<div id="html_7268f662782e43649b72bef4a30266f7" style="width: 100.0%; height: 100.0%;">Glencairn Cluster lack: 0.0</div>`)[0];
popup_dbfe1c8ce914406f88130c5e07ae89e5.setContent(html_7268f662782e43649b72bef4a30266f7);
circle_marker_3ee0603f8f04416e9a946ec633d720f8.bindPopup(popup_dbfe1c8ce914406f88130c5e07ae89e5)
;
var circle_marker_730d96f7924e46acb62d756133b2998b = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_a9156a3cbf2849dea35aa7a6653baba8 = L.popup({"maxWidth": "100%"});
var html_e61ad9b7c0724616a25dda4e770a5706 = $(`<div id="html_e61ad9b7c0724616a25dda4e770a5706" style="width: 100.0%; height: 100.0%;">Glencairn Coffee lack: 0.4</div>`)[0];
popup_a9156a3cbf2849dea35aa7a6653baba8.setContent(html_e61ad9b7c0724616a25dda4e770a5706);
circle_marker_730d96f7924e46acb62d756133b2998b.bindPopup(popup_a9156a3cbf2849dea35aa7a6653baba8)
;
var circle_marker_31d87fcb9ae94d1a9066da7645de4b67 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_6a8ed17e270545e9b9894ffe2f212289 = L.popup({"maxWidth": "100%"});
var html_0de3952fc07a42388419fc7624e35bb3 = $(`<div id="html_0de3952fc07a42388419fc7624e35bb3" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Cluster lack: 0.0</div>`)[0];
popup_6a8ed17e270545e9b9894ffe2f212289.setContent(html_0de3952fc07a42388419fc7624e35bb3);
circle_marker_31d87fcb9ae94d1a9066da7645de4b67.bindPopup(popup_6a8ed17e270545e9b9894ffe2f212289)
;
var circle_marker_c55dfe77a22140a4b94ad3a12c58d68a = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_0d60d8ecea614469938b3daf1e3b959b = L.popup({"maxWidth": "100%"});
var html_2beb294bfd864e65895ea419ac73bbba = $(`<div id="html_2beb294bfd864e65895ea419ac73bbba" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Coffee lack: 0.0</div>`)[0];
popup_0d60d8ecea614469938b3daf1e3b959b.setContent(html_2beb294bfd864e65895ea419ac73bbba);
circle_marker_c55dfe77a22140a4b94ad3a12c58d68a.bindPopup(popup_0d60d8ecea614469938b3daf1e3b959b)
;
var circle_marker_399acb252d514167b21b961130bc885b = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_9de8b7c1a3b749cf8552b2e2dc78ab73 = L.popup({"maxWidth": "100%"});
var html_098fab65e89c4285ac350403f4dd2764 = $(`<div id="html_098fab65e89c4285ac350403f4dd2764" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Cluster lack: 0.0</div>`)[0];
popup_9de8b7c1a3b749cf8552b2e2dc78ab73.setContent(html_098fab65e89c4285ac350403f4dd2764);
circle_marker_399acb252d514167b21b961130bc885b.bindPopup(popup_9de8b7c1a3b749cf8552b2e2dc78ab73)
;
var circle_marker_5a155ebd65af459ca45a35a484a54ccc = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_db98e8a415284875a26647cb7193dfc1 = L.popup({"maxWidth": "100%"});
var html_8d08c1fb2eab492f82c6be5695099df0 = $(`<div id="html_8d08c1fb2eab492f82c6be5695099df0" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Coffee lack: 0.0</div>`)[0];
popup_db98e8a415284875a26647cb7193dfc1.setContent(html_8d08c1fb2eab492f82c6be5695099df0);
circle_marker_5a155ebd65af459ca45a35a484a54ccc.bindPopup(popup_db98e8a415284875a26647cb7193dfc1)
;
var circle_marker_80d39956df9b40bbbd31d0915fae9b07 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_9bd29b0b2a6d4471bf923d4cfa086ab1 = L.popup({"maxWidth": "100%"});
var html_a99a0295f3ac44f3910b85beee9bc34b = $(`<div id="html_a99a0295f3ac44f3910b85beee9bc34b" style="width: 100.0%; height: 100.0%;">Don Mills Cluster lack: 0.0</div>`)[0];
popup_9bd29b0b2a6d4471bf923d4cfa086ab1.setContent(html_a99a0295f3ac44f3910b85beee9bc34b);
circle_marker_80d39956df9b40bbbd31d0915fae9b07.bindPopup(popup_9bd29b0b2a6d4471bf923d4cfa086ab1)
;
var circle_marker_e0a93d81f105472482916c3d67a846d5 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_d3e56b0db44d43ec8148f0da747bef27 = L.popup({"maxWidth": "100%"});
var html_a0c799ebcc024e3ebe5f8a25624f3d17 = $(`<div id="html_a0c799ebcc024e3ebe5f8a25624f3d17" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.9</div>`)[0];
popup_d3e56b0db44d43ec8148f0da747bef27.setContent(html_a0c799ebcc024e3ebe5f8a25624f3d17);
circle_marker_e0a93d81f105472482916c3d67a846d5.bindPopup(popup_d3e56b0db44d43ec8148f0da747bef27)
;
var circle_marker_8eb7633e193444ee9df81ed8d65c738c = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_a8a84104fe404d198c6613c672ca721c = L.popup({"maxWidth": "100%"});
var html_a8409fe7e389479c97aa6261e3e08be3 = $(`<div id="html_a8409fe7e389479c97aa6261e3e08be3" style="width: 100.0%; height: 100.0%;">Woodbine Heights Cluster lack: 0.4</div>`)[0];
popup_a8a84104fe404d198c6613c672ca721c.setContent(html_a8409fe7e389479c97aa6261e3e08be3);
circle_marker_8eb7633e193444ee9df81ed8d65c738c.bindPopup(popup_a8a84104fe404d198c6613c672ca721c)
;
var circle_marker_c694ee9fc25245f5bbf30f97bdb9ebbc = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_3ec2f3bf3fd04585b60e3bee1d3a6239 = L.popup({"maxWidth": "100%"});
var html_5e7e5e8207834f46bf18bf6f93ffcbe9 = $(`<div id="html_5e7e5e8207834f46bf18bf6f93ffcbe9" style="width: 100.0%; height: 100.0%;">Woodbine Heights Coffee lack: 0.4</div>`)[0];
popup_3ec2f3bf3fd04585b60e3bee1d3a6239.setContent(html_5e7e5e8207834f46bf18bf6f93ffcbe9);
circle_marker_c694ee9fc25245f5bbf30f97bdb9ebbc.bindPopup(popup_3ec2f3bf3fd04585b60e3bee1d3a6239)
;
var circle_marker_1a26e42c52c6425588ed8da9b25b313d = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_f11388a054f24ba5aa6b18d28afc7951 = L.popup({"maxWidth": "100%"});
var html_3dc0676fa575491f943e41795288336f = $(`<div id="html_3dc0676fa575491f943e41795288336f" style="width: 100.0%; height: 100.0%;">St. James Town Cluster lack: 0.0</div>`)[0];
popup_f11388a054f24ba5aa6b18d28afc7951.setContent(html_3dc0676fa575491f943e41795288336f);
circle_marker_1a26e42c52c6425588ed8da9b25b313d.bindPopup(popup_f11388a054f24ba5aa6b18d28afc7951)
;
var circle_marker_a2386471935d4749acc624e2cd3b24fb = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_3f7a02af67d0424b938d89e2200e6ab4 = L.popup({"maxWidth": "100%"});
var html_3399449bb2a54c4eb7f374d52080b485 = $(`<div id="html_3399449bb2a54c4eb7f374d52080b485" style="width: 100.0%; height: 100.0%;">St. James Town Coffee lack: 1.4</div>`)[0];
popup_3f7a02af67d0424b938d89e2200e6ab4.setContent(html_3399449bb2a54c4eb7f374d52080b485);
circle_marker_a2386471935d4749acc624e2cd3b24fb.bindPopup(popup_3f7a02af67d0424b938d89e2200e6ab4)
;
var circle_marker_ff9953b9266b41afbbb1052128b1903f = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_f0ae5e6dc9f745f8b0e742d8976e9fdd = L.popup({"maxWidth": "100%"});
var html_10bdf98a142745ecbe83afa070d04b4d = $(`<div id="html_10bdf98a142745ecbe83afa070d04b4d" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Cluster lack: 1.4</div>`)[0];
popup_f0ae5e6dc9f745f8b0e742d8976e9fdd.setContent(html_10bdf98a142745ecbe83afa070d04b4d);
circle_marker_ff9953b9266b41afbbb1052128b1903f.bindPopup(popup_f0ae5e6dc9f745f8b0e742d8976e9fdd)
;
var circle_marker_36902d46768c4090829075c8d03bdac9 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_606d0caa3cdd4116ac0502de815a9512 = L.popup({"maxWidth": "100%"});
var html_c13c3bf1a23d42599a3b54e1e8ffc9b2 = $(`<div id="html_c13c3bf1a23d42599a3b54e1e8ffc9b2" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Coffee lack: 0.3</div>`)[0];
popup_606d0caa3cdd4116ac0502de815a9512.setContent(html_c13c3bf1a23d42599a3b54e1e8ffc9b2);
circle_marker_36902d46768c4090829075c8d03bdac9.bindPopup(popup_606d0caa3cdd4116ac0502de815a9512)
;
var circle_marker_83b42864f8c34f29be0e0a6a08693b4a = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_cccd7c61a0d54d61b7a2748b03beaf39 = L.popup({"maxWidth": "100%"});
var html_38a66b80393f431eb78e8a06877b761d = $(`<div id="html_38a66b80393f431eb78e8a06877b761d" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Cluster lack: 0.0</div>`)[0];
popup_cccd7c61a0d54d61b7a2748b03beaf39.setContent(html_38a66b80393f431eb78e8a06877b761d);
circle_marker_83b42864f8c34f29be0e0a6a08693b4a.bindPopup(popup_cccd7c61a0d54d61b7a2748b03beaf39)
;
var circle_marker_18665f029e634175bd391aba51ba593d = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_429c17372b07486a9b03c439e3442282 = L.popup({"maxWidth": "100%"});
var html_95faa9137ccd42b2968f31d6fc2d6b2b = $(`<div id="html_95faa9137ccd42b2968f31d6fc2d6b2b" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Coffee lack: 0.0</div>`)[0];
popup_429c17372b07486a9b03c439e3442282.setContent(html_95faa9137ccd42b2968f31d6fc2d6b2b);
circle_marker_18665f029e634175bd391aba51ba593d.bindPopup(popup_429c17372b07486a9b03c439e3442282)
;
var circle_marker_099ab295185f45399980e3d3df4626db = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_5953f29f3a124d38902515f59f35fb4a = L.popup({"maxWidth": "100%"});
var html_8b4c014183f94991b70eaa68fad0fffc = $(`<div id="html_8b4c014183f94991b70eaa68fad0fffc" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Cluster lack: 0.0</div>`)[0];
popup_5953f29f3a124d38902515f59f35fb4a.setContent(html_8b4c014183f94991b70eaa68fad0fffc);
circle_marker_099ab295185f45399980e3d3df4626db.bindPopup(popup_5953f29f3a124d38902515f59f35fb4a)
;
var circle_marker_2fe453f1f4f34b399d1524274f651304 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_72f8d454a892433f9f325f835ddfc92d = L.popup({"maxWidth": "100%"});
var html_ae76566834d24f5aa70d1dfb5ca60c0b = $(`<div id="html_ae76566834d24f5aa70d1dfb5ca60c0b" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Coffee lack: 0.5</div>`)[0];
popup_72f8d454a892433f9f325f835ddfc92d.setContent(html_ae76566834d24f5aa70d1dfb5ca60c0b);
circle_marker_2fe453f1f4f34b399d1524274f651304.bindPopup(popup_72f8d454a892433f9f325f835ddfc92d)
;
var circle_marker_8cd7939ea0654e8fa352dce7f848f565 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_540aac6d0ad148b68e9387f94030c09c = L.popup({"maxWidth": "100%"});
var html_a97cfd577c4348ad935f7f82446c26cb = $(`<div id="html_a97cfd577c4348ad935f7f82446c26cb" style="width: 100.0%; height: 100.0%;">The Beaches Cluster lack: 0.0</div>`)[0];
popup_540aac6d0ad148b68e9387f94030c09c.setContent(html_a97cfd577c4348ad935f7f82446c26cb);
circle_marker_8cd7939ea0654e8fa352dce7f848f565.bindPopup(popup_540aac6d0ad148b68e9387f94030c09c)
;
var circle_marker_9b932ac3a93245b480ce53a80d42993d = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_7f6aa1beee61442b8372124d46d027db = L.popup({"maxWidth": "100%"});
var html_9debc9483beb47a698c6f1c0173f3ee1 = $(`<div id="html_9debc9483beb47a698c6f1c0173f3ee1" style="width: 100.0%; height: 100.0%;">The Beaches Coffee lack: 0.4</div>`)[0];
popup_7f6aa1beee61442b8372124d46d027db.setContent(html_9debc9483beb47a698c6f1c0173f3ee1);
circle_marker_9b932ac3a93245b480ce53a80d42993d.bindPopup(popup_7f6aa1beee61442b8372124d46d027db)
;
var circle_marker_3cc2ca7c9dc941aebef97ae98f15afff = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_5a327575283142ba8259a640309a5f5a = L.popup({"maxWidth": "100%"});
var html_7b768fe3ba8b4404bb6a6153679c1a62 = $(`<div id="html_7b768fe3ba8b4404bb6a6153679c1a62" style="width: 100.0%; height: 100.0%;">Berczy Park Cluster lack: 5.6</div>`)[0];
popup_5a327575283142ba8259a640309a5f5a.setContent(html_7b768fe3ba8b4404bb6a6153679c1a62);
circle_marker_3cc2ca7c9dc941aebef97ae98f15afff.bindPopup(popup_5a327575283142ba8259a640309a5f5a)
;
var circle_marker_919105d12a924309a90386d64a6d0792 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_1d28cceeae0143b1b592a112d518cc9d = L.popup({"maxWidth": "100%"});
var html_64d3037c00dd47098dc8173c4acda9db = $(`<div id="html_64d3037c00dd47098dc8173c4acda9db" style="width: 100.0%; height: 100.0%;">Berczy Park Coffee lack: 1.7</div>`)[0];
popup_1d28cceeae0143b1b592a112d518cc9d.setContent(html_64d3037c00dd47098dc8173c4acda9db);
circle_marker_919105d12a924309a90386d64a6d0792.bindPopup(popup_1d28cceeae0143b1b592a112d518cc9d)
;
var circle_marker_73f76613285b4a6ab4e0d81b4e3ecd5d = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_394a5cc639e6427fba903081b13f7c5d = L.popup({"maxWidth": "100%"});
var html_c205e3bb47d14229983f4a8fa95ade38 = $(`<div id="html_c205e3bb47d14229983f4a8fa95ade38" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Cluster lack: 0.2</div>`)[0];
popup_394a5cc639e6427fba903081b13f7c5d.setContent(html_c205e3bb47d14229983f4a8fa95ade38);
circle_marker_73f76613285b4a6ab4e0d81b4e3ecd5d.bindPopup(popup_394a5cc639e6427fba903081b13f7c5d)
;
var circle_marker_f063b0fa8d964a4a837c66cf2a866329 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_1e78d06e036241129525e0e9de81ae03 = L.popup({"maxWidth": "100%"});
var html_b41205343b9c4119bcb79b9e383993ab = $(`<div id="html_b41205343b9c4119bcb79b9e383993ab" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Coffee lack: 0.1</div>`)[0];
popup_1e78d06e036241129525e0e9de81ae03.setContent(html_b41205343b9c4119bcb79b9e383993ab);
circle_marker_f063b0fa8d964a4a837c66cf2a866329.bindPopup(popup_1e78d06e036241129525e0e9de81ae03)
;
var circle_marker_c627b019e6d34adb8ff46ee404b4fe90 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_42e00aaa31094063a38dfb027ab3b59c = L.popup({"maxWidth": "100%"});
var html_321093bd66514ca7b43a43aeaadbdc11 = $(`<div id="html_321093bd66514ca7b43a43aeaadbdc11" style="width: 100.0%; height: 100.0%;">Woburn Cluster lack: 0.0</div>`)[0];
popup_42e00aaa31094063a38dfb027ab3b59c.setContent(html_321093bd66514ca7b43a43aeaadbdc11);
circle_marker_c627b019e6d34adb8ff46ee404b4fe90.bindPopup(popup_42e00aaa31094063a38dfb027ab3b59c)
;
var circle_marker_cce86c15e139445cb029cc0ee5694689 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_e33d4e0a745d4d21a9af053768dc43e5 = L.popup({"maxWidth": "100%"});
var html_75784782d916419e885fc636626c52f3 = $(`<div id="html_75784782d916419e885fc636626c52f3" style="width: 100.0%; height: 100.0%;">Woburn Coffee lack: 0.0</div>`)[0];
popup_e33d4e0a745d4d21a9af053768dc43e5.setContent(html_75784782d916419e885fc636626c52f3);
circle_marker_cce86c15e139445cb029cc0ee5694689.bindPopup(popup_e33d4e0a745d4d21a9af053768dc43e5)
;
var circle_marker_4b759b81a7a34eb0ba7d95f7c8ff7de5 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_80559af5ea9a4f4a9ff91ac1ce99238d = L.popup({"maxWidth": "100%"});
var html_6030c92efde34668869e3575fe086e7e = $(`<div id="html_6030c92efde34668869e3575fe086e7e" style="width: 100.0%; height: 100.0%;">Leaside Cluster lack: 0.9</div>`)[0];
popup_80559af5ea9a4f4a9ff91ac1ce99238d.setContent(html_6030c92efde34668869e3575fe086e7e);
circle_marker_4b759b81a7a34eb0ba7d95f7c8ff7de5.bindPopup(popup_80559af5ea9a4f4a9ff91ac1ce99238d)
;
var circle_marker_ab6bc5ea4e3049409e3eb0992ec3b270 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_4d99a9c205254a968c02bcf39295b717 = L.popup({"maxWidth": "100%"});
var html_4c72a39e599b4952b82d5990852eb7b7 = $(`<div id="html_4c72a39e599b4952b82d5990852eb7b7" style="width: 100.0%; height: 100.0%;">Leaside Coffee lack: 1.8</div>`)[0];
popup_4d99a9c205254a968c02bcf39295b717.setContent(html_4c72a39e599b4952b82d5990852eb7b7);
circle_marker_ab6bc5ea4e3049409e3eb0992ec3b270.bindPopup(popup_4d99a9c205254a968c02bcf39295b717)
;
var circle_marker_565ec877739d48e394895383671b1cc6 = 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_19dd0a1123714ec685fa94d3738c80e2);
var popup_30ec99cb846b43efae523124e4950990 = L.popup({"maxWidth": "100%"});
var html_00b23d00b7494e3ab601e750359bf031 = $(`<div id="html_00b23d00b7494e3ab601e750359bf031" style="width: 100.0%; height: 100.0%;">Central Bay Street Cluster lack: 0.0</div>`)[0];
popup_30ec99cb846b43efae523124e4950990.setContent(html_00b23d00b7494e3ab601e750359bf031);
circle_marker_565ec877739d48e394895383671b1cc6.bindPopup(popup_30ec99cb846b43efae523124e4950990)
;