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_coffeeshops_bnw.html
2026 lines (981 loc) · 109 KB
/
map_coffeeshops_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_6ebcd1b6951a435199e727e6bb50107a {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_6ebcd1b6951a435199e727e6bb50107a" ></div>
</body>
<script>
var map_6ebcd1b6951a435199e727e6bb50107a = L.map(
"map_6ebcd1b6951a435199e727e6bb50107a",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_0bced587bdd145b5aa1020697ee12643 = 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_6ebcd1b6951a435199e727e6bb50107a);
var tile_layer_62d56c7c7aa5433581adfc629755a651 = 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_6ebcd1b6951a435199e727e6bb50107a);
var circle_marker_b7a87febf54841659c4293bc80a06e33 = L.circleMarker(
[43.7532586, -79.3296565],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_8a5883ad8b3744779f4a07cc51358bd5 = L.popup({"maxWidth": "100%"});
var html_030feb6c66c44f899870845a27940ae0 = $(`<div id="html_030feb6c66c44f899870845a27940ae0" style="width: 100.0%; height: 100.0%;">Parkwoods Coffee lack: 0.0</div>`)[0];
popup_8a5883ad8b3744779f4a07cc51358bd5.setContent(html_030feb6c66c44f899870845a27940ae0);
circle_marker_b7a87febf54841659c4293bc80a06e33.bindPopup(popup_8a5883ad8b3744779f4a07cc51358bd5)
;
var circle_marker_8a273e1942b8457a830c43ab6368ace3 = L.circleMarker(
[43.725882299999995, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_05127748b26b496b89a1168d17f37137 = L.popup({"maxWidth": "100%"});
var html_e6c7504557b641829c3d3e2dbc4e1207 = $(`<div id="html_e6c7504557b641829c3d3e2dbc4e1207" style="width: 100.0%; height: 100.0%;">Victoria Village Coffee lack: 0.0</div>`)[0];
popup_05127748b26b496b89a1168d17f37137.setContent(html_e6c7504557b641829c3d3e2dbc4e1207);
circle_marker_8a273e1942b8457a830c43ab6368ace3.bindPopup(popup_05127748b26b496b89a1168d17f37137)
;
var circle_marker_6e5d6d78332043a0bf50f0e5aae18700 = L.circleMarker(
[43.6542599, -79.3606359],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_3692ffeacfc24497873258c58a4b3ffa = L.popup({"maxWidth": "100%"});
var html_69489522a2b943a9b69c02d6c5949683 = $(`<div id="html_69489522a2b943a9b69c02d6c5949683" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Coffee lack: 0.0</div>`)[0];
popup_3692ffeacfc24497873258c58a4b3ffa.setContent(html_69489522a2b943a9b69c02d6c5949683);
circle_marker_6e5d6d78332043a0bf50f0e5aae18700.bindPopup(popup_3692ffeacfc24497873258c58a4b3ffa)
;
var circle_marker_d24df36172e74d2c92d650179622f827 = L.circleMarker(
[43.718517999999996, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_281e59ef472d43248f4100b38d78f7bf = L.popup({"maxWidth": "100%"});
var html_7b8b7b8d2e314b7f91736ee5ba891b6e = $(`<div id="html_7b8b7b8d2e314b7f91736ee5ba891b6e" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Coffee lack: 0.0</div>`)[0];
popup_281e59ef472d43248f4100b38d78f7bf.setContent(html_7b8b7b8d2e314b7f91736ee5ba891b6e);
circle_marker_d24df36172e74d2c92d650179622f827.bindPopup(popup_281e59ef472d43248f4100b38d78f7bf)
;
var circle_marker_e734d06426244f2197bea6ee39a67514 = L.circleMarker(
[43.6623015, -79.3894938],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_e318a4bf71e04c7b87f01175e70f369c = L.popup({"maxWidth": "100%"});
var html_19df48283cbd42998468afb3926b5eda = $(`<div id="html_19df48283cbd42998468afb3926b5eda" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Coffee lack: 0.0</div>`)[0];
popup_e318a4bf71e04c7b87f01175e70f369c.setContent(html_19df48283cbd42998468afb3926b5eda);
circle_marker_e734d06426244f2197bea6ee39a67514.bindPopup(popup_e318a4bf71e04c7b87f01175e70f369c)
;
var circle_marker_31b0c7b582ce418ca081a52e23e17add = L.circleMarker(
[43.6678556, -79.53224240000002],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_710fee2fed8b46bba9c4ae4f27cccb97 = L.popup({"maxWidth": "100%"});
var html_36b72f2a142a405497479a06ef2cb6d4 = $(`<div id="html_36b72f2a142a405497479a06ef2cb6d4" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Coffee lack: 0.0</div>`)[0];
popup_710fee2fed8b46bba9c4ae4f27cccb97.setContent(html_36b72f2a142a405497479a06ef2cb6d4);
circle_marker_31b0c7b582ce418ca081a52e23e17add.bindPopup(popup_710fee2fed8b46bba9c4ae4f27cccb97)
;
var circle_marker_1d9379341d154b479d7ebc7d5926a6c5 = L.circleMarker(
[43.806686299999996, -79.19435340000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_68043fb7d4b944928bb96a26529fc3ba = L.popup({"maxWidth": "100%"});
var html_f7ee7fad7e694b018d62f1d57681ae01 = $(`<div id="html_f7ee7fad7e694b018d62f1d57681ae01" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Coffee lack: 0.0</div>`)[0];
popup_68043fb7d4b944928bb96a26529fc3ba.setContent(html_f7ee7fad7e694b018d62f1d57681ae01);
circle_marker_1d9379341d154b479d7ebc7d5926a6c5.bindPopup(popup_68043fb7d4b944928bb96a26529fc3ba)
;
var circle_marker_44439873f4cc43369c5cd149178712b2 = L.circleMarker(
[43.745905799999996, -79.352188],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_e17194a19dba40b2a5a9826a666d2ca8 = L.popup({"maxWidth": "100%"});
var html_5bb27fc9aa1b46d4861e40e50445d89b = $(`<div id="html_5bb27fc9aa1b46d4861e40e50445d89b" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.0</div>`)[0];
popup_e17194a19dba40b2a5a9826a666d2ca8.setContent(html_5bb27fc9aa1b46d4861e40e50445d89b);
circle_marker_44439873f4cc43369c5cd149178712b2.bindPopup(popup_e17194a19dba40b2a5a9826a666d2ca8)
;
var circle_marker_e60ee530cde74cd0b92ff76ff58e1532 = L.circleMarker(
[43.7063972, -79.309937],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.0281674154766045, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_296dc0e44ec64810b64872bede5f168b = L.popup({"maxWidth": "100%"});
var html_69e97b403dbc489daac2ac4f9c0aefbf = $(`<div id="html_69e97b403dbc489daac2ac4f9c0aefbf" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Coffee lack: 0.7</div>`)[0];
popup_296dc0e44ec64810b64872bede5f168b.setContent(html_69e97b403dbc489daac2ac4f9c0aefbf);
circle_marker_e60ee530cde74cd0b92ff76ff58e1532.bindPopup(popup_296dc0e44ec64810b64872bede5f168b)
;
var circle_marker_14900a0f4db74196acbedfc12d6ee2cd = L.circleMarker(
[43.6571618, -79.37893709999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_c67f7c78d3054ecb9bbd15a20b784f7b = L.popup({"maxWidth": "100%"});
var html_5a6342e57f5144c6b6a20fbadb46ff48 = $(`<div id="html_5a6342e57f5144c6b6a20fbadb46ff48" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Coffee lack: 0.0</div>`)[0];
popup_c67f7c78d3054ecb9bbd15a20b784f7b.setContent(html_5a6342e57f5144c6b6a20fbadb46ff48);
circle_marker_14900a0f4db74196acbedfc12d6ee2cd.bindPopup(popup_c67f7c78d3054ecb9bbd15a20b784f7b)
;
var circle_marker_0af4a9b269e94a6694f0015969c927a9 = L.circleMarker(
[43.709577, -79.44507259999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.115244677445493, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_4769d8e3208c48f5b223b8dfd8fe4349 = L.popup({"maxWidth": "100%"});
var html_693599632c9d4a7ebc8e06508e764d56 = $(`<div id="html_693599632c9d4a7ebc8e06508e764d56" style="width: 100.0%; height: 100.0%;">Glencairn Coffee lack: 0.4</div>`)[0];
popup_4769d8e3208c48f5b223b8dfd8fe4349.setContent(html_693599632c9d4a7ebc8e06508e764d56);
circle_marker_0af4a9b269e94a6694f0015969c927a9.bindPopup(popup_4769d8e3208c48f5b223b8dfd8fe4349)
;
var circle_marker_bffc359c65c24eda9dcdf061a6c3d19a = L.circleMarker(
[43.6509432, -79.55472440000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_70a223e37b244f28af7003d907b56709 = L.popup({"maxWidth": "100%"});
var html_25eb4f00f86e48b89a67d69935a050f3 = $(`<div id="html_25eb4f00f86e48b89a67d69935a050f3" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Coffee lack: 0.0</div>`)[0];
popup_70a223e37b244f28af7003d907b56709.setContent(html_25eb4f00f86e48b89a67d69935a050f3);
circle_marker_bffc359c65c24eda9dcdf061a6c3d19a.bindPopup(popup_70a223e37b244f28af7003d907b56709)
;
var circle_marker_5f3adb1ff41f486bba6883c6e1de33a3 = L.circleMarker(
[43.7845351, -79.16049709999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_64f201aa5bd94301819201e61e3d606e = L.popup({"maxWidth": "100%"});
var html_4925cfcaa1144aec97afcd5647e034bb = $(`<div id="html_4925cfcaa1144aec97afcd5647e034bb" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Coffee lack: 0.0</div>`)[0];
popup_64f201aa5bd94301819201e61e3d606e.setContent(html_4925cfcaa1144aec97afcd5647e034bb);
circle_marker_5f3adb1ff41f486bba6883c6e1de33a3.bindPopup(popup_64f201aa5bd94301819201e61e3d606e)
;
var circle_marker_1c910ad0693e4932bcaea0369f707504 = L.circleMarker(
[43.72589970000001, -79.340923],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.840671872488622, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_734aa2aa74f245cc9fbcdf5d3d102807 = L.popup({"maxWidth": "100%"});
var html_7afbf57b1327405688388e5eee8f53fc = $(`<div id="html_7afbf57b1327405688388e5eee8f53fc" style="width: 100.0%; height: 100.0%;">Don Mills Coffee lack: 0.9</div>`)[0];
popup_734aa2aa74f245cc9fbcdf5d3d102807.setContent(html_7afbf57b1327405688388e5eee8f53fc);
circle_marker_1c910ad0693e4932bcaea0369f707504.bindPopup(popup_734aa2aa74f245cc9fbcdf5d3d102807)
;
var circle_marker_1ea783fddb184a1e8c7f84114c224b65 = L.circleMarker(
[43.695343900000005, -79.3183887],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.3402139165289317, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_dc8bc231fe6242bab7899d4265ad9b0e = L.popup({"maxWidth": "100%"});
var html_b9979674d7454dbeb78c88fd06a436ac = $(`<div id="html_b9979674d7454dbeb78c88fd06a436ac" style="width: 100.0%; height: 100.0%;">Woodbine Heights Coffee lack: 0.4</div>`)[0];
popup_dc8bc231fe6242bab7899d4265ad9b0e.setContent(html_b9979674d7454dbeb78c88fd06a436ac);
circle_marker_1ea783fddb184a1e8c7f84114c224b65.bindPopup(popup_dc8bc231fe6242bab7899d4265ad9b0e)
;
var circle_marker_19320568336a41c887c880355e864cfc = L.circleMarker(
[43.6514939, -79.3754179],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.23907179172277, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_4c307017190346d3945e03213a1cf1c1 = L.popup({"maxWidth": "100%"});
var html_aaeceec4ad9448e88d55536f1f8dc6f8 = $(`<div id="html_aaeceec4ad9448e88d55536f1f8dc6f8" style="width: 100.0%; height: 100.0%;">St. James Town Coffee lack: 1.4</div>`)[0];
popup_4c307017190346d3945e03213a1cf1c1.setContent(html_aaeceec4ad9448e88d55536f1f8dc6f8);
circle_marker_19320568336a41c887c880355e864cfc.bindPopup(popup_4c307017190346d3945e03213a1cf1c1)
;
var circle_marker_812389445cb44fa6ab280d28609e02cf = L.circleMarker(
[43.6937813, -79.42819140000002],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.8262320308655042, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_d7af0078218e4bf2ada9e777a68eae77 = L.popup({"maxWidth": "100%"});
var html_fefe45ad30544173938dafa49f253560 = $(`<div id="html_fefe45ad30544173938dafa49f253560" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Coffee lack: 0.3</div>`)[0];
popup_d7af0078218e4bf2ada9e777a68eae77.setContent(html_fefe45ad30544173938dafa49f253560);
circle_marker_812389445cb44fa6ab280d28609e02cf.bindPopup(popup_d7af0078218e4bf2ada9e777a68eae77)
;
var circle_marker_36f733cec5174d4b9a37875b0cdf3df7 = L.circleMarker(
[43.6435152, -79.57720079999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_1b3dc8360d4e4680aa177e71205d91f8 = L.popup({"maxWidth": "100%"});
var html_e90880adb56248b798d9a3b8521b7738 = $(`<div id="html_e90880adb56248b798d9a3b8521b7738" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Coffee lack: 0.0</div>`)[0];
popup_1b3dc8360d4e4680aa177e71205d91f8.setContent(html_e90880adb56248b798d9a3b8521b7738);
circle_marker_36f733cec5174d4b9a37875b0cdf3df7.bindPopup(popup_1b3dc8360d4e4680aa177e71205d91f8)
;
var circle_marker_84ddbae0739448f9b656c66f606a1dcc = L.circleMarker(
[43.7635726, -79.1887115],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.451135184546218, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_e54fca6286634b0c8e9e7b24048b01e9 = L.popup({"maxWidth": "100%"});
var html_99ff98e22f5e4cac980efee7f1953deb = $(`<div id="html_99ff98e22f5e4cac980efee7f1953deb" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Coffee lack: 0.5</div>`)[0];
popup_e54fca6286634b0c8e9e7b24048b01e9.setContent(html_99ff98e22f5e4cac980efee7f1953deb);
circle_marker_84ddbae0739448f9b656c66f606a1dcc.bindPopup(popup_e54fca6286634b0c8e9e7b24048b01e9)
;
var circle_marker_3474f913a3944d79a3aea23f42b795ef = L.circleMarker(
[43.67635739999999, -79.2930312],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.1171769555726323, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_625c653c6e94461f82fd01f8c624bee4 = L.popup({"maxWidth": "100%"});
var html_daf3c0f58b594ae3bfc40c8b7c769e19 = $(`<div id="html_daf3c0f58b594ae3bfc40c8b7c769e19" style="width: 100.0%; height: 100.0%;">The Beaches Coffee lack: 0.4</div>`)[0];
popup_625c653c6e94461f82fd01f8c624bee4.setContent(html_daf3c0f58b594ae3bfc40c8b7c769e19);
circle_marker_3474f913a3944d79a3aea23f42b795ef.bindPopup(popup_625c653c6e94461f82fd01f8c624bee4)
;
var circle_marker_746a6e5416cd45278ac8e12aa3e3169e = L.circleMarker(
[43.644770799999996, -79.3733064],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.20464189277145, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_5a1212a890c94050956a19b2489db937 = L.popup({"maxWidth": "100%"});
var html_b90e80c0738d4dc791de800db5b61bad = $(`<div id="html_b90e80c0738d4dc791de800db5b61bad" style="width: 100.0%; height: 100.0%;">Berczy Park Coffee lack: 1.7</div>`)[0];
popup_5a1212a890c94050956a19b2489db937.setContent(html_b90e80c0738d4dc791de800db5b61bad);
circle_marker_746a6e5416cd45278ac8e12aa3e3169e.bindPopup(popup_5a1212a890c94050956a19b2489db937)
;
var circle_marker_4ab994f73b59414db405112f9eaeb202 = L.circleMarker(
[43.6890256, -79.453512],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.435556598530411, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_9a7ffdd641af4682853a345727358616 = L.popup({"maxWidth": "100%"});
var html_74762f49fa2d48b5a90971c06f46d558 = $(`<div id="html_74762f49fa2d48b5a90971c06f46d558" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Coffee lack: 0.1</div>`)[0];
popup_9a7ffdd641af4682853a345727358616.setContent(html_74762f49fa2d48b5a90971c06f46d558);
circle_marker_4ab994f73b59414db405112f9eaeb202.bindPopup(popup_9a7ffdd641af4682853a345727358616)
;
var circle_marker_3de5089fd7c94e9d851cd871a3e04fa0 = L.circleMarker(
[43.7709921, -79.21691740000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_08b51e6220b4459f98cc2da589ab86ec = L.popup({"maxWidth": "100%"});
var html_4c0e9443d5c14271afe43ad357621615 = $(`<div id="html_4c0e9443d5c14271afe43ad357621615" style="width: 100.0%; height: 100.0%;">Woburn Coffee lack: 0.0</div>`)[0];
popup_08b51e6220b4459f98cc2da589ab86ec.setContent(html_4c0e9443d5c14271afe43ad357621615);
circle_marker_3de5089fd7c94e9d851cd871a3e04fa0.bindPopup(popup_08b51e6220b4459f98cc2da589ab86ec)
;
var circle_marker_1328e1eaa6ac488f93f9d7c6c81d11ad = L.circleMarker(
[43.7090604, -79.3634517],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.369708935105256, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_5449af3b6aaf4ab689f8b39b07f66ffb = L.popup({"maxWidth": "100%"});
var html_fdede0241b0f403a9a443f931b1f6682 = $(`<div id="html_fdede0241b0f403a9a443f931b1f6682" style="width: 100.0%; height: 100.0%;">Leaside Coffee lack: 1.8</div>`)[0];
popup_5449af3b6aaf4ab689f8b39b07f66ffb.setContent(html_fdede0241b0f403a9a443f931b1f6682);
circle_marker_1328e1eaa6ac488f93f9d7c6c81d11ad.bindPopup(popup_5449af3b6aaf4ab689f8b39b07f66ffb)
;
var circle_marker_3961361a72da46f7a8b1776509fea563 = L.circleMarker(
[43.6579524, -79.3873826],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_3fc4b2bbc84f463789ee5e2d21dff949 = L.popup({"maxWidth": "100%"});
var html_fb6bd2b401554b42af406f22dd9a7336 = $(`<div id="html_fb6bd2b401554b42af406f22dd9a7336" style="width: 100.0%; height: 100.0%;">Central Bay Street Coffee lack: 0.0</div>`)[0];
popup_3fc4b2bbc84f463789ee5e2d21dff949.setContent(html_fb6bd2b401554b42af406f22dd9a7336);
circle_marker_3961361a72da46f7a8b1776509fea563.bindPopup(popup_3fc4b2bbc84f463789ee5e2d21dff949)
;
var circle_marker_014d65093c15492f83d8a5b3056003b3 = L.circleMarker(
[43.669542, -79.4225637],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_f5e98e2d080c482cb5cd52aa06767a74 = L.popup({"maxWidth": "100%"});
var html_07b580fc6afb495791c16aa35304eda7 = $(`<div id="html_07b580fc6afb495791c16aa35304eda7" style="width: 100.0%; height: 100.0%;">Christie Coffee lack: 0.0</div>`)[0];
popup_f5e98e2d080c482cb5cd52aa06767a74.setContent(html_07b580fc6afb495791c16aa35304eda7);
circle_marker_014d65093c15492f83d8a5b3056003b3.bindPopup(popup_f5e98e2d080c482cb5cd52aa06767a74)
;
var circle_marker_6936412956b641a69b6188a7ec7b6e91 = L.circleMarker(
[43.773136, -79.23947609999999],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.313688921750047, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_1fdf07d5c60a405d902fbd710db97573 = L.popup({"maxWidth": "100%"});
var html_5bb0b5213c1e485ebc00d13f14ca828e = $(`<div id="html_5bb0b5213c1e485ebc00d13f14ca828e" style="width: 100.0%; height: 100.0%;">Cedarbrae Coffee lack: 0.8</div>`)[0];
popup_1fdf07d5c60a405d902fbd710db97573.setContent(html_5bb0b5213c1e485ebc00d13f14ca828e);
circle_marker_6936412956b641a69b6188a7ec7b6e91.bindPopup(popup_1fdf07d5c60a405d902fbd710db97573)
;
var circle_marker_64f8be6246d74f7eb52c6d30529d2331 = L.circleMarker(
[43.8037622, -79.3634517],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.6269545049422582, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_ecff6996cf3142799134d03fe95e6dc0 = L.popup({"maxWidth": "100%"});
var html_b9ee13c8de6f4c0193a0e94797216890 = $(`<div id="html_b9ee13c8de6f4c0193a0e94797216890" style="width: 100.0%; height: 100.0%;">Hillcrest Village Coffee lack: 0.2</div>`)[0];
popup_ecff6996cf3142799134d03fe95e6dc0.setContent(html_b9ee13c8de6f4c0193a0e94797216890);
circle_marker_64f8be6246d74f7eb52c6d30529d2331.bindPopup(popup_ecff6996cf3142799134d03fe95e6dc0)
;
var circle_marker_0d529db282d14da3a6ea3ee62ef58fcc = L.circleMarker(
[43.7543283, -79.4422593],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.9910112242190203, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_8cf77e5b42e0435292a110a7a5b721af = L.popup({"maxWidth": "100%"});
var html_4c1d48bba8c542a8bed87770c5c05669 = $(`<div id="html_4c1d48bba8c542a8bed87770c5c05669" style="width: 100.0%; height: 100.0%;">Bathurst Manor, Wilson Heights, Downsview North Coffee lack: 0.3</div>`)[0];
popup_8cf77e5b42e0435292a110a7a5b721af.setContent(html_4c1d48bba8c542a8bed87770c5c05669);
circle_marker_0d529db282d14da3a6ea3ee62ef58fcc.bindPopup(popup_8cf77e5b42e0435292a110a7a5b721af)
;
var circle_marker_930977fb2e494b78b125d68ada82e7f1 = L.circleMarker(
[43.7053689, -79.34937190000001],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.442164032954522, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_0ecb7d8396d0468caeb03251bd21e424 = L.popup({"maxWidth": "100%"});
var html_7cabc193052145a59917ade26a2ea069 = $(`<div id="html_7cabc193052145a59917ade26a2ea069" style="width: 100.0%; height: 100.0%;">Thorncliffe Park Coffee lack: 1.8</div>`)[0];
popup_0ecb7d8396d0468caeb03251bd21e424.setContent(html_7cabc193052145a59917ade26a2ea069);
circle_marker_930977fb2e494b78b125d68ada82e7f1.bindPopup(popup_0ecb7d8396d0468caeb03251bd21e424)
;
var circle_marker_85c5deb10d334fb39386897f292cddb2 = L.circleMarker(
[43.65057120000001, -79.3845675],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.170351757214556, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_ed7aeac16c4c4ac99adf8d7cdad4c6a2 = L.popup({"maxWidth": "100%"});
var html_103e360d0d82456ba110133e0d04bf78 = $(`<div id="html_103e360d0d82456ba110133e0d04bf78" style="width: 100.0%; height: 100.0%;">Richmond, Adelaide, King Coffee lack: 0.1</div>`)[0];
popup_ed7aeac16c4c4ac99adf8d7cdad4c6a2.setContent(html_103e360d0d82456ba110133e0d04bf78);
circle_marker_85c5deb10d334fb39386897f292cddb2.bindPopup(popup_ed7aeac16c4c4ac99adf8d7cdad4c6a2)
;
var circle_marker_db473b3a34fc4ef4bbd050c4c71f06a8 = L.circleMarker(
[43.66900510000001, -79.4422593],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_6d74524591714ef5932ccfa1c0d38fe0 = L.popup({"maxWidth": "100%"});
var html_6cb70532a2af48bcadf30e830dd1c82a = $(`<div id="html_6cb70532a2af48bcadf30e830dd1c82a" style="width: 100.0%; height: 100.0%;">Dufferin, Dovercourt Village Coffee lack: 0.0</div>`)[0];
popup_6d74524591714ef5932ccfa1c0d38fe0.setContent(html_6cb70532a2af48bcadf30e830dd1c82a);
circle_marker_db473b3a34fc4ef4bbd050c4c71f06a8.bindPopup(popup_6d74524591714ef5932ccfa1c0d38fe0)
;
var circle_marker_ddc97ae0220149418bcf49c60a3408f6 = L.circleMarker(
[43.7447342, -79.23947609999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_bd66e4e2399545f79642f563cf98bd42 = L.popup({"maxWidth": "100%"});
var html_44295be66bd14dbaa7504d265a26a610 = $(`<div id="html_44295be66bd14dbaa7504d265a26a610" style="width: 100.0%; height: 100.0%;">Scarborough Village Coffee lack: 0.0</div>`)[0];
popup_bd66e4e2399545f79642f563cf98bd42.setContent(html_44295be66bd14dbaa7504d265a26a610);
circle_marker_ddc97ae0220149418bcf49c60a3408f6.bindPopup(popup_bd66e4e2399545f79642f563cf98bd42)
;
var circle_marker_4d75536a6ce843d098426bd8080df2c3 = L.circleMarker(
[43.7785175, -79.3465557],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3.512159385150553, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_6a15295bb0b142189b31219c78f483c2 = L.popup({"maxWidth": "100%"});
var html_611c7845e11a4c428b92802052870b2f = $(`<div id="html_611c7845e11a4c428b92802052870b2f" style="width: 100.0%; height: 100.0%;">Fairview, Henry Farm, Oriole Coffee lack: 0.8</div>`)[0];
popup_6a15295bb0b142189b31219c78f483c2.setContent(html_611c7845e11a4c428b92802052870b2f);
circle_marker_4d75536a6ce843d098426bd8080df2c3.bindPopup(popup_6a15295bb0b142189b31219c78f483c2)
;
var circle_marker_527a39b4923e4fd98dff92dcb5a821d5 = L.circleMarker(
[43.7679803, -79.48726190000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_17e79bb976504b16a4aa7da7a44db2b9 = L.popup({"maxWidth": "100%"});
var html_e3804a13c2ea43c48fff6130219fa0be = $(`<div id="html_e3804a13c2ea43c48fff6130219fa0be" style="width: 100.0%; height: 100.0%;">Northwood Park, York University Coffee lack: 0.0</div>`)[0];
popup_17e79bb976504b16a4aa7da7a44db2b9.setContent(html_e3804a13c2ea43c48fff6130219fa0be);
circle_marker_527a39b4923e4fd98dff92dcb5a821d5.bindPopup(popup_17e79bb976504b16a4aa7da7a44db2b9)
;
var circle_marker_79a24133903b45cba40821ad1764aca2 = L.circleMarker(
[43.685347, -79.3381065],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.4316448796944825, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_3a9aa133509844f396bb1bc58495ff30 = L.popup({"maxWidth": "100%"});
var html_1136fce6a725499687beb8a2e77e77c0 = $(`<div id="html_1136fce6a725499687beb8a2e77e77c0" style="width: 100.0%; height: 100.0%;">East Toronto, Broadview North (Old East York) Coffee lack: 0.1</div>`)[0];
popup_3a9aa133509844f396bb1bc58495ff30.setContent(html_1136fce6a725499687beb8a2e77e77c0);
circle_marker_79a24133903b45cba40821ad1764aca2.bindPopup(popup_3a9aa133509844f396bb1bc58495ff30)
;
var circle_marker_20c4d10fdda94b6faa3633963c0cf47a = L.circleMarker(
[43.6408157, -79.38175229999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_d912dc499cb14b8d8280d58d88682ca4 = L.popup({"maxWidth": "100%"});
var html_15f77b504c4f42d09183dbeb5c5ee45a = $(`<div id="html_15f77b504c4f42d09183dbeb5c5ee45a" style="width: 100.0%; height: 100.0%;">Harbourfront East, Union Station, Toronto Islands Coffee lack: 0.0</div>`)[0];
popup_d912dc499cb14b8d8280d58d88682ca4.setContent(html_15f77b504c4f42d09183dbeb5c5ee45a);
circle_marker_20c4d10fdda94b6faa3633963c0cf47a.bindPopup(popup_d912dc499cb14b8d8280d58d88682ca4)
;
var circle_marker_493b734ee14745978bd663d39a1c4323 = L.circleMarker(
[43.647926700000006, -79.4197497],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.479242095843192, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_1b256c07e5bd413b81b397e48a74f61f = L.popup({"maxWidth": "100%"});
var html_3a523d163abd4d8fad5102711ef2a1ae = $(`<div id="html_3a523d163abd4d8fad5102711ef2a1ae" style="width: 100.0%; height: 100.0%;">Little Portugal, Trinity Coffee lack: 1.8</div>`)[0];
popup_1b256c07e5bd413b81b397e48a74f61f.setContent(html_3a523d163abd4d8fad5102711ef2a1ae);
circle_marker_493b734ee14745978bd663d39a1c4323.bindPopup(popup_1b256c07e5bd413b81b397e48a74f61f)
;
var circle_marker_f97a2b0891e8440db5a3b75d4e5be6b9 = L.circleMarker(
[43.7279292, -79.26202940000002],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_62bfd8f6bdfe4a30997b2235b61dd25b = L.popup({"maxWidth": "100%"});
var html_cb8fe1082ef741fb9542ff8fddb8253c = $(`<div id="html_cb8fe1082ef741fb9542ff8fddb8253c" style="width: 100.0%; height: 100.0%;">Kennedy Park, Ionview, East Birchmount Park Coffee lack: 0.0</div>`)[0];
popup_62bfd8f6bdfe4a30997b2235b61dd25b.setContent(html_cb8fe1082ef741fb9542ff8fddb8253c);
circle_marker_f97a2b0891e8440db5a3b75d4e5be6b9.bindPopup(popup_62bfd8f6bdfe4a30997b2235b61dd25b)
;
var circle_marker_f1ef42c143b645e48d75b9b04d205418 = L.circleMarker(
[43.7869473, -79.385975],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_d68a8f8aeb3f4b19a692ee0644f853fa = L.popup({"maxWidth": "100%"});
var html_0e69a513d4084e2c8a497f5ae0a3aca5 = $(`<div id="html_0e69a513d4084e2c8a497f5ae0a3aca5" style="width: 100.0%; height: 100.0%;">Bayview Village Coffee lack: 0.0</div>`)[0];
popup_d68a8f8aeb3f4b19a692ee0644f853fa.setContent(html_0e69a513d4084e2c8a497f5ae0a3aca5);
circle_marker_f1ef42c143b645e48d75b9b04d205418.bindPopup(popup_d68a8f8aeb3f4b19a692ee0644f853fa)
;
var circle_marker_ca4b3250e079428496d7314e5dfb8697 = L.circleMarker(
[43.737473200000004, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.9935250079834652, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_3d77542150834a0db2ee6de5387fe5b9 = L.popup({"maxWidth": "100%"});
var html_f0251ecaf74a4b02845620003f4eea46 = $(`<div id="html_f0251ecaf74a4b02845620003f4eea46" style="width: 100.0%; height: 100.0%;">Downsview Coffee lack: 0.3</div>`)[0];
popup_3d77542150834a0db2ee6de5387fe5b9.setContent(html_f0251ecaf74a4b02845620003f4eea46);
circle_marker_ca4b3250e079428496d7314e5dfb8697.bindPopup(popup_3d77542150834a0db2ee6de5387fe5b9)
;
var circle_marker_0e5889c0530140be9bc930f6daee4756 = L.circleMarker(
[43.6795571, -79.352188],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5.5619165154817125, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_9ae5c5dad21e4aa09c13ee0535e1f6b4 = L.popup({"maxWidth": "100%"});
var html_6b6f90caa8d044ed87664e7e381b128d = $(`<div id="html_6b6f90caa8d044ed87664e7e381b128d" style="width: 100.0%; height: 100.0%;">The Danforth West, Riverdale Coffee lack: 1.5</div>`)[0];
popup_9ae5c5dad21e4aa09c13ee0535e1f6b4.setContent(html_6b6f90caa8d044ed87664e7e381b128d);
circle_marker_0e5889c0530140be9bc930f6daee4756.bindPopup(popup_9ae5c5dad21e4aa09c13ee0535e1f6b4)
;
var circle_marker_0b1db942b3cd49d3be669f903e2a9e1d = L.circleMarker(
[43.6471768, -79.38157640000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_97977f8216ae489e8131566626e986f1 = L.popup({"maxWidth": "100%"});
var html_4c6af4d85561429bbf4348350a946bb8 = $(`<div id="html_4c6af4d85561429bbf4348350a946bb8" style="width: 100.0%; height: 100.0%;">Toronto Dominion Centre, Design Exchange Coffee lack: 0.0</div>`)[0];
popup_97977f8216ae489e8131566626e986f1.setContent(html_4c6af4d85561429bbf4348350a946bb8);
circle_marker_0b1db942b3cd49d3be669f903e2a9e1d.bindPopup(popup_97977f8216ae489e8131566626e986f1)
;
var circle_marker_c0686d37cd7b4695ae404bef538d02eb = L.circleMarker(
[43.6368472, -79.42819140000002],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_7e62b22d928f451dbee5ce477ee67ec9 = L.popup({"maxWidth": "100%"});
var html_bc3052c96441433bb7de23b943aa87ce = $(`<div id="html_bc3052c96441433bb7de23b943aa87ce" style="width: 100.0%; height: 100.0%;">Brockton, Parkdale Village, Exhibition Place Coffee lack: 0.0</div>`)[0];
popup_7e62b22d928f451dbee5ce477ee67ec9.setContent(html_bc3052c96441433bb7de23b943aa87ce);
circle_marker_c0686d37cd7b4695ae404bef538d02eb.bindPopup(popup_7e62b22d928f451dbee5ce477ee67ec9)
;
var circle_marker_6548cb082d114f6e8be64826435ff4db = L.circleMarker(
[43.711111700000004, -79.2845772],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 4.031253572936047, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_44a3701900424b9c856caa6f8945c146 = L.popup({"maxWidth": "100%"});
var html_dfcc9123a2c34882840749f92dc3bc9a = $(`<div id="html_dfcc9123a2c34882840749f92dc3bc9a" style="width: 100.0%; height: 100.0%;">Golden Mile, Clairlea, Oakridge Coffee lack: 1.0</div>`)[0];
popup_44a3701900424b9c856caa6f8945c146.setContent(html_dfcc9123a2c34882840749f92dc3bc9a);
circle_marker_6548cb082d114f6e8be64826435ff4db.bindPopup(popup_44a3701900424b9c856caa6f8945c146)
;
var circle_marker_9aa12c105e7b425caf02437dc9a5c5c6 = L.circleMarker(
[43.7574902, -79.37471409999999],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_cc2eb6a6e0ae404fae5e79b92881dda8 = L.popup({"maxWidth": "100%"});
var html_d13a5fd0e9334a9d95d28e435267bc6a = $(`<div id="html_d13a5fd0e9334a9d95d28e435267bc6a" style="width: 100.0%; height: 100.0%;">York Mills, Silver Hills Coffee lack: 0.0</div>`)[0];
popup_cc2eb6a6e0ae404fae5e79b92881dda8.setContent(html_d13a5fd0e9334a9d95d28e435267bc6a);
circle_marker_9aa12c105e7b425caf02437dc9a5c5c6.bindPopup(popup_cc2eb6a6e0ae404fae5e79b92881dda8)
;
var circle_marker_1740d2eceb6544e9915bd44cf268f23e = L.circleMarker(
[43.7390146, -79.5069436],
{"bubblingMouseEvents": true, "color": "#0a9d87", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a9d87", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 2.7420773559929374, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_e599c2ce49ec47c08b7404552df1cb43 = L.popup({"maxWidth": "100%"});
var html_f852665bcdaa4aaebefbe6d32235ec2d = $(`<div id="html_f852665bcdaa4aaebefbe6d32235ec2d" style="width: 100.0%; height: 100.0%;">Downsview Coffee lack: 0.6</div>`)[0];
popup_e599c2ce49ec47c08b7404552df1cb43.setContent(html_f852665bcdaa4aaebefbe6d32235ec2d);
circle_marker_1740d2eceb6544e9915bd44cf268f23e.bindPopup(popup_e599c2ce49ec47c08b7404552df1cb43)
;
var circle_marker_c95de0896cff4fb6a356ff0034ea9806 = L.circleMarker(
[43.6689985, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "#08aa91", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#08aa91", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6.974308980717323, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_37a155c133684b5ebe162030d91da915 = L.popup({"maxWidth": "100%"});
var html_8950639d17c24263a0a6658f401cd984 = $(`<div id="html_8950639d17c24263a0a6658f401cd984" style="width: 100.0%; height: 100.0%;">India Bazaar, The Beaches West Coffee lack: 2.0</div>`)[0];
popup_37a155c133684b5ebe162030d91da915.setContent(html_8950639d17c24263a0a6658f401cd984);
circle_marker_c95de0896cff4fb6a356ff0034ea9806.bindPopup(popup_37a155c133684b5ebe162030d91da915)
;
var circle_marker_ae1c24dfed7d42e49dab7c2b8851642a = L.circleMarker(
[43.6481985, -79.37981690000001],
{"bubblingMouseEvents": true, "color": "#0d917d", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d917d", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 1.0, "stroke": true, "weight": 0}
).addTo(map_6ebcd1b6951a435199e727e6bb50107a);
var popup_2c65cf76804c449db56426aa9f3e479d = L.popup({"maxWidth": "100%"});
var html_11bf9e9b3d4641c898c774db535f916e = $(`<div id="html_11bf9e9b3d4641c898c774db535f916e" style="width: 100.0%; height: 100.0%;">Commerce Court, Victoria Hotel Coffee lack: 0.0</div>`)[0];
popup_2c65cf76804c449db56426aa9f3e479d.setContent(html_11bf9e9b3d4641c898c774db535f916e);
circle_marker_ae1c24dfed7d42e49dab7c2b8851642a.bindPopup(popup_2c65cf76804c449db56426aa9f3e479d)
;