-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathchain_restaurant_plot.html
More file actions
2217 lines (1486 loc) · 166 KB
/
chain_restaurant_plot.html
File metadata and controls
2217 lines (1486 loc) · 166 KB
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>
<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>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/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/leaflet@1.6.0/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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_e672e352b774434b83c1cd79fad4e4f2 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_e672e352b774434b83c1cd79fad4e4f2" ></div>
</body>
<script>
var map_e672e352b774434b83c1cd79fad4e4f2 = L.map(
"map_e672e352b774434b83c1cd79fad4e4f2",
{
center: [49.284808779798745, -123.12244539679432],
crs: L.CRS.EPSG3857,
zoom: 10,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_2e292d214ee84cdfa8b7591a9074b4f4 = 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_e672e352b774434b83c1cd79fad4e4f2);
var circle_c9f32f0830f248c599841ab0d784d771 = L.circle(
[49.2457903, -122.8916363],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_85f1dfd3d8fc46edbedcaa925c0600fc = L.circle(
[49.1674933, -122.6674453],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_26faa70553504224b3644169787cd5d1 = L.circle(
[49.2634241, -123.1173128],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_dcc6b09ceb9147afa977ea3a7ed2f40d = L.circle(
[49.2257668, -122.9968006],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_bbd8322df3b44949836cad41d30db9fe = L.circle(
[49.1694686, -122.6657545],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8a1d4b2e096542bba560f7b0dd4d22c9 = L.circle(
[49.274321, -123.1237748],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_602a7cc4540940559f3bcad557e14779 = L.circle(
[49.1468811, -122.8910518],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_95f064d0a9f246ca83b2dca586c14490 = L.circle(
[49.1711386, -123.1360519],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_84177ae96b8c47f59a106fc1eb2a037d = L.circle(
[49.1343339, -123.0651422],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_377f13d20a94488e9af626e6325af34b = L.circle(
[49.1717889, -123.1359234],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_61258cc680574d60918bdb2323e7c8e4 = L.circle(
[49.2305371, -123.007442],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d0d46d50498a424983dc9733b43a9a0a = L.circle(
[49.1863895, -122.8474565],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8a3aadda25994abf9de2f7a4459f9d36 = L.circle(
[49.035414, -122.2663773],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_146868acf302443bbd4bb7c4426a33f9 = L.circle(
[49.2764454, -123.1195159],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_093526b1a470458bbcc703c083f531dd = L.circle(
[49.1784334, -123.121667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_1e38287c844645f0bda7c9c026cc6345 = L.circle(
[49.1710207, -123.139394],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c5b36acc68104e028e9d75fc9d20b077 = L.circle(
[49.2637838, -123.1393347],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d025d7ff3c334ff4bd469a21f631ece6 = L.circle(
[49.3244571, -123.1076419],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_f99fe5f0039245a886170ec8654ed141 = L.circle(
[49.3240623, -123.1087802],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e5b035124b724703ba0be5abaa6ed23d = L.circle(
[49.3556326, -123.1059033],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_da0f13e200b54e12a6f1c7475f2e5347 = L.circle(
[49.2334631, -123.034937],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_1220898ec97c4fd88a5b6775d2dece10 = L.circle(
[49.2340779, -123.0353715],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_9c0ded65859f4b18b9d2ca8ee5fc148e = L.circle(
[49.12737, -122.8452404],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_123a053b494f4fefbbd8c53676158a0c = L.circle(
[49.253994, -123.2353546],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_f8b4f72b131a4b3b8fcbf4123c4cefe1 = L.circle(
[49.2230985, -122.9821688],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b3595b00c2f948969bea3624d7454db0 = L.circle(
[49.2204967, -122.9757219],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_113656ce6fdb43e7ac3db2d795351046 = L.circle(
[49.255495, -122.7466809],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_bb79e98cea61461099646925386b3f6b = L.circle(
[49.226799, -122.9937567],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_7a842e5015b24409921c8df303ff4775 = L.circle(
[49.2694998, -123.1077015],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_01e7c25faaa047f182cbe90a33e82d75 = L.circle(
[49.2293878, -123.0904982],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_333b755beaa2416e9167e37fad20251e = L.circle(
[49.2268102, -123.0040761],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_384aad9d04a445fc8d34daf9b94f938c = L.circle(
[49.226354, -123.0039637],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_960a63590a3744889b06692e161e07a1 = L.circle(
[49.226408, -123.0036228],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_fa201fed25f947f2a47d562a82f02c4e = L.circle(
[49.2632255, -123.1333895],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_2b7be0820fb144358b41a086bc532c93 = L.circle(
[49.2503562, -123.1007457],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_15c4fe8540d34f9bb577c3bfbf2960d0 = L.circle(
[49.2300329, -123.003695],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_14fe267f419b45da9d5f49b389620b53 = L.circle(
[49.2317641, -123.0091627],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c63ab5907235461dba21f29878c064e6 = L.circle(
[49.2717708, -123.0697537],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_415e0e9ea5cf4b9e806bc16140f17823 = L.circle(
[49.0910725, -122.6074795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c681889f65304dbf93dd73399bef2994 = L.circle(
[49.2761259, -123.1206022],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_965f76996c8144c0a4c8e1e3560a24c2 = L.circle(
[49.218154, -122.6436783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_74a1a57be36e4d4fbc2819d8be2c1548 = L.circle(
[49.1980237, -122.9785339],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ae4f8b2f722447cabd02ba79511a8870 = L.circle(
[49.2798153, -123.1236381],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_f39136329a5c472db2392846b60da407 = L.circle(
[49.0458177, -122.7972582],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_1372febb89dc4f82b622d3360d7d4518 = L.circle(
[49.172236, -123.1358351],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_febca59c0d604aa5a7dfd41f4ea7420e = L.circle(
[49.222971, -122.9841291],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_006ad67e76544b4fba810ece10f91fee = L.circle(
[49.2290001, -123.000461],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_14f7d0bd75f247a8b19fc006b0a9d0de = L.circle(
[49.227687, -123.0904914],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_35072be55fc64d789c5db59ef0047eff = L.circle(
[49.2493978, -123.0739174],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d4d39857d42f40c08c8637f0985d2f52 = L.circle(
[49.2376572, -123.1556393],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_952bb00c53c14b8492618b747cc15766 = L.circle(
[49.263672, -123.20716],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b0d5eb004cdc45769913301f82a64925 = L.circle(
[49.2637428, -123.2104101],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_55472ad5564945c59974a5db8ae5779b = L.circle(
[49.0348989, -122.8008819],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_9f123e62892946a293c68a54c9a17d6b = L.circle(
[49.0375485, -122.8009329],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e97115e248eb472bb7d153e189b3776b = L.circle(
[49.0463697, -122.8016813],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_901981fd3d2042e0a50bf94b6b984506 = L.circle(
[49.0452315, -122.7786492],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_de8989c2917e4576a1f606f786a3a3f7 = L.circle(
[49.0472452, -122.7839835],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_fdbdcefb427a4d13ba33a8468e7daea0 = L.circle(
[49.044654, -122.7772023],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5a2d6f5c7b564c50bfbd356c874d40ed = L.circle(
[49.0451866, -122.7781347],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_982dab70ea284a7391e10d1ca1d6994d = L.circle(
[49.0292578, -122.8005183],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_48238c3da1944b78a4c65685262c4167 = L.circle(
[49.0307761, -122.7993521],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5c686dbf1aef482a8d6b3872f1c9a953 = L.circle(
[49.2188492, -122.9645805],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_3f1109060a044d8aa045b758fc973281 = L.circle(
[49.2818319, -123.1234128],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b01d793c79244fb9b2222260a86d4c6c = L.circle(
[49.226149, -122.9917461],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_4ce2af4106c14abf81c6a1cb0ff17244 = L.circle(
[49.10485, -122.8028182],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_47c760815ecb4a2b8c7bdf247d64114c = L.circle(
[49.1856947, -122.801637],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b391fd2e1b064136892f29ac27f11fc2 = L.circle(
[49.2799326, -123.1302522],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_994268beae1a42ec86036c65a12c70ed = L.circle(
[49.1037213, -122.7281926],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_145ffb55db2c47d2ae004cc99b90ef03 = L.circle(
[49.1709535, -123.1824399],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_7b8a95a066b744788e00b4ea32620c7d = L.circle(
[49.2838437, -123.1053674],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5b38c16c9a914c6f8d3afa808afd9ebe = L.circle(
[49.2540725, -123.2359295],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_13f91360b6194ee39307651f43ac13b9 = L.circle(
[49.1123933, -122.6772604],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ce7541f093a54ebc80ee2d315cfa3d47 = L.circle(
[49.2829671, -123.1105765],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_41e65842d24f41788f296d1dd35c3513 = L.circle(
[49.0326388, -122.801449],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_649af7384967427d9803091d2c2621d2 = L.circle(
[49.2804382, -123.1181035],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_3d96cd3e284143658442754378cf54df = L.circle(
[49.3122034, -123.0789593],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_127be93a762d464f80ad2b0de96ac887 = L.circle(
[49.2786259, -123.1160142],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e108e7ce1f954bcf885f2b7b4437e803 = L.circle(
[49.2575621, -123.1148455],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b4fbfda4c38d454d9f6b0c55fdbf0eb6 = L.circle(
[49.285769, -123.1247049],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_9ce835f13a8c4c2aa12e47c23117ee88 = L.circle(
[49.2627174, -123.1000189],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_22e1838a5e1246569b585dd2cf2eae5f = L.circle(
[49.0904674, -123.0790855],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d6091b4af0104dd29c5c7ed5c31776f6 = L.circle(
[49.3210825, -123.0956321],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c5243981618745369380051705799ae6 = L.circle(
[49.1637059, -122.6604812],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_bde34ecfb7b84c7c857cce55c1b31883 = L.circle(
[49.2681152, -123.1595834],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e9d6f70ea3ef4122b1f0aa79cca0c8f5 = L.circle(
[49.2681518, -123.1463206],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_f61c1005b20242f99561f4760302b76c = L.circle(
[49.2680714, -123.1568116],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_7bcdd5603ea44bb595563852c0907630 = L.circle(
[49.268201, -123.1486188],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ec4159b589ef4d15bb23cb8986dc209d = L.circle(
[49.2681756, -123.1481478],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_f272e6b2ead34a5c830c2ca04c3ee80b = L.circle(
[49.2664116, -123.0140254],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ae8bde1076a14fa0b88038cab0048c48 = L.circle(
[49.189306, -122.8026622],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_de6a7e58876147599ec5c85c21f9b7c4 = L.circle(
[49.0906097, -123.0802207],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_744fc4e2476747529cde2dbbf125f2bb = L.circle(
[49.0583832, -122.3780427],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_69e9e3906aed44b3915ccd556217fe1f = L.circle(
[49.0584965, -122.3808116],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_2f68a3c8651846b48613de5e0df3fb8f = L.circle(
[49.0582246, -122.3808805],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_3da8c43387134a13b25512bc6f65d405 = L.circle(
[49.278102, -122.9099445],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_901297a73e9b42058046f1a372a0ceee = L.circle(
[49.2781344, -122.9101527],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_1296c9bd7de64041892893dd3aecd436 = L.circle(
[49.2827611, -123.1096481],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_53c6163f0eea4b37931fccf37e635753 = L.circle(
[49.0562149, -122.380711],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_a9e50e7280c8416aa1bc47e7f0f17bbb = L.circle(
[49.2492559, -122.8670655],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_326ef976e7da4500944b87220e1c311e = L.circle(
[49.285504, -123.118815],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c3b7d4bfe1e046f3a6509648ecf0e48c = L.circle(
[49.2874308, -123.1149042],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_c0e704cf78fb4e5d851a2de56b32216a = L.circle(
[49.2886227, -123.1400296],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ef4134080f10489da33d53d1305f85bd = L.circle(
[49.1326737, -122.3388665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_fcad735c42c44b6698ba1c5c34fc37e3 = L.circle(
[49.132705, -122.3390044],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e6779f30383c49d1bc7c6003b46dd3f8 = L.circle(
[49.2339814, -122.8626888],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_60f675ead94e401e9e53f3444df398c8 = L.circle(
[49.254194, -123.2360217],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_6677e908418a4318983a6d6ecfe00227 = L.circle(
[49.288292, -123.14005],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_20b043a77a094360b7482e2a9da9a3fc = L.circle(
[49.2251548, -123.1018741],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8ab863ddee81494f9289912b6591c946 = L.circle(
[49.2778406, -122.9118791],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_20d9ab5806934e0aa5a92955f5f4f93b = L.circle(
[49.1780886, -123.1274542],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_939150a3a6294cbf8e07ab700e99a310 = L.circle(
[49.2630798, -123.1160636],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_93f2876906d5470d91248b6b24406223 = L.circle(
[49.26428, -123.1722925],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b99b2fd7ba7749e18a5960d43611c5e6 = L.circle(
[49.2750892, -123.1227583],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_34e3fc9218b54fc594cb8d93d37b61ff = L.circle(
[49.2190996, -122.9671782],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_64255bf37d3a47e59ef30a5bf8c94125 = L.circle(
[49.197361, -123.178806],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_38373406da5546fda67576bed0f992c4 = L.circle(
[49.2144651, -122.9881069],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_24958a2feb724ffca47bb86ce9238258 = L.circle(
[49.2620586, -123.0333402],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_934c03280c1a45419d3b26e23cfd9de2 = L.circle(
[49.2557109, -123.1153628],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_eb8543f9f30644ca895baf084c3ce697 = L.circle(
[49.2634282, -123.1170237],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e3971aa47bae43cfbb48b15e9af94097 = L.circle(
[49.2544914, -123.1012783],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e673734f626b4b09813cb807e06c55f5 = L.circle(
[49.280319, -123.131586],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_0142d3e98e704e738d118d3a2afa4388 = L.circle(
[49.2878101, -123.1412192],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_4a92ffd6d4894c7194ead63290a9caa6 = L.circle(
[49.1193301, -122.8235877],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_a997870da67446c88002e309ec4e5cb4 = L.circle(
[49.3264332, -123.1392875],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_473fa290adc64cd1b8400efd8895a05b = L.circle(
[49.0223678, -122.8084716],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_90f749b42e4b486abd0ff83ddc97500c = L.circle(
[49.1724288, -123.1361124],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_4cdc0c94e7cb473a8ca969c0801b0dff = L.circle(
[49.2179441, -122.6483993],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d8d8f5130ea948fca54cebb99210f8f3 = L.circle(
[49.2799857, -123.1303512],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_99be427edff646d683f49e5da1635123 = L.circle(
[49.2329098, -123.0331932],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_1983b27491b64be79bf788e8047d9b15 = L.circle(
[49.2846234, -123.125267],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_b845846bec6d4644abccdbf0a4b3954e = L.circle(
[49.1917274, -123.0808548],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_19bf73b7849948e29ac32f1386dd4a05 = L.circle(
[49.2743433, -123.1232695],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5e68057a72e94360b0ef9cd6027aa8c6 = L.circle(
[49.2785408, -123.1157423],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d6cd9fd453404809aa2fa3143ed95eef = L.circle(
[49.26948, -123.1072592],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_dd029382b5804ef9b2169dc492d7f66e = L.circle(
[49.26955, -123.1091434],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_113c08f95ead4c749767fe2232f9ea87 = L.circle(
[49.1857231, -122.8000278],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d4884d631eec42398ac2aee302f9e165 = L.circle(
[49.2778963, -122.7936486],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_478646e1d072417fa262d63a9c114a42 = L.circle(
[49.2625064, -123.1012808],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ca4940c7139641b2847b9aa0327813ae = L.circle(
[49.0589538, -122.4922744],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_3a8e5940293048f38016e9b7c8f63b6b = L.circle(
[49.0580042, -122.4919543],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8deac35489fc47b4b4e09a639a263651 = L.circle(
[49.3251311, -123.1242373],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d804184ad31b4fc4bb0cf92179303535 = L.circle(
[49.2106257, -123.0923821],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_3a7882e6d38945dc9e175acf047f9668 = L.circle(
[49.2129995, -122.9211009],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ba026a1b02a84dfb92b3d2212d994d12 = L.circle(
[49.2850132, -123.1179138],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8f4d5a4caabb438fa0a79dc41b980a07 = L.circle(
[49.3125664, -123.0822132],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_8683fa1d913a4b309f1e6c912cfec1ed = L.circle(
[49.3124327, -123.08221],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_e0d4f85744ca448b80c5d89a772cda0c = L.circle(
[49.1190026, -122.7321747],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_7d3b15aa3479410cb6c1a9107020933f = L.circle(
[49.2872474, -123.1189254],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_0350098ba6f04f0dbe865713f076aedd = L.circle(
[49.2232913, -122.942881],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_a3c329312f504df5b9cce0f33a0fbf9f = L.circle(
[49.1326485, -123.0915094],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5c2b9aa9e2ef4ddc901e912a72a8f7a3 = L.circle(
[49.2041008, -122.9092522],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_ef2d7354cf004f46b9bd7e8e2adb0f05 = L.circle(
[49.2800699, -122.9697686],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_5db66f01dc9a45b9847def2c112d3a3a = L.circle(
[49.1661003, -122.664152],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_6cef298fec184c5582098f1073e1f9a7 = L.circle(
[49.2672796, -123.1131132],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_d1fa511aa804403b8e18520057402764 = L.circle(
[49.2269711, -123.1287459],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_2c966533f9d84ad49178ccd2fbb6c65b = L.circle(
[49.1060882, -122.6560645],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 10, "stroke": true, "weight": 3}
).addTo(map_e672e352b774434b83c1cd79fad4e4f2);
var circle_348fad49ba5644f79d429b6f43a59196 = L.circle(