-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparks_map.html
1833 lines (809 loc) · 103 KB
/
parks_map.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>
<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/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.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://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.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_98ac7ef2570828359bbb397405ee98e4 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_98ac7ef2570828359bbb397405ee98e4" ></div>
</body>
<script>
var map_98ac7ef2570828359bbb397405ee98e4 = L.map(
"map_98ac7ef2570828359bbb397405ee98e4",
{
center: [56.130366, -106.346771],
crs: L.CRS.EPSG3857,
zoom: 4,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_9dc73ae7cdceb67b37bbba85d9632451 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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_98ac7ef2570828359bbb397405ee98e4);
var circle_marker_934922e980fc73300617c660a03ad176 = L.circleMarker(
[45.6137768, -65.03163099999999],
{"bubblingMouseEvents": true, "color": "darkorange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "darkorange", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 18, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_8ae77d11e6fda63227a018e4c6118020 = L.popup({"maxWidth": 300});
var html_1f6168f84b0c903ba404d8f7d7a23dc1 = $(`<div id="html_1f6168f84b0c903ba404d8f7d7a23dc1" style="width: 100.0%; height: 100.0%;"> <h4>Fundy National Park</h4> <p>Number of mentions: 14</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJm2oMuthdp0wRwWaSWuhWJMI target="_blank">See on Google Maps</a> </div>`)[0];
popup_8ae77d11e6fda63227a018e4c6118020.setContent(html_1f6168f84b0c903ba404d8f7d7a23dc1);
circle_marker_934922e980fc73300617c660a03ad176.bindPopup(popup_8ae77d11e6fda63227a018e4c6118020)
;
var circle_marker_0d47668d8995d3b33106fdeb9f5cffe1 = L.circleMarker(
[59.4395031, -112.8764021],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_7c3c5e37f8082bc791c335ec0f25f0b5 = L.popup({"maxWidth": 300});
var html_008f2694a1a42783227fbf33d5dbf4d3 = $(`<div id="html_008f2694a1a42783227fbf33d5dbf4d3" style="width: 100.0%; height: 100.0%;"> <h4>Wood Buffalo National Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJMYch5Vblt1MRYCRaAt-2_t4 target="_blank">See on Google Maps</a> </div>`)[0];
popup_7c3c5e37f8082bc791c335ec0f25f0b5.setContent(html_008f2694a1a42783227fbf33d5dbf4d3);
circle_marker_0d47668d8995d3b33106fdeb9f5cffe1.bindPopup(popup_7c3c5e37f8082bc791c335ec0f25f0b5)
;
var circle_marker_dc5f63705e4c65ef807d64ddb4038be7 = L.circleMarker(
[51.4810957, -112.7691902],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_551e0bd109176bb0650dbff48308e3aa = L.popup({"maxWidth": 300});
var html_e9c31708f45cd33fbcb0c261a602042e = $(`<div id="html_e9c31708f45cd33fbcb0c261a602042e" style="width: 100.0%; height: 100.0%;"> <h4>Midland Provincial Park</h4> <p>Number of mentions: 2</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJu71_Rz8Nc1MRJUt8hevjlSQ target="_blank">See on Google Maps</a> </div>`)[0];
popup_551e0bd109176bb0650dbff48308e3aa.setContent(html_e9c31708f45cd33fbcb0c261a602042e);
circle_marker_dc5f63705e4c65ef807d64ddb4038be7.bindPopup(popup_551e0bd109176bb0650dbff48308e3aa)
;
var circle_marker_c4402275c0418de08006f8f39738ae97 = L.circleMarker(
[50.2967028, -122.8199259],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_76a1f7dca45bec4e387b9b7dc2af74e4 = L.popup({"maxWidth": 300});
var html_c2c2f7598830d97223bce9edf3280888 = $(`<div id="html_c2c2f7598830d97223bce9edf3280888" style="width: 100.0%; height: 100.0%;"> <h4>Nairn Falls Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJF5FyFSs0h1QREqwa4Nk6i1I target="_blank">See on Google Maps</a> </div>`)[0];
popup_76a1f7dca45bec4e387b9b7dc2af74e4.setContent(html_c2c2f7598830d97223bce9edf3280888);
circle_marker_c4402275c0418de08006f8f39738ae97.bindPopup(popup_76a1f7dca45bec4e387b9b7dc2af74e4)
;
var circle_marker_3d613bb7bf7baa4799277474a9070e6a = L.circleMarker(
[41.96277200000001, -82.51844],
{"bubblingMouseEvents": true, "color": "seagreen", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "seagreen", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 9, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_05a1137ff20fa082dd946bae39463c89 = L.popup({"maxWidth": 300});
var html_6ab8cb2e7eecb7db69d330961312e170 = $(`<div id="html_6ab8cb2e7eecb7db69d330961312e170" style="width: 100.0%; height: 100.0%;"> <h4>Point Pelee National Park</h4> <p>Number of mentions: 5</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJXzEnaPqUOogRVKzhpnCrzII target="_blank">See on Google Maps</a> </div>`)[0];
popup_05a1137ff20fa082dd946bae39463c89.setContent(html_6ab8cb2e7eecb7db69d330961312e170);
circle_marker_3d613bb7bf7baa4799277474a9070e6a.bindPopup(popup_05a1137ff20fa082dd946bae39463c89)
;
var circle_marker_353dfd162d0bbf9890b8d9b9b91fdeb7 = L.circleMarker(
[49.34392649999999, -123.01806],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_e4f12e810fa4a7917628dd87f9bd69db = L.popup({"maxWidth": 300});
var html_8ecaa933f1583ee1c35d807ed7be6c42 = $(`<div id="html_8ecaa933f1583ee1c35d807ed7be6c42" style="width: 100.0%; height: 100.0%;"> <h4>Lynn Canyon Suspension Bridge</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJo6mwbbx6hlQRfy2H6pWyz-k target="_blank">See on Google Maps</a> </div>`)[0];
popup_e4f12e810fa4a7917628dd87f9bd69db.setContent(html_8ecaa933f1583ee1c35d807ed7be6c42);
circle_marker_353dfd162d0bbf9890b8d9b9b91fdeb7.bindPopup(popup_e4f12e810fa4a7917628dd87f9bd69db)
;
var circle_marker_b4b9f64bf6b5536a13750bc454bd1997 = L.circleMarker(
[50.3413367, -122.4762104],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_f3c497732e6cac8640dda739fd12746b = L.popup({"maxWidth": 300});
var html_3e3a16dd4c0e88d9456f1840a184bb63 = $(`<div id="html_3e3a16dd4c0e88d9456f1840a184bb63" style="width: 100.0%; height: 100.0%;"> <h4>Joffre Lakes Park (Pre-booked day pass required)</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJYbVCiS_PgFQRFQHwcmBmkxI target="_blank">See on Google Maps</a> </div>`)[0];
popup_f3c497732e6cac8640dda739fd12746b.setContent(html_3e3a16dd4c0e88d9456f1840a184bb63);
circle_marker_b4b9f64bf6b5536a13750bc454bd1997.bindPopup(popup_f3c497732e6cac8640dda739fd12746b)
;
var circle_marker_f1ad777b15b762b9a031b5775ce0f2d6 = L.circleMarker(
[49.36969, -121.3700097],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_90b221fc253c8f8140c8549aa9928ffd = L.popup({"maxWidth": 300});
var html_d5811221d20e9ce85e6d103ebb16a257 = $(`<div id="html_d5811221d20e9ce85e6d103ebb16a257" style="width: 100.0%; height: 100.0%;"> <h4>Coquihalla Canyon Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJFejMdIz0g1QR40Gxiozq8e8 target="_blank">See on Google Maps</a> </div>`)[0];
popup_90b221fc253c8f8140c8549aa9928ffd.setContent(html_d5811221d20e9ce85e6d103ebb16a257);
circle_marker_f1ad777b15b762b9a031b5775ce0f2d6.bindPopup(popup_90b221fc253c8f8140c8549aa9928ffd)
;
var circle_marker_1e8c2a0d66666d11ec9b5e0aafc25189 = L.circleMarker(
[46.01304630000001, -81.4017487],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_972affe640b30380d4cd69bce78d3eeb = L.popup({"maxWidth": 300});
var html_7aedaa30bdbd0fcfbf8e32fe2f1a3588 = $(`<div id="html_7aedaa30bdbd0fcfbf8e32fe2f1a3588" style="width: 100.0%; height: 100.0%;"> <h4>Killarney Provincial Park</h4> <p>Number of mentions: 11</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ4Tp56VpsLk0RDhAHnT1UD6s target="_blank">See on Google Maps</a> </div>`)[0];
popup_972affe640b30380d4cd69bce78d3eeb.setContent(html_7aedaa30bdbd0fcfbf8e32fe2f1a3588);
circle_marker_1e8c2a0d66666d11ec9b5e0aafc25189.bindPopup(popup_972affe640b30380d4cd69bce78d3eeb)
;
var circle_marker_c78b1d7f9892a7eb457b80cb0bb6c86f = L.circleMarker(
[45.8371591, -78.3791239],
{"bubblingMouseEvents": true, "color": "darkorange", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "darkorange", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 20, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_e98287795d8c18ce00f10ebefef680c5 = L.popup({"maxWidth": 300});
var html_70430afb80ccf4bdd71de0bec31fc5bb = $(`<div id="html_70430afb80ccf4bdd71de0bec31fc5bb" style="width: 100.0%; height: 100.0%;"> <h4>Algonquin Provincial Park</h4> <p>Number of mentions: 23</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ_21BPMh51kwR62D0aOu7bUM target="_blank">See on Google Maps</a> </div>`)[0];
popup_e98287795d8c18ce00f10ebefef680c5.setContent(html_70430afb80ccf4bdd71de0bec31fc5bb);
circle_marker_c78b1d7f9892a7eb457b80cb0bb6c86f.bindPopup(popup_e98287795d8c18ce00f10ebefef680c5)
;
var circle_marker_5bf8aa49479908696e1f968569a70d8b = L.circleMarker(
[49.1031767, -107.1865589],
{"bubblingMouseEvents": true, "color": "seagreen", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "seagreen", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_639533bec28cd44062918fa82dc1a012 = L.popup({"maxWidth": 300});
var html_f24c11f2ff96d269f3c5f0a168701d34 = $(`<div id="html_f24c11f2ff96d269f3c5f0a168701d34" style="width: 100.0%; height: 100.0%;"> <h4>Grasslands National Park</h4> <p>Number of mentions: 4</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJUcquhthKFlMRXitl5L6viSE target="_blank">See on Google Maps</a> </div>`)[0];
popup_639533bec28cd44062918fa82dc1a012.setContent(html_f24c11f2ff96d269f3c5f0a168701d34);
circle_marker_5bf8aa49479908696e1f968569a70d8b.bindPopup(popup_639533bec28cd44062918fa82dc1a012)
;
var circle_marker_d9fc083964800afbcb90ccc4662d4a08 = L.circleMarker(
[49.652015, -57.755758],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_26107998c8078443c36c1c7879b8f410 = L.popup({"maxWidth": 300});
var html_a4b7b83f243d91d965eb9170b9530302 = $(`<div id="html_a4b7b83f243d91d965eb9170b9530302" style="width: 100.0%; height: 100.0%;"> <h4>Gros Morne National Park</h4> <p>Number of mentions: 3</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ72vPHCBFeUsRdjmRPWNqdWU target="_blank">See on Google Maps</a> </div>`)[0];
popup_26107998c8078443c36c1c7879b8f410.setContent(html_a4b7b83f243d91d965eb9170b9530302);
circle_marker_d9fc083964800afbcb90ccc4662d4a08.bindPopup(popup_26107998c8078443c36c1c7879b8f410)
;
var circle_marker_1b128c9c22b387866bbadb19422b73f1 = L.circleMarker(
[61.50069730000001, -125.5004694],
{"bubblingMouseEvents": true, "color": "seagreen", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "seagreen", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_4578452a4aa467f0551561e69ece38b1 = L.popup({"maxWidth": 300});
var html_a2dce3bae0a5f31814e4a91426aadf9e = $(`<div id="html_a2dce3bae0a5f31814e4a91426aadf9e" style="width: 100.0%; height: 100.0%;"> <h4>Nahanni National Park Reserve</h4> <p>Number of mentions: 4</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJybuQCDo94VMRoDoXiK4h0J4 target="_blank">See on Google Maps</a> </div>`)[0];
popup_4578452a4aa467f0551561e69ece38b1.setContent(html_a2dce3bae0a5f31814e4a91426aadf9e);
circle_marker_1b128c9c22b387866bbadb19422b73f1.bindPopup(popup_4578452a4aa467f0551561e69ece38b1)
;
var circle_marker_5c11686b94341fb2ec8bc43aa6df5c2d = L.circleMarker(
[46.2077319, -63.4796442],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_8fafbb74825f6bc601c76c5879b4a699 = L.popup({"maxWidth": 300});
var html_bf9bbd937b1ce940cef6bfd2c56411be = $(`<div id="html_bf9bbd937b1ce940cef6bfd2c56411be" style="width: 100.0%; height: 100.0%;"> <h4>Victoria Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJI9JECu6nX0sROeHIc4wyoqA target="_blank">See on Google Maps</a> </div>`)[0];
popup_8fafbb74825f6bc601c76c5879b4a699.setContent(html_bf9bbd937b1ce940cef6bfd2c56411be);
circle_marker_5c11686b94341fb2ec8bc43aa6df5c2d.bindPopup(popup_8fafbb74825f6bc601c76c5879b4a699)
;
var circle_marker_8c1b8d3090122fae3aa4ad4fa8966327 = L.circleMarker(
[45.3501922, -64.8246802],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_04d8203ea38d269134f80050662e1669 = L.popup({"maxWidth": 300});
var html_db74a76c928e6ecda62aa99a14c81044 = $(`<div id="html_db74a76c928e6ecda62aa99a14c81044" style="width: 100.0%; height: 100.0%;"> <h4>Cape Chignecto Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJg31DhHaFWEsRfUEX_QagFjs target="_blank">See on Google Maps</a> </div>`)[0];
popup_04d8203ea38d269134f80050662e1669.setContent(html_db74a76c928e6ecda62aa99a14c81044);
circle_marker_8c1b8d3090122fae3aa4ad4fa8966327.bindPopup(popup_04d8203ea38d269134f80050662e1669)
;
var circle_marker_ecbedcebb0e6c291227bb037a80f98d2 = L.circleMarker(
[51.4968464, -115.9280561],
{"bubblingMouseEvents": true, "color": "firebrick", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "firebrick", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 20, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_2d4360be4710905595bf88fbceb99be7 = L.popup({"maxWidth": 300});
var html_bbff6f08e57f888103de42b4bb9dbe16 = $(`<div id="html_bbff6f08e57f888103de42b4bb9dbe16" style="width: 100.0%; height: 100.0%;"> <h4>Banff National Park</h4> <p>Number of mentions: 47</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJlZGSjCtmd1MR5tfKrGjincA target="_blank">See on Google Maps</a> </div>`)[0];
popup_2d4360be4710905595bf88fbceb99be7.setContent(html_bbff6f08e57f888103de42b4bb9dbe16);
circle_marker_ecbedcebb0e6c291227bb037a80f98d2.bindPopup(popup_2d4360be4710905595bf88fbceb99be7)
;
var circle_marker_7f98e8b80152c5cc2b835a463b7bc192 = L.circleMarker(
[52.873383, -117.9542939],
{"bubblingMouseEvents": true, "color": "firebrick", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "firebrick", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 20, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_fee15de0eda95a775addd5280ecd2ede = L.popup({"maxWidth": 300});
var html_5e57b3ace3832eb5ed4518c0a534bcb6 = $(`<div id="html_5e57b3ace3832eb5ed4518c0a534bcb6" style="width: 100.0%; height: 100.0%;"> <h4>Jasper National Park</h4> <p>Number of mentions: 38</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJG4dCkcspg1MRktGbzm1KcuE target="_blank">See on Google Maps</a> </div>`)[0];
popup_fee15de0eda95a775addd5280ecd2ede.setContent(html_5e57b3ace3832eb5ed4518c0a534bcb6);
circle_marker_7f98e8b80152c5cc2b835a463b7bc192.bindPopup(popup_fee15de0eda95a775addd5280ecd2ede)
;
var circle_marker_08ac17e2aa66dd7fb28e869da7ecd745 = L.circleMarker(
[44.8743165, -79.8699554],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_ab42937544d2f792781e752ef1a0f8ed = L.popup({"maxWidth": 300});
var html_0667e82429db68420c23fea0357d26cb = $(`<div id="html_0667e82429db68420c23fea0357d26cb" style="width: 100.0%; height: 100.0%;"> <h4>Georgian Bay Islands National Park</h4> <p>Number of mentions: 3</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJGZL18IEdK00RbaSpgKMwVpc target="_blank">See on Google Maps</a> </div>`)[0];
popup_ab42937544d2f792781e752ef1a0f8ed.setContent(html_0667e82429db68420c23fea0357d26cb);
circle_marker_08ac17e2aa66dd7fb28e869da7ecd745.bindPopup(popup_ab42937544d2f792781e752ef1a0f8ed)
;
var circle_marker_c0a7dc5bbbda03e7ada33ab204c3eadf = L.circleMarker(
[45.4621827, -76.2631971],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_fcdfe77c8f01c0ec78cc6fa0563a914f = L.popup({"maxWidth": 300});
var html_b92c3da3ee1e77939cbfb0b3f28cc74d = $(`<div id="html_b92c3da3ee1e77939cbfb0b3f28cc74d" style="width: 100.0%; height: 100.0%;"> <h4>Morris Island Conservation Area</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJQ6Vylp6M0UwR7dkokyDwaag target="_blank">See on Google Maps</a> </div>`)[0];
popup_fcdfe77c8f01c0ec78cc6fa0563a914f.setContent(html_b92c3da3ee1e77939cbfb0b3f28cc74d);
circle_marker_c0a7dc5bbbda03e7ada33ab204c3eadf.bindPopup(popup_fcdfe77c8f01c0ec78cc6fa0563a914f)
;
var circle_marker_15e09a8507e8617fbe1ad30c3fa1e490 = L.circleMarker(
[61.30262599999999, -73.683306],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_4d7d84b2a4e9c939558dece875830042 = L.popup({"maxWidth": 300});
var html_059c5b62c71ad04bcf4f2308b12c91c1 = $(`<div id="html_059c5b62c71ad04bcf4f2308b12c91c1" style="width: 100.0%; height: 100.0%;"> <h4>Pingualuit National Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ4Xg-j_QRyU0RqbbVV-vS3Gg target="_blank">See on Google Maps</a> </div>`)[0];
popup_4d7d84b2a4e9c939558dece875830042.setContent(html_059c5b62c71ad04bcf4f2308b12c91c1);
circle_marker_15e09a8507e8617fbe1ad30c3fa1e490.bindPopup(popup_4d7d84b2a4e9c939558dece875830042)
;
var circle_marker_ed849873b20129f6f0e573cfeb1d70fd = L.circleMarker(
[43.9577511, -77.5257968],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_aec41888f26b842452a3a13e9afd20d4 = L.popup({"maxWidth": 300});
var html_b7b7258993c4ef0483d1c2d902b76cad = $(`<div id="html_b7b7258993c4ef0483d1c2d902b76cad" style="width: 100.0%; height: 100.0%;"> <h4>North Beach Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ44q615lB1okRbhBU_7sh7zg target="_blank">See on Google Maps</a> </div>`)[0];
popup_aec41888f26b842452a3a13e9afd20d4.setContent(html_b7b7258993c4ef0483d1c2d902b76cad);
circle_marker_ed849873b20129f6f0e573cfeb1d70fd.bindPopup(popup_aec41888f26b842452a3a13e9afd20d4)
;
var circle_marker_38e56d92237266f46d07765c8c75cac2 = L.circleMarker(
[45.2571585, -81.6562794],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_bc0c4aee9c9519c9a154ca54c7f22f6c = L.popup({"maxWidth": 300});
var html_c032de9b6bbb4efe5b33f0bc6218607e = $(`<div id="html_c032de9b6bbb4efe5b33f0bc6218607e" style="width: 100.0%; height: 100.0%;"> <h4>Fathom Five National Marine Park</h4> <p>Number of mentions: 3</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJoclxo_MKLU0RAeTfEhj_gfc target="_blank">See on Google Maps</a> </div>`)[0];
popup_bc0c4aee9c9519c9a154ca54c7f22f6c.setContent(html_c032de9b6bbb4efe5b33f0bc6218607e);
circle_marker_38e56d92237266f46d07765c8c75cac2.bindPopup(popup_bc0c4aee9c9519c9a154ca54c7f22f6c)
;
var circle_marker_ada5c5d3b5a2d5e19033b04588530179 = L.circleMarker(
[46.4264574, -63.17394669999999],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_e2a7242a0e26751c74135192150c5add = L.popup({"maxWidth": 300});
var html_055221bd8bff318d214d7365d3bc6e19 = $(`<div id="html_055221bd8bff318d214d7365d3bc6e19" style="width: 100.0%; height: 100.0%;"> <h4>Prince Edward Island National Park</h4> <p>Number of mentions: 9</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ26LfMQm4X0sRhkMDcLeKSBQ target="_blank">See on Google Maps</a> </div>`)[0];
popup_e2a7242a0e26751c74135192150c5add.setContent(html_055221bd8bff318d214d7365d3bc6e19);
circle_marker_ada5c5d3b5a2d5e19033b04588530179.bindPopup(popup_e2a7242a0e26751c74135192150c5add)
;
var circle_marker_84cf00d23f6c0fabdfd8b7467026b78c = L.circleMarker(
[49.0858903, -111.6195612],
{"bubblingMouseEvents": true, "color": "seagreen", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "seagreen", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_a99f64124856fdd2f92eb8dea1e123a8 = L.popup({"maxWidth": 300});
var html_7edf5cb41c26ca303a2af9f1ff022e41 = $(`<div id="html_7edf5cb41c26ca303a2af9f1ff022e41" style="width: 100.0%; height: 100.0%;"> <h4>Writing-on-Stone Provincial Park</h4> <p>Number of mentions: 4</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ1xz7JkHsa1MRNB9usHgthkM target="_blank">See on Google Maps</a> </div>`)[0];
popup_a99f64124856fdd2f92eb8dea1e123a8.setContent(html_7edf5cb41c26ca303a2af9f1ff022e41);
circle_marker_84cf00d23f6c0fabdfd8b7467026b78c.bindPopup(popup_a99f64124856fdd2f92eb8dea1e123a8)
;
var circle_marker_d2b284cfd16453074dd3fb277a8a85ac = L.circleMarker(
[48.300742, -70.33531099999999],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_e6bb2c4ff7403e51ba98bb8f32a8e8e4 = L.popup({"maxWidth": 300});
var html_cc7ac2a58a4d66adbe1bcfb1f403a369 = $(`<div id="html_cc7ac2a58a4d66adbe1bcfb1f403a369" style="width: 100.0%; height: 100.0%;"> <h4>Saguenay Fjord National Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJscBb24Dhv0wRookaGy6dTaE target="_blank">See on Google Maps</a> </div>`)[0];
popup_e6bb2c4ff7403e51ba98bb8f32a8e8e4.setContent(html_cc7ac2a58a4d66adbe1bcfb1f403a369);
circle_marker_d2b284cfd16453074dd3fb277a8a85ac.bindPopup(popup_e6bb2c4ff7403e51ba98bb8f32a8e8e4)
;
var circle_marker_b14af5b0c574200c2ef8bb4681bf8260 = L.circleMarker(
[45.3378006, -78.0226685],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_865a7fab44b07b8238aa7aa64c55b6f9 = L.popup({"maxWidth": 300});
var html_cdc0cd85706c999ddf858b567488e7ba = $(`<div id="html_cdc0cd85706c999ddf858b567488e7ba" style="width: 100.0%; height: 100.0%;"> <h4>Lake Saint Peter Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJnXJwsWs51EwRU40COk-BTOE target="_blank">See on Google Maps</a> </div>`)[0];
popup_865a7fab44b07b8238aa7aa64c55b6f9.setContent(html_cdc0cd85706c999ddf858b567488e7ba);
circle_marker_b14af5b0c574200c2ef8bb4681bf8260.bindPopup(popup_865a7fab44b07b8238aa7aa64c55b6f9)
;
var circle_marker_a14a9a2f3a987234c7064d141a734b30 = L.circleMarker(
[45.2200376, -81.5307717],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 12, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_cc9404397a1732225bd06c8997699fe0 = L.popup({"maxWidth": 300});
var html_31956285bc917ec64a654e9436664e5d = $(`<div id="html_31956285bc917ec64a654e9436664e5d" style="width: 100.0%; height: 100.0%;"> <h4>Bruce Peninsula National Park</h4> <p>Number of mentions: 8</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJV_FafvMELU0Rtqm9omn5Shw target="_blank">See on Google Maps</a> </div>`)[0];
popup_cc9404397a1732225bd06c8997699fe0.setContent(html_31956285bc917ec64a654e9436664e5d);
circle_marker_a14a9a2f3a987234c7064d141a734b30.bindPopup(popup_cc9404397a1732225bd06c8997699fe0)
;
var circle_marker_cced3ae7ad654f7be8a7e3d836fad90b = L.circleMarker(
[58.797175, -94.213122],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_1b6e090f2b8e6c6c78ee7a97ab0a9c85 = L.popup({"maxWidth": 300});
var html_1a01e88287e1c9f35feca8b4460cb66c = $(`<div id="html_1a01e88287e1c9f35feca8b4460cb66c" style="width: 100.0%; height: 100.0%;"> <h4>Prince of Wales Fort National Historic Site</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ_eQLIjbZb1IRm6DKNvHDCrU target="_blank">See on Google Maps</a> </div>`)[0];
popup_1b6e090f2b8e6c6c78ee7a97ab0a9c85.setContent(html_1a01e88287e1c9f35feca8b4460cb66c);
circle_marker_cced3ae7ad654f7be8a7e3d836fad90b.bindPopup(popup_1b6e090f2b8e6c6c78ee7a97ab0a9c85)
;
var circle_marker_5d7fc606bb54937d49cebd840125a7cc = L.circleMarker(
[46.7332984, -72.76817480000001],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_7d04b31a3cbf9c8f846ef0313381e355 = L.popup({"maxWidth": 300});
var html_273c03d7629e5c5f745f183111a48ab7 = $(`<div id="html_273c03d7629e5c5f745f183111a48ab7" style="width: 100.0%; height: 100.0%;"> <h4>Parc national de la Mauricie</h4> <p>Number of mentions: 2</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJaXziCBVgxkwRqUc_ok357xs target="_blank">See on Google Maps</a> </div>`)[0];
popup_7d04b31a3cbf9c8f846ef0313381e355.setContent(html_273c03d7629e5c5f745f183111a48ab7);
circle_marker_5d7fc606bb54937d49cebd840125a7cc.bindPopup(popup_7d04b31a3cbf9c8f846ef0313381e355)
;
var circle_marker_b9fa8c38a8d496766111a1b23a83d65f = L.circleMarker(
[48.3542474, -68.7547014],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_f07a18e440cf04c22d2467f01277a28a = L.popup({"maxWidth": 300});
var html_27db3d3e02cbb51778bb55ce14765811 = $(`<div id="html_27db3d3e02cbb51778bb55ce14765811" style="width: 100.0%; height: 100.0%;"> <h4>Parc national du Bic</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJLXL43jbolUwRqslDjBwlluo target="_blank">See on Google Maps</a> </div>`)[0];
popup_f07a18e440cf04c22d2467f01277a28a.setContent(html_27db3d3e02cbb51778bb55ce14765811);
circle_marker_b9fa8c38a8d496766111a1b23a83d65f.bindPopup(popup_f07a18e440cf04c22d2467f01277a28a)
;
var circle_marker_ae75bbc57ec06231952810ef2baa091b = L.circleMarker(
[43.8188014, -79.170812],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_712f79bd6fe7114c3fd9d5f354df3279 = L.popup({"maxWidth": 300});
var html_7afa8efb92aabc3203155c3f147758ad = $(`<div id="html_7afa8efb92aabc3203155c3f147758ad" style="width: 100.0%; height: 100.0%;"> <h4>Rouge National Urban Park</h4> <p>Number of mentions: 2</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJh_F4_I_X1IkRXvfHJmZvbYI target="_blank">See on Google Maps</a> </div>`)[0];
popup_712f79bd6fe7114c3fd9d5f354df3279.setContent(html_7afa8efb92aabc3203155c3f147758ad);
circle_marker_ae75bbc57ec06231952810ef2baa091b.bindPopup(popup_712f79bd6fe7114c3fd9d5f354df3279)
;
var circle_marker_1ad5d9476d5596b604a958f620907202 = L.circleMarker(
[48.78611009999999, -123.1622203],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 6, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_465a1bab8aef5daec252f0448a88092d = L.popup({"maxWidth": 300});
var html_835881af80791ff08a46643174077b86 = $(`<div id="html_835881af80791ff08a46643174077b86" style="width: 100.0%; height: 100.0%;"> <h4>Gulf Islands National Park</h4> <p>Number of mentions: 2</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJMzJ1ScT0hVQRAaIgIWVDwE0 target="_blank">See on Google Maps</a> </div>`)[0];
popup_465a1bab8aef5daec252f0448a88092d.setContent(html_835881af80791ff08a46643174077b86);
circle_marker_1ad5d9476d5596b604a958f620907202.bindPopup(popup_465a1bab8aef5daec252f0448a88092d)
;
var circle_marker_48fc4243c4e23f2cf98eadf5214ec037 = L.circleMarker(
[59.0831293, -109.0699387],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_15b4bc1a495188c006ef61b3731460ed = L.popup({"maxWidth": 300});
var html_057142c5528136376fd8b675aaa7c0e7 = $(`<div id="html_057142c5528136376fd8b675aaa7c0e7" style="width: 100.0%; height: 100.0%;"> <h4>Athabasca Sand Dunes Provincial Park</h4> <p>Number of mentions: 3</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJQxVbH47btFMRUFA9cdao9bA target="_blank">See on Google Maps</a> </div>`)[0];
popup_15b4bc1a495188c006ef61b3731460ed.setContent(html_057142c5528136376fd8b675aaa7c0e7);
circle_marker_48fc4243c4e23f2cf98eadf5214ec037.bindPopup(popup_15b4bc1a495188c006ef61b3731460ed)
;
var circle_marker_6935e8e6b2ddc9b82ad1ecd5ff8a4cdf = L.circleMarker(
[50.3224813, -115.8859094],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_7ba11b5dca317698001fa00be8a19273 = L.popup({"maxWidth": 300});
var html_97c9e8272a99f2eec4745bee277739fb = $(`<div id="html_97c9e8272a99f2eec4745bee277739fb" style="width: 100.0%; height: 100.0%;"> <h4>HooDoo Trail</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJPd1lFvyMelMRru4Kf0MJox8 target="_blank">See on Google Maps</a> </div>`)[0];
popup_7ba11b5dca317698001fa00be8a19273.setContent(html_97c9e8272a99f2eec4745bee277739fb);
circle_marker_6935e8e6b2ddc9b82ad1ecd5ff8a4cdf.bindPopup(popup_7ba11b5dca317698001fa00be8a19273)
;
var circle_marker_000e16adedbec8f1bff320d3f82ffb5f = L.circleMarker(
[51.4162106, -112.8851136],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_ae580c6898233d6aff9505c0779f583c = L.popup({"maxWidth": 300});
var html_a6671f9fc02f2e1d7973d7d5ffb4740b = $(`<div id="html_a6671f9fc02f2e1d7973d7d5ffb4740b" style="width: 100.0%; height: 100.0%;"> <h4>Horseshoe Canyon</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ_eJv3bwSc1MRggRGlo87IXc target="_blank">See on Google Maps</a> </div>`)[0];
popup_ae580c6898233d6aff9505c0779f583c.setContent(html_a6671f9fc02f2e1d7973d7d5ffb4740b);
circle_marker_000e16adedbec8f1bff320d3f82ffb5f.bindPopup(popup_ae580c6898233d6aff9505c0779f583c)
;
var circle_marker_9e8bb8fbbaff244668a510a10f5b1707 = L.circleMarker(
[43.7060208, -79.2316341],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_a5d1a491263077858a1e0c7f250dde31 = L.popup({"maxWidth": 300});
var html_f76de9a245e598c7b7ce8ab6285b3da3 = $(`<div id="html_f76de9a245e598c7b7ce8ab6285b3da3" style="width: 100.0%; height: 100.0%;"> <h4>Scarborough Bluffs Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJK48o16XP1IkRZ02XmwZ_4Bc target="_blank">See on Google Maps</a> </div>`)[0];
popup_a5d1a491263077858a1e0c7f250dde31.setContent(html_f76de9a245e598c7b7ce8ab6285b3da3);
circle_marker_9e8bb8fbbaff244668a510a10f5b1707.bindPopup(popup_a5d1a491263077858a1e0c7f250dde31)
;
var circle_marker_98f6b3d0a79689ed48db451de32d8952 = L.circleMarker(
[49.2376041, -114.2949518],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_c0f42af8f0b745af6f9058488843e92e = L.popup({"maxWidth": 300});
var html_5a71ac7b36de8927e5447c1b35671c74 = $(`<div id="html_5a71ac7b36de8927e5447c1b35671c74" style="width: 100.0%; height: 100.0%;"> <h4>Castle Wildland Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJi1_DxNBib1MRmowDYGWQ0-M target="_blank">See on Google Maps</a> </div>`)[0];
popup_c0f42af8f0b745af6f9058488843e92e.setContent(html_5a71ac7b36de8927e5447c1b35671c74);
circle_marker_98f6b3d0a79689ed48db451de32d8952.bindPopup(popup_c0f42af8f0b745af6f9058488843e92e)
;
var circle_marker_762d3ea140fc898434fdaa923791d50a = L.circleMarker(
[49.00887909999999, -114.1067458],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_c73d99e6537f4cd7ff3d119e2aa8b33b = L.popup({"maxWidth": 300});
var html_eff2f1a2719b9cb842e5a62b3484922e = $(`<div id="html_eff2f1a2719b9cb842e5a62b3484922e" style="width: 100.0%; height: 100.0%;"> <h4>Akamina Ridge</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJ_3lLfOpYb1MRZ-LmfUfLXXY target="_blank">See on Google Maps</a> </div>`)[0];
popup_c73d99e6537f4cd7ff3d119e2aa8b33b.setContent(html_eff2f1a2719b9cb842e5a62b3484922e);
circle_marker_762d3ea140fc898434fdaa923791d50a.bindPopup(popup_c73d99e6537f4cd7ff3d119e2aa8b33b)
;
var circle_marker_8fa6d2b50252c9b65522954dfa928185 = L.circleMarker(
[46.7725094, -65.00533519999999],
{"bubblingMouseEvents": true, "color": "seagreen", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "seagreen", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_878899a06e0e5cfe78113eb26c745f80 = L.popup({"maxWidth": 300});
var html_f19c2449b2071518fe22b730783aefa3 = $(`<div id="html_f19c2449b2071518fe22b730783aefa3" style="width: 100.0%; height: 100.0%;"> <h4>Kouchibouguac National Park</h4> <p>Number of mentions: 4</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJCfzspQq3oUwRfTTH6GYFueo target="_blank">See on Google Maps</a> </div>`)[0];
popup_878899a06e0e5cfe78113eb26c745f80.setContent(html_f19c2449b2071518fe22b730783aefa3);
circle_marker_8fa6d2b50252c9b65522954dfa928185.bindPopup(popup_878899a06e0e5cfe78113eb26c745f80)
;
var circle_marker_1bb4ee27759c16c081e155dc9416fec3 = L.circleMarker(
[44.65220799999999, -78.8108815],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_7b7449df473ef05feca3c3f10b9f93c0 = L.popup({"maxWidth": 300});
var html_3a8b796aa4710e2c71a94d79f70463cd = $(`<div id="html_3a8b796aa4710e2c71a94d79f70463cd" style="width: 100.0%; height: 100.0%;"> <h4>Indian Point Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJnaf2K1c61UwRgL9kC5scwBA target="_blank">See on Google Maps</a> </div>`)[0];
popup_7b7449df473ef05feca3c3f10b9f93c0.setContent(html_3a8b796aa4710e2c71a94d79f70463cd);
circle_marker_1bb4ee27759c16c081e155dc9416fec3.bindPopup(popup_7b7449df473ef05feca3c3f10b9f93c0)
;
var circle_marker_d71fd4d9985d217a0ddf0826e18cdbbc = L.circleMarker(
[50.6583616, -99.9712948],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 15, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_6ab2370b38047b99ed77651fb0bf849c = L.popup({"maxWidth": 300});
var html_efac1d8317e9909990c9148d3289ab21 = $(`<div id="html_efac1d8317e9909990c9148d3289ab21" style="width: 100.0%; height: 100.0%;"> <h4>Riding Mountain National Park</h4> <p>Number of mentions: 11</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJOZd2A4h65lIRk9snPlKGjTs target="_blank">See on Google Maps</a> </div>`)[0];
popup_6ab2370b38047b99ed77651fb0bf849c.setContent(html_efac1d8317e9909990c9148d3289ab21);
circle_marker_d71fd4d9985d217a0ddf0826e18cdbbc.bindPopup(popup_6ab2370b38047b99ed77651fb0bf849c)
;
var circle_marker_bdfd7ac574edc63c2adcd8bbfd80ad20 = L.circleMarker(
[50.6823209, -115.1935357],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 7, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_c0451733b9c45fc4693e1787ee62b71c = L.popup({"maxWidth": 300});
var html_c443941e864cb2e14c772f6f8dcf26cf = $(`<div id="html_c443941e864cb2e14c772f6f8dcf26cf" style="width: 100.0%; height: 100.0%;"> <h4>Peter Lougheed Provincial Park</h4> <p>Number of mentions: 3</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJsbLquIvbcFMRiReVB0RKW3g target="_blank">See on Google Maps</a> </div>`)[0];
popup_c0451733b9c45fc4693e1787ee62b71c.setContent(html_c443941e864cb2e14c772f6f8dcf26cf);
circle_marker_bdfd7ac574edc63c2adcd8bbfd80ad20.bindPopup(popup_c0451733b9c45fc4693e1787ee62b71c)
;
var circle_marker_89fcfce8af18aadc873b0c4827ea0a16 = L.circleMarker(
[51.335289, -117.5297595],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_e1b82d7d0e6eb45c816f487f0d0b9d9a = L.popup({"maxWidth": 300});
var html_bc9108fcfe7b0cf3c375bf8ed338696a = $(`<div id="html_bc9108fcfe7b0cf3c375bf8ed338696a" style="width: 100.0%; height: 100.0%;"> <h4>Glacier National Park</h4> <p>Number of mentions: 10</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJxWd-JkUIeVMRuQ7amxSgRPA target="_blank">See on Google Maps</a> </div>`)[0];
popup_e1b82d7d0e6eb45c816f487f0d0b9d9a.setContent(html_bc9108fcfe7b0cf3c375bf8ed338696a);
circle_marker_89fcfce8af18aadc873b0c4827ea0a16.bindPopup(popup_e1b82d7d0e6eb45c816f487f0d0b9d9a)
;
var circle_marker_545d0eaa83a19f80e3ca175019cd8bf4 = L.circleMarker(
[49.0257784, -114.1772735],
{"bubblingMouseEvents": true, "color": "royalblue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "royalblue", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_a94c79fbd1c99009b07e2630ed24a6dd = L.popup({"maxWidth": 300});
var html_64faebd41aa90df6ec5afe57c6262395 = $(`<div id="html_64faebd41aa90df6ec5afe57c6262395" style="width: 100.0%; height: 100.0%;"> <h4>Akamina - Kishinena Provincial Park</h4> <p>Number of mentions: 1</p> <a href=https://www.google.com/maps/place/?q=place_id:ChIJNwN984Zfb1MR-OjuMyaj2HA target="_blank">See on Google Maps</a> </div>`)[0];
popup_a94c79fbd1c99009b07e2630ed24a6dd.setContent(html_64faebd41aa90df6ec5afe57c6262395);
circle_marker_545d0eaa83a19f80e3ca175019cd8bf4.bindPopup(popup_a94c79fbd1c99009b07e2630ed24a6dd)
;
var circle_marker_105e29644feef678dec47205de6968a4 = L.circleMarker(
[50.9454757, -115.761753],
{"bubblingMouseEvents": true, "color": "gold", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "gold", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 11, "stroke": true, "weight": 3}
).addTo(map_98ac7ef2570828359bbb397405ee98e4);
var popup_deb2a08a4f9f4cdbbb7ef9afd32d0c3e = L.popup({"maxWidth": 300});