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_K-Means (PCA)5_bnw.html
2026 lines (981 loc) · 107 KB
/
map_K-Means (PCA)5_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_8b31070e068a4bbca4194e9776969332 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_8b31070e068a4bbca4194e9776969332" ></div>
</body>
<script>
var map_8b31070e068a4bbca4194e9776969332 = L.map(
"map_8b31070e068a4bbca4194e9776969332",
{
center: [43.6534817, -79.3839347],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_6094de2685ef46f58911d2cbdc5b9dbd = 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_8b31070e068a4bbca4194e9776969332);
var tile_layer_45413d093f0544da9b1f22c632a5a58c = 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_8b31070e068a4bbca4194e9776969332);
var circle_marker_8387a07dc45645e9a17d4cd04fcce229 = L.circleMarker(
[43.7532586, -79.3296565],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_8d546ee0a13448259360f1144b036856 = L.popup({"maxWidth": "100%"});
var html_7b6f33428bfb4fb492d9b61427450ccd = $(`<div id="html_7b6f33428bfb4fb492d9b61427450ccd" style="width: 100.0%; height: 100.0%;">Parkwoods Cluster 1</div>`)[0];
popup_8d546ee0a13448259360f1144b036856.setContent(html_7b6f33428bfb4fb492d9b61427450ccd);
circle_marker_8387a07dc45645e9a17d4cd04fcce229.bindPopup(popup_8d546ee0a13448259360f1144b036856)
;
var circle_marker_3b362807402e4b73a61bd1c3eea133b3 = L.circleMarker(
[43.725882299999995, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_e7c72745777e41e2a7db5d9a09913cfd = L.popup({"maxWidth": "100%"});
var html_c814764d2b0945a4919fa0d957769c78 = $(`<div id="html_c814764d2b0945a4919fa0d957769c78" style="width: 100.0%; height: 100.0%;">Victoria Village Cluster 1</div>`)[0];
popup_e7c72745777e41e2a7db5d9a09913cfd.setContent(html_c814764d2b0945a4919fa0d957769c78);
circle_marker_3b362807402e4b73a61bd1c3eea133b3.bindPopup(popup_e7c72745777e41e2a7db5d9a09913cfd)
;
var circle_marker_a1d9d6f53ee04547a26360a8ef0013a6 = L.circleMarker(
[43.6542599, -79.3606359],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_9cf7fdb27f774d408e5a8874f2c7cfed = L.popup({"maxWidth": "100%"});
var html_95875370045c414d901f58ec4c40fabe = $(`<div id="html_95875370045c414d901f58ec4c40fabe" style="width: 100.0%; height: 100.0%;">Regent Park, Harbourfront Cluster 1</div>`)[0];
popup_9cf7fdb27f774d408e5a8874f2c7cfed.setContent(html_95875370045c414d901f58ec4c40fabe);
circle_marker_a1d9d6f53ee04547a26360a8ef0013a6.bindPopup(popup_9cf7fdb27f774d408e5a8874f2c7cfed)
;
var circle_marker_3d3494104eba402c915e06b44f136557 = L.circleMarker(
[43.718517999999996, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_843eb3561345458888a59df41d82e123 = L.popup({"maxWidth": "100%"});
var html_a3366494f3c24fe3be24ec90ee3abea8 = $(`<div id="html_a3366494f3c24fe3be24ec90ee3abea8" style="width: 100.0%; height: 100.0%;">Lawrence Manor, Lawrence Heights Cluster 1</div>`)[0];
popup_843eb3561345458888a59df41d82e123.setContent(html_a3366494f3c24fe3be24ec90ee3abea8);
circle_marker_3d3494104eba402c915e06b44f136557.bindPopup(popup_843eb3561345458888a59df41d82e123)
;
var circle_marker_f910081541b14a0996b899799247ee74 = L.circleMarker(
[43.6623015, -79.3894938],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_85f38c6a29e54ae6809faf54bf9f6b37 = L.popup({"maxWidth": "100%"});
var html_43a44c2388bd481386d5e86a990c9ad8 = $(`<div id="html_43a44c2388bd481386d5e86a990c9ad8" style="width: 100.0%; height: 100.0%;">Queen's Park, Ontario Provincial Government Cluster 1</div>`)[0];
popup_85f38c6a29e54ae6809faf54bf9f6b37.setContent(html_43a44c2388bd481386d5e86a990c9ad8);
circle_marker_f910081541b14a0996b899799247ee74.bindPopup(popup_85f38c6a29e54ae6809faf54bf9f6b37)
;
var circle_marker_62975914f1044674885a852268153d9e = L.circleMarker(
[43.6678556, -79.53224240000002],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_929f481254eb416f9f853a5db0d6f8dc = L.popup({"maxWidth": "100%"});
var html_4a9a6a8786764ee5b14a9541644c92c4 = $(`<div id="html_4a9a6a8786764ee5b14a9541644c92c4" style="width: 100.0%; height: 100.0%;">Islington Avenue, Humber Valley Village Cluster 1</div>`)[0];
popup_929f481254eb416f9f853a5db0d6f8dc.setContent(html_4a9a6a8786764ee5b14a9541644c92c4);
circle_marker_62975914f1044674885a852268153d9e.bindPopup(popup_929f481254eb416f9f853a5db0d6f8dc)
;
var circle_marker_377456a0e7e147d59a70b78a8de49d2e = L.circleMarker(
[43.806686299999996, -79.19435340000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_8f6c2df04f6f4b5fadfad540f28583ea = L.popup({"maxWidth": "100%"});
var html_bb77b91a4eb447df837c59bc6d3524e1 = $(`<div id="html_bb77b91a4eb447df837c59bc6d3524e1" style="width: 100.0%; height: 100.0%;">Malvern, Rouge Cluster 1</div>`)[0];
popup_8f6c2df04f6f4b5fadfad540f28583ea.setContent(html_bb77b91a4eb447df837c59bc6d3524e1);
circle_marker_377456a0e7e147d59a70b78a8de49d2e.bindPopup(popup_8f6c2df04f6f4b5fadfad540f28583ea)
;
var circle_marker_be6a10aba38745c9b75b036bf1f53655 = L.circleMarker(
[43.745905799999996, -79.352188],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_93ddca9cc2f84322a494b74b305bfe99 = L.popup({"maxWidth": "100%"});
var html_4dd71918526c496093827e695579af4a = $(`<div id="html_4dd71918526c496093827e695579af4a" style="width: 100.0%; height: 100.0%;">Don Mills Cluster 1</div>`)[0];
popup_93ddca9cc2f84322a494b74b305bfe99.setContent(html_4dd71918526c496093827e695579af4a);
circle_marker_be6a10aba38745c9b75b036bf1f53655.bindPopup(popup_93ddca9cc2f84322a494b74b305bfe99)
;
var circle_marker_149558fb25934e82988b46dfbfcdba56 = L.circleMarker(
[43.7063972, -79.309937],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_22ee3333c569422da7ea23d755bbf9d3 = L.popup({"maxWidth": "100%"});
var html_d3168ed31fe84ce996939af7d8f40493 = $(`<div id="html_d3168ed31fe84ce996939af7d8f40493" style="width: 100.0%; height: 100.0%;">Parkview Hill, Woodbine Gardens Cluster 1</div>`)[0];
popup_22ee3333c569422da7ea23d755bbf9d3.setContent(html_d3168ed31fe84ce996939af7d8f40493);
circle_marker_149558fb25934e82988b46dfbfcdba56.bindPopup(popup_22ee3333c569422da7ea23d755bbf9d3)
;
var circle_marker_55fdd1d688f141ce8a7d8c280f6ce183 = L.circleMarker(
[43.6571618, -79.37893709999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_29b835f9eafd425a944601b872178727 = L.popup({"maxWidth": "100%"});
var html_480e662374e6478891cc6ae60d42ce22 = $(`<div id="html_480e662374e6478891cc6ae60d42ce22" style="width: 100.0%; height: 100.0%;">Garden District, Ryerson Cluster 1</div>`)[0];
popup_29b835f9eafd425a944601b872178727.setContent(html_480e662374e6478891cc6ae60d42ce22);
circle_marker_55fdd1d688f141ce8a7d8c280f6ce183.bindPopup(popup_29b835f9eafd425a944601b872178727)
;
var circle_marker_a1044cee3f324ba58078c738eb30138d = L.circleMarker(
[43.709577, -79.44507259999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_103856fe474e4f78b0b90f02da3f663a = L.popup({"maxWidth": "100%"});
var html_95444a7a1da446b8ba58d9ee165e6749 = $(`<div id="html_95444a7a1da446b8ba58d9ee165e6749" style="width: 100.0%; height: 100.0%;">Glencairn Cluster 1</div>`)[0];
popup_103856fe474e4f78b0b90f02da3f663a.setContent(html_95444a7a1da446b8ba58d9ee165e6749);
circle_marker_a1044cee3f324ba58078c738eb30138d.bindPopup(popup_103856fe474e4f78b0b90f02da3f663a)
;
var circle_marker_1c6325744a044bf8810493e2d364aa81 = L.circleMarker(
[43.6509432, -79.55472440000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_c7dcefbfd1624a33accfa72c92960445 = L.popup({"maxWidth": "100%"});
var html_efa44f52a34c4371a11c2a638b3eb50a = $(`<div id="html_efa44f52a34c4371a11c2a638b3eb50a" style="width: 100.0%; height: 100.0%;">West Deane Park, Princess Gardens, Martin Grove, Islington, Cloverdale Cluster 1</div>`)[0];
popup_c7dcefbfd1624a33accfa72c92960445.setContent(html_efa44f52a34c4371a11c2a638b3eb50a);
circle_marker_1c6325744a044bf8810493e2d364aa81.bindPopup(popup_c7dcefbfd1624a33accfa72c92960445)
;
var circle_marker_5be6d37500994304b3c9b60f16cc1204 = L.circleMarker(
[43.7845351, -79.16049709999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_75a9fc6b76e94843a917e25922f49bb1 = L.popup({"maxWidth": "100%"});
var html_4e00571374ec4c41a8775b395751580d = $(`<div id="html_4e00571374ec4c41a8775b395751580d" style="width: 100.0%; height: 100.0%;">Rouge Hill, Port Union, Highland Creek Cluster 1</div>`)[0];
popup_75a9fc6b76e94843a917e25922f49bb1.setContent(html_4e00571374ec4c41a8775b395751580d);
circle_marker_5be6d37500994304b3c9b60f16cc1204.bindPopup(popup_75a9fc6b76e94843a917e25922f49bb1)
;
var circle_marker_096b20e1a0704af780cbc4eb28b58d19 = L.circleMarker(
[43.72589970000001, -79.340923],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_2b72a84f84314dcbaf36a99653b45bd9 = L.popup({"maxWidth": "100%"});
var html_e1c63e4b96cd449d8d6c35d8a9df9732 = $(`<div id="html_e1c63e4b96cd449d8d6c35d8a9df9732" style="width: 100.0%; height: 100.0%;">Don Mills Cluster 1</div>`)[0];
popup_2b72a84f84314dcbaf36a99653b45bd9.setContent(html_e1c63e4b96cd449d8d6c35d8a9df9732);
circle_marker_096b20e1a0704af780cbc4eb28b58d19.bindPopup(popup_2b72a84f84314dcbaf36a99653b45bd9)
;
var circle_marker_f219d723eaa04ec7bb85de7dceeec83a = L.circleMarker(
[43.695343900000005, -79.3183887],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_7594ccce96f74aef8807c2983749c886 = L.popup({"maxWidth": "100%"});
var html_fb8db75ba2fb43549e6a7f3fa9833c63 = $(`<div id="html_fb8db75ba2fb43549e6a7f3fa9833c63" style="width: 100.0%; height: 100.0%;">Woodbine Heights Cluster 1</div>`)[0];
popup_7594ccce96f74aef8807c2983749c886.setContent(html_fb8db75ba2fb43549e6a7f3fa9833c63);
circle_marker_f219d723eaa04ec7bb85de7dceeec83a.bindPopup(popup_7594ccce96f74aef8807c2983749c886)
;
var circle_marker_169f8627e92244d8bc4be866611dd778 = L.circleMarker(
[43.6514939, -79.3754179],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_e71c3167d57142e58dfe9a4f09831cb6 = L.popup({"maxWidth": "100%"});
var html_716a89471f4841b99579287d6a083d11 = $(`<div id="html_716a89471f4841b99579287d6a083d11" style="width: 100.0%; height: 100.0%;">St. James Town Cluster 1</div>`)[0];
popup_e71c3167d57142e58dfe9a4f09831cb6.setContent(html_716a89471f4841b99579287d6a083d11);
circle_marker_169f8627e92244d8bc4be866611dd778.bindPopup(popup_e71c3167d57142e58dfe9a4f09831cb6)
;
var circle_marker_2076726be1a849118e41b51737b5afa9 = L.circleMarker(
[43.6937813, -79.42819140000002],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_0350a14eb5b44f68a67d1a2ac0f8270a = L.popup({"maxWidth": "100%"});
var html_70d365cf34204f699040f60a29813540 = $(`<div id="html_70d365cf34204f699040f60a29813540" style="width: 100.0%; height: 100.0%;">Humewood-Cedarvale Cluster 1</div>`)[0];
popup_0350a14eb5b44f68a67d1a2ac0f8270a.setContent(html_70d365cf34204f699040f60a29813540);
circle_marker_2076726be1a849118e41b51737b5afa9.bindPopup(popup_0350a14eb5b44f68a67d1a2ac0f8270a)
;
var circle_marker_51339310927a4cc4872c42bcf0937461 = L.circleMarker(
[43.6435152, -79.57720079999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_5929ae0cb9484125b4fa947d0f26ef2b = L.popup({"maxWidth": "100%"});
var html_f5db5d05229a4ec5a3a34820c8fbf23d = $(`<div id="html_f5db5d05229a4ec5a3a34820c8fbf23d" style="width: 100.0%; height: 100.0%;">Eringate, Bloordale Gardens, Old Burnhamthorpe, Markland Wood Cluster 1</div>`)[0];
popup_5929ae0cb9484125b4fa947d0f26ef2b.setContent(html_f5db5d05229a4ec5a3a34820c8fbf23d);
circle_marker_51339310927a4cc4872c42bcf0937461.bindPopup(popup_5929ae0cb9484125b4fa947d0f26ef2b)
;
var circle_marker_a305190b6e854b6dad6455aec61091e0 = L.circleMarker(
[43.7635726, -79.1887115],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_e74a93a3c79d4cbab974c1d43a085154 = L.popup({"maxWidth": "100%"});
var html_ec711595217f42eb9be299e72c3e39fe = $(`<div id="html_ec711595217f42eb9be299e72c3e39fe" style="width: 100.0%; height: 100.0%;">Guildwood, Morningside, West Hill Cluster 1</div>`)[0];
popup_e74a93a3c79d4cbab974c1d43a085154.setContent(html_ec711595217f42eb9be299e72c3e39fe);
circle_marker_a305190b6e854b6dad6455aec61091e0.bindPopup(popup_e74a93a3c79d4cbab974c1d43a085154)
;
var circle_marker_2ae03d7399104c9887fac0bcd76c0352 = L.circleMarker(
[43.67635739999999, -79.2930312],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_a0b7b6f142144d0da5b215d6a0f9eb7e = L.popup({"maxWidth": "100%"});
var html_a5deb40709914c23bb7daaf22ac5be58 = $(`<div id="html_a5deb40709914c23bb7daaf22ac5be58" style="width: 100.0%; height: 100.0%;">The Beaches Cluster 1</div>`)[0];
popup_a0b7b6f142144d0da5b215d6a0f9eb7e.setContent(html_a5deb40709914c23bb7daaf22ac5be58);
circle_marker_2ae03d7399104c9887fac0bcd76c0352.bindPopup(popup_a0b7b6f142144d0da5b215d6a0f9eb7e)
;
var circle_marker_6e3eb62ca07a4e3c8be2306ea840af69 = L.circleMarker(
[43.644770799999996, -79.3733064],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_c9e80a41b63c42bd9a158c88abe114e6 = L.popup({"maxWidth": "100%"});
var html_117a98f4d4854a72aab3504e19970070 = $(`<div id="html_117a98f4d4854a72aab3504e19970070" style="width: 100.0%; height: 100.0%;">Berczy Park Cluster 1</div>`)[0];
popup_c9e80a41b63c42bd9a158c88abe114e6.setContent(html_117a98f4d4854a72aab3504e19970070);
circle_marker_6e3eb62ca07a4e3c8be2306ea840af69.bindPopup(popup_c9e80a41b63c42bd9a158c88abe114e6)
;
var circle_marker_82eb3c698f3c424187d79861e1aecb17 = L.circleMarker(
[43.6890256, -79.453512],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_c2d042918e174b69aac0db02f2f8f8c8 = L.popup({"maxWidth": "100%"});
var html_24cd5ac7bc7c407ab52dca4bd5bcea0d = $(`<div id="html_24cd5ac7bc7c407ab52dca4bd5bcea0d" style="width: 100.0%; height: 100.0%;">Caledonia-Fairbanks Cluster 1</div>`)[0];
popup_c2d042918e174b69aac0db02f2f8f8c8.setContent(html_24cd5ac7bc7c407ab52dca4bd5bcea0d);
circle_marker_82eb3c698f3c424187d79861e1aecb17.bindPopup(popup_c2d042918e174b69aac0db02f2f8f8c8)
;
var circle_marker_6af049a17a90441a9b40c7437b0a0f20 = L.circleMarker(
[43.7709921, -79.21691740000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_fce3fae80b2a4d11a286a9186e842db9 = L.popup({"maxWidth": "100%"});
var html_bf468e24b6a442e890a2224b66d2dcb4 = $(`<div id="html_bf468e24b6a442e890a2224b66d2dcb4" style="width: 100.0%; height: 100.0%;">Woburn Cluster 1</div>`)[0];
popup_fce3fae80b2a4d11a286a9186e842db9.setContent(html_bf468e24b6a442e890a2224b66d2dcb4);
circle_marker_6af049a17a90441a9b40c7437b0a0f20.bindPopup(popup_fce3fae80b2a4d11a286a9186e842db9)
;
var circle_marker_ba18a1b74f7646118d019d755d0d4f93 = L.circleMarker(
[43.7090604, -79.3634517],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_6c5f2c3361674b58a466f53403b4d0c7 = L.popup({"maxWidth": "100%"});
var html_990e6bef05634f4c9b33d53c0af20bb3 = $(`<div id="html_990e6bef05634f4c9b33d53c0af20bb3" style="width: 100.0%; height: 100.0%;">Leaside Cluster 1</div>`)[0];
popup_6c5f2c3361674b58a466f53403b4d0c7.setContent(html_990e6bef05634f4c9b33d53c0af20bb3);
circle_marker_ba18a1b74f7646118d019d755d0d4f93.bindPopup(popup_6c5f2c3361674b58a466f53403b4d0c7)
;
var circle_marker_245a01b518de491fa47c0f5718a64403 = L.circleMarker(
[43.6579524, -79.3873826],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_a80b7bbbc99c4b4fb4e7e47dfa5429cb = L.popup({"maxWidth": "100%"});
var html_741305b80b5141bb8fade054202a3559 = $(`<div id="html_741305b80b5141bb8fade054202a3559" style="width: 100.0%; height: 100.0%;">Central Bay Street Cluster 1</div>`)[0];
popup_a80b7bbbc99c4b4fb4e7e47dfa5429cb.setContent(html_741305b80b5141bb8fade054202a3559);
circle_marker_245a01b518de491fa47c0f5718a64403.bindPopup(popup_a80b7bbbc99c4b4fb4e7e47dfa5429cb)
;
var circle_marker_8ca0138393cb48d5baed39e611d39103 = L.circleMarker(
[43.669542, -79.4225637],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_8534ea1fc1c34cfbbef77eb9f52f90b6 = L.popup({"maxWidth": "100%"});
var html_4b0aceb265a3498691d9eb1655a11a36 = $(`<div id="html_4b0aceb265a3498691d9eb1655a11a36" style="width: 100.0%; height: 100.0%;">Christie Cluster 1</div>`)[0];
popup_8534ea1fc1c34cfbbef77eb9f52f90b6.setContent(html_4b0aceb265a3498691d9eb1655a11a36);
circle_marker_8ca0138393cb48d5baed39e611d39103.bindPopup(popup_8534ea1fc1c34cfbbef77eb9f52f90b6)
;
var circle_marker_96a96635ebd84c518ef637f2f868eb42 = L.circleMarker(
[43.773136, -79.23947609999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_dc5d9364021f44f6adf1f4170faafa19 = L.popup({"maxWidth": "100%"});
var html_add16fe655b74077b929ca3b81831aa2 = $(`<div id="html_add16fe655b74077b929ca3b81831aa2" style="width: 100.0%; height: 100.0%;">Cedarbrae Cluster 1</div>`)[0];
popup_dc5d9364021f44f6adf1f4170faafa19.setContent(html_add16fe655b74077b929ca3b81831aa2);
circle_marker_96a96635ebd84c518ef637f2f868eb42.bindPopup(popup_dc5d9364021f44f6adf1f4170faafa19)
;
var circle_marker_5c205271749f412d9e75c2cbc3bbf482 = L.circleMarker(
[43.8037622, -79.3634517],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_80626658f0d34303a7a4e9dece0f8e33 = L.popup({"maxWidth": "100%"});
var html_de55bc3908cb4dee8624de4058466e88 = $(`<div id="html_de55bc3908cb4dee8624de4058466e88" style="width: 100.0%; height: 100.0%;">Hillcrest Village Cluster 1</div>`)[0];
popup_80626658f0d34303a7a4e9dece0f8e33.setContent(html_de55bc3908cb4dee8624de4058466e88);
circle_marker_5c205271749f412d9e75c2cbc3bbf482.bindPopup(popup_80626658f0d34303a7a4e9dece0f8e33)
;
var circle_marker_7dbdccfd8cba4d59a954f0c4021f52ad = L.circleMarker(
[43.7543283, -79.4422593],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_987dcc2320344a82962dc7abd6b4a7d1 = L.popup({"maxWidth": "100%"});
var html_7fcdd6d4d87242a9bc5b063461752e8d = $(`<div id="html_7fcdd6d4d87242a9bc5b063461752e8d" style="width: 100.0%; height: 100.0%;">Bathurst Manor, Wilson Heights, Downsview North Cluster 1</div>`)[0];
popup_987dcc2320344a82962dc7abd6b4a7d1.setContent(html_7fcdd6d4d87242a9bc5b063461752e8d);
circle_marker_7dbdccfd8cba4d59a954f0c4021f52ad.bindPopup(popup_987dcc2320344a82962dc7abd6b4a7d1)
;
var circle_marker_81a4240111b84213aedbd874764fd1de = L.circleMarker(
[43.7053689, -79.34937190000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_9ed53e3906fd44b2a3b49c23d04bda3e = L.popup({"maxWidth": "100%"});
var html_d4da981c2e564de6ae3c6ce2ec52a0e9 = $(`<div id="html_d4da981c2e564de6ae3c6ce2ec52a0e9" style="width: 100.0%; height: 100.0%;">Thorncliffe Park Cluster 1</div>`)[0];
popup_9ed53e3906fd44b2a3b49c23d04bda3e.setContent(html_d4da981c2e564de6ae3c6ce2ec52a0e9);
circle_marker_81a4240111b84213aedbd874764fd1de.bindPopup(popup_9ed53e3906fd44b2a3b49c23d04bda3e)
;
var circle_marker_4bb72b0a5f1243519b1ff5b681db99ca = L.circleMarker(
[43.65057120000001, -79.3845675],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_676302ae16534bffa0cc7ed95fbae443 = L.popup({"maxWidth": "100%"});
var html_c4526d66a5cf45d695beab2edefeb7d6 = $(`<div id="html_c4526d66a5cf45d695beab2edefeb7d6" style="width: 100.0%; height: 100.0%;">Richmond, Adelaide, King Cluster 1</div>`)[0];
popup_676302ae16534bffa0cc7ed95fbae443.setContent(html_c4526d66a5cf45d695beab2edefeb7d6);
circle_marker_4bb72b0a5f1243519b1ff5b681db99ca.bindPopup(popup_676302ae16534bffa0cc7ed95fbae443)
;
var circle_marker_3a850f935efc41adaf2addd738c2cedd = L.circleMarker(
[43.66900510000001, -79.4422593],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_f37b23fa0c3944a49be42bd9441c1d2f = L.popup({"maxWidth": "100%"});
var html_6ff7f400d2bc4aabafbc97f9e85923ff = $(`<div id="html_6ff7f400d2bc4aabafbc97f9e85923ff" style="width: 100.0%; height: 100.0%;">Dufferin, Dovercourt Village Cluster 1</div>`)[0];
popup_f37b23fa0c3944a49be42bd9441c1d2f.setContent(html_6ff7f400d2bc4aabafbc97f9e85923ff);
circle_marker_3a850f935efc41adaf2addd738c2cedd.bindPopup(popup_f37b23fa0c3944a49be42bd9441c1d2f)
;
var circle_marker_6fc8939eaa894af7b8104f4a0c18d990 = L.circleMarker(
[43.7447342, -79.23947609999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_a5d5286e7b954d3d934f75dc235e55ef = L.popup({"maxWidth": "100%"});
var html_2f0c15d4f0c44d919d423c72a195ff86 = $(`<div id="html_2f0c15d4f0c44d919d423c72a195ff86" style="width: 100.0%; height: 100.0%;">Scarborough Village Cluster 1</div>`)[0];
popup_a5d5286e7b954d3d934f75dc235e55ef.setContent(html_2f0c15d4f0c44d919d423c72a195ff86);
circle_marker_6fc8939eaa894af7b8104f4a0c18d990.bindPopup(popup_a5d5286e7b954d3d934f75dc235e55ef)
;
var circle_marker_3e1427f6712b4fb0874a4b84fd927598 = L.circleMarker(
[43.7785175, -79.3465557],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_7e1bd0a35553491c8fc6fd7e53e6a976 = L.popup({"maxWidth": "100%"});
var html_d82c0d8e2c2d4707b0ead81dde3c50ac = $(`<div id="html_d82c0d8e2c2d4707b0ead81dde3c50ac" style="width: 100.0%; height: 100.0%;">Fairview, Henry Farm, Oriole Cluster 1</div>`)[0];
popup_7e1bd0a35553491c8fc6fd7e53e6a976.setContent(html_d82c0d8e2c2d4707b0ead81dde3c50ac);
circle_marker_3e1427f6712b4fb0874a4b84fd927598.bindPopup(popup_7e1bd0a35553491c8fc6fd7e53e6a976)
;
var circle_marker_c9e20d0ae26a4306a8e08e08db468d05 = L.circleMarker(
[43.7679803, -79.48726190000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_22fd359bc42c4c2b8501e39d1c222f61 = L.popup({"maxWidth": "100%"});
var html_532d2816a0954fad96e14f26af80242d = $(`<div id="html_532d2816a0954fad96e14f26af80242d" style="width: 100.0%; height: 100.0%;">Northwood Park, York University Cluster 1</div>`)[0];
popup_22fd359bc42c4c2b8501e39d1c222f61.setContent(html_532d2816a0954fad96e14f26af80242d);
circle_marker_c9e20d0ae26a4306a8e08e08db468d05.bindPopup(popup_22fd359bc42c4c2b8501e39d1c222f61)
;
var circle_marker_f1bd0094ee1240088045ef1f00eeb2ab = L.circleMarker(
[43.685347, -79.3381065],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_9046fbf1c432475f8f2c2b7778c79861 = L.popup({"maxWidth": "100%"});
var html_e8e86543b0d145c0bf1e7b00b1498cf7 = $(`<div id="html_e8e86543b0d145c0bf1e7b00b1498cf7" style="width: 100.0%; height: 100.0%;">East Toronto, Broadview North (Old East York) Cluster 1</div>`)[0];
popup_9046fbf1c432475f8f2c2b7778c79861.setContent(html_e8e86543b0d145c0bf1e7b00b1498cf7);
circle_marker_f1bd0094ee1240088045ef1f00eeb2ab.bindPopup(popup_9046fbf1c432475f8f2c2b7778c79861)
;
var circle_marker_9dfcea5421a54801b129354619991043 = L.circleMarker(
[43.6408157, -79.38175229999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_b38ae4602870492ba8ad679dd09678a3 = L.popup({"maxWidth": "100%"});
var html_b28bf00b0e3b4c489653e0d6806efbf9 = $(`<div id="html_b28bf00b0e3b4c489653e0d6806efbf9" style="width: 100.0%; height: 100.0%;">Harbourfront East, Union Station, Toronto Islands Cluster 1</div>`)[0];
popup_b38ae4602870492ba8ad679dd09678a3.setContent(html_b28bf00b0e3b4c489653e0d6806efbf9);
circle_marker_9dfcea5421a54801b129354619991043.bindPopup(popup_b38ae4602870492ba8ad679dd09678a3)
;
var circle_marker_5ebbd90532ec4191b2140d351b4bf4e3 = L.circleMarker(
[43.647926700000006, -79.4197497],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_626263d2cc844940bdd95f90c1dd1740 = L.popup({"maxWidth": "100%"});
var html_7be84e2d3b3e4249958dc74c706100bd = $(`<div id="html_7be84e2d3b3e4249958dc74c706100bd" style="width: 100.0%; height: 100.0%;">Little Portugal, Trinity Cluster 1</div>`)[0];
popup_626263d2cc844940bdd95f90c1dd1740.setContent(html_7be84e2d3b3e4249958dc74c706100bd);
circle_marker_5ebbd90532ec4191b2140d351b4bf4e3.bindPopup(popup_626263d2cc844940bdd95f90c1dd1740)
;
var circle_marker_8be7bb4b280a480fb9cfdcc8b40584fd = L.circleMarker(
[43.7279292, -79.26202940000002],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_1f599ac51e7f434ab38903d6477e8ed6 = L.popup({"maxWidth": "100%"});
var html_d0668f97c8064dd08768034256cba3df = $(`<div id="html_d0668f97c8064dd08768034256cba3df" style="width: 100.0%; height: 100.0%;">Kennedy Park, Ionview, East Birchmount Park Cluster 1</div>`)[0];
popup_1f599ac51e7f434ab38903d6477e8ed6.setContent(html_d0668f97c8064dd08768034256cba3df);
circle_marker_8be7bb4b280a480fb9cfdcc8b40584fd.bindPopup(popup_1f599ac51e7f434ab38903d6477e8ed6)
;
var circle_marker_ad1f3202d3bb4ec48b5d65e439e73f22 = L.circleMarker(
[43.7869473, -79.385975],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_45f0b00705b241f499031b833680189f = L.popup({"maxWidth": "100%"});
var html_cfbd05b0cffb424487ec283101454ad5 = $(`<div id="html_cfbd05b0cffb424487ec283101454ad5" style="width: 100.0%; height: 100.0%;">Bayview Village Cluster 1</div>`)[0];
popup_45f0b00705b241f499031b833680189f.setContent(html_cfbd05b0cffb424487ec283101454ad5);
circle_marker_ad1f3202d3bb4ec48b5d65e439e73f22.bindPopup(popup_45f0b00705b241f499031b833680189f)
;
var circle_marker_09b694a2124b4047be8fa4007add6ce9 = L.circleMarker(
[43.737473200000004, -79.46476329999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_567f2c3918e54696a814132c95cad3ed = L.popup({"maxWidth": "100%"});
var html_5b1a16915fa54fbf9c6d88da474a0f35 = $(`<div id="html_5b1a16915fa54fbf9c6d88da474a0f35" style="width: 100.0%; height: 100.0%;">Downsview Cluster 1</div>`)[0];
popup_567f2c3918e54696a814132c95cad3ed.setContent(html_5b1a16915fa54fbf9c6d88da474a0f35);
circle_marker_09b694a2124b4047be8fa4007add6ce9.bindPopup(popup_567f2c3918e54696a814132c95cad3ed)
;
var circle_marker_ec153446e94345c7a0c50ce5c8655d1e = L.circleMarker(
[43.6795571, -79.352188],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_2b52466fff4a403bab77974e2adc605a = L.popup({"maxWidth": "100%"});
var html_bd39eea4c64b4dcba5dc186555c3d040 = $(`<div id="html_bd39eea4c64b4dcba5dc186555c3d040" style="width: 100.0%; height: 100.0%;">The Danforth West, Riverdale Cluster 1</div>`)[0];
popup_2b52466fff4a403bab77974e2adc605a.setContent(html_bd39eea4c64b4dcba5dc186555c3d040);
circle_marker_ec153446e94345c7a0c50ce5c8655d1e.bindPopup(popup_2b52466fff4a403bab77974e2adc605a)
;
var circle_marker_af73347b06fb4bd8b4ba84ba524bba00 = L.circleMarker(
[43.6471768, -79.38157640000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_de063bccadda43368cfefd8f3a7cdc67 = L.popup({"maxWidth": "100%"});
var html_8acc9f2db5d84b33a829cca0279aa8e5 = $(`<div id="html_8acc9f2db5d84b33a829cca0279aa8e5" style="width: 100.0%; height: 100.0%;">Toronto Dominion Centre, Design Exchange Cluster 1</div>`)[0];
popup_de063bccadda43368cfefd8f3a7cdc67.setContent(html_8acc9f2db5d84b33a829cca0279aa8e5);
circle_marker_af73347b06fb4bd8b4ba84ba524bba00.bindPopup(popup_de063bccadda43368cfefd8f3a7cdc67)
;
var circle_marker_bdfe27fd13774801976ac8242337d9cb = L.circleMarker(
[43.6368472, -79.42819140000002],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_37c139c949684fc3961530855080564d = L.popup({"maxWidth": "100%"});
var html_f36874d9137046778e7e91a64c056764 = $(`<div id="html_f36874d9137046778e7e91a64c056764" style="width: 100.0%; height: 100.0%;">Brockton, Parkdale Village, Exhibition Place Cluster 1</div>`)[0];
popup_37c139c949684fc3961530855080564d.setContent(html_f36874d9137046778e7e91a64c056764);
circle_marker_bdfe27fd13774801976ac8242337d9cb.bindPopup(popup_37c139c949684fc3961530855080564d)
;
var circle_marker_f52687f24fdc4de7872b9b3bbb083aa6 = L.circleMarker(
[43.711111700000004, -79.2845772],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_db7d553906e34ca2968999466c0bb65f = L.popup({"maxWidth": "100%"});
var html_25306f7b57924cf382d5dc87408794e3 = $(`<div id="html_25306f7b57924cf382d5dc87408794e3" style="width: 100.0%; height: 100.0%;">Golden Mile, Clairlea, Oakridge Cluster 1</div>`)[0];
popup_db7d553906e34ca2968999466c0bb65f.setContent(html_25306f7b57924cf382d5dc87408794e3);
circle_marker_f52687f24fdc4de7872b9b3bbb083aa6.bindPopup(popup_db7d553906e34ca2968999466c0bb65f)
;
var circle_marker_e0f37ab8c64649c6a82fabfd29b437d1 = L.circleMarker(
[43.7574902, -79.37471409999999],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_450978a5eb37491082519aa775380c53 = L.popup({"maxWidth": "100%"});
var html_23d83991e60c49b0bbdeea11c7211d59 = $(`<div id="html_23d83991e60c49b0bbdeea11c7211d59" style="width: 100.0%; height: 100.0%;">York Mills, Silver Hills Cluster 1</div>`)[0];
popup_450978a5eb37491082519aa775380c53.setContent(html_23d83991e60c49b0bbdeea11c7211d59);
circle_marker_e0f37ab8c64649c6a82fabfd29b437d1.bindPopup(popup_450978a5eb37491082519aa775380c53)
;
var circle_marker_232994458bed404587948da3c33936a8 = L.circleMarker(
[43.7390146, -79.5069436],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_0383918c99ce474fbb3cc369a7736d85 = L.popup({"maxWidth": "100%"});
var html_4f343abe37904cf181f3cc6c2c564d75 = $(`<div id="html_4f343abe37904cf181f3cc6c2c564d75" style="width: 100.0%; height: 100.0%;">Downsview Cluster 1</div>`)[0];
popup_0383918c99ce474fbb3cc369a7736d85.setContent(html_4f343abe37904cf181f3cc6c2c564d75);
circle_marker_232994458bed404587948da3c33936a8.bindPopup(popup_0383918c99ce474fbb3cc369a7736d85)
;
var circle_marker_816c7f6f5ebe40d5827e49ce42ac500e = L.circleMarker(
[43.6689985, -79.31557159999998],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_562eb30c04e946648701833a06badd05 = L.popup({"maxWidth": "100%"});
var html_0f2485e573f84ee09aae153f3070def3 = $(`<div id="html_0f2485e573f84ee09aae153f3070def3" style="width: 100.0%; height: 100.0%;">India Bazaar, The Beaches West Cluster 1</div>`)[0];
popup_562eb30c04e946648701833a06badd05.setContent(html_0f2485e573f84ee09aae153f3070def3);
circle_marker_816c7f6f5ebe40d5827e49ce42ac500e.bindPopup(popup_562eb30c04e946648701833a06badd05)
;
var circle_marker_872bbc75d02e4edc87f35e4678c359a7 = L.circleMarker(
[43.6481985, -79.37981690000001],
{"bubblingMouseEvents": true, "color": "#5247fc", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#5247fc", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_8b31070e068a4bbca4194e9776969332);
var popup_2081bce0e929400a922d6d94a5b1edbe = L.popup({"maxWidth": "100%"});
var html_7fea729847d64fb39a43525c8f9ce80d = $(`<div id="html_7fea729847d64fb39a43525c8f9ce80d" style="width: 100.0%; height: 100.0%;">Commerce Court, Victoria Hotel Cluster 1</div>`)[0];
popup_2081bce0e929400a922d6d94a5b1edbe.setContent(html_7fea729847d64fb39a43525c8f9ce80d);
circle_marker_872bbc75d02e4edc87f35e4678c359a7.bindPopup(popup_2081bce0e929400a922d6d94a5b1edbe)
;