-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmthood.html
6466 lines (4513 loc) · 204 KB
/
mthood.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css" />
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_acbcad009e434ebb8260ed859c36f651 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_acbcad009e434ebb8260ed859c36f651" ></div>
</body>
<script>
var bounds = null;
var map_acbcad009e434ebb8260ed859c36f651 = L.map(
'map_acbcad009e434ebb8260ed859c36f651',
{center: [45.3793623711,-121.603618557],
zoom: 15,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_f5a5c1ebd2d041a3ac5ab4bda7020bd5 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var circle_marker_f3a5dac203504dbbb474761a8412acfe = L.circleMarker(
[45.3975827444,-121.85966848],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.1,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_eaad5ef04e714d629913954faca3ed46 = L.popup({maxWidth: '300'});
var html_21a1e33b36be453cad332f9f4087577b = $('<div id="html_21a1e33b36be453cad332f9f4087577b" style="width: 100.0%; height: 100.0%;">Giant's Staircase 5.6</div>')[0];
popup_eaad5ef04e714d629913954faca3ed46.setContent(html_21a1e33b36be453cad332f9f4087577b);
circle_marker_f3a5dac203504dbbb474761a8412acfe.bindPopup(popup_eaad5ef04e714d629913954faca3ed46);
var circle_marker_a76a270cc27f40bb881cffba4aad5d14 = L.circleMarker(
[45.3969255008,-121.859186034],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.9,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_61e3f7a6c3ef4963857fa96eeaa06615 = L.popup({maxWidth: '300'});
var html_97361fa2f35242c3ba0f6f1cc9bfc3b9 = $('<div id="html_97361fa2f35242c3ba0f6f1cc9bfc3b9" style="width: 100.0%; height: 100.0%;">Giant's Direct 5.5</div>')[0];
popup_61e3f7a6c3ef4963857fa96eeaa06615.setContent(html_97361fa2f35242c3ba0f6f1cc9bfc3b9);
circle_marker_a76a270cc27f40bb881cffba4aad5d14.bindPopup(popup_61e3f7a6c3ef4963857fa96eeaa06615);
var circle_marker_823d2abb92aa43579197f17c1e8388e6 = L.circleMarker(
[45.2909972467,-121.940367159],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.6,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_1a207715927546bf996edeb5f49d55d1 = L.popup({maxWidth: '300'});
var html_614c8342e0bc4726b803bcc7a896ff90 = $('<div id="html_614c8342e0bc4726b803bcc7a896ff90" style="width: 100.0%; height: 100.0%;">Climbing Theme 5.6</div>')[0];
popup_1a207715927546bf996edeb5f49d55d1.setContent(html_614c8342e0bc4726b803bcc7a896ff90);
circle_marker_823d2abb92aa43579197f17c1e8388e6.bindPopup(popup_1a207715927546bf996edeb5f49d55d1);
var circle_marker_18d58bb6ebe04856b78585ae47831d41 = L.circleMarker(
[45.3733220807,-121.474319295],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.8,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_99f9887ba3e34a4293bed20e4a745b45 = L.popup({maxWidth: '300'});
var html_c9436677945c4f329b856308999e6a23 = $('<div id="html_c9436677945c4f329b856308999e6a23" style="width: 100.0%; height: 100.0%;">Plumber's Crack 5.6</div>')[0];
popup_99f9887ba3e34a4293bed20e4a745b45.setContent(html_c9436677945c4f329b856308999e6a23);
circle_marker_18d58bb6ebe04856b78585ae47831d41.bindPopup(popup_99f9887ba3e34a4293bed20e4a745b45);
var circle_marker_63df02f832864ae1b5ad028f630693be = L.circleMarker(
[45.3698278708,-121.700393451],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.8,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_3c791f5d610a440fbcc258473b41bb55 = L.popup({maxWidth: '300'});
var html_573ca3cb901b43c1bbd18306bffd5451 = $('<div id="html_573ca3cb901b43c1bbd18306bffd5451" style="width: 100.0%; height: 100.0%;">West Ridge 5.4</div>')[0];
popup_3c791f5d610a440fbcc258473b41bb55.setContent(html_573ca3cb901b43c1bbd18306bffd5451);
circle_marker_63df02f832864ae1b5ad028f630693be.bindPopup(popup_3c791f5d610a440fbcc258473b41bb55);
var circle_marker_7675a4eeb522460ebf27be66e91daa24 = L.circleMarker(
[45.2913484798,-121.939809067],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.2,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_d81b3f1965e04fe387f3ffe26f7cc564 = L.popup({maxWidth: '300'});
var html_b16021040bc44b83b10824a7d52de10b = $('<div id="html_b16021040bc44b83b10824a7d52de10b" style="width: 100.0%; height: 100.0%;">Stinky Salmon 5.5</div>')[0];
popup_d81b3f1965e04fe387f3ffe26f7cc564.setContent(html_b16021040bc44b83b10824a7d52de10b);
circle_marker_7675a4eeb522460ebf27be66e91daa24.bindPopup(popup_d81b3f1965e04fe387f3ffe26f7cc564);
var circle_marker_69bbb420e5c445a7a6a5ebeabcd6db7b = L.circleMarker(
[45.3693390284,-121.700642391],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.0,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_d0596a3a3b2048619974e79718f1759b = L.popup({maxWidth: '300'});
var html_ebecb80a6c3d4ee8844362a62d137f81 = $('<div id="html_ebecb80a6c3d4ee8844362a62d137f81" style="width: 100.0%; height: 100.0%;">Iron Maiden 5.6</div>')[0];
popup_d0596a3a3b2048619974e79718f1759b.setContent(html_ebecb80a6c3d4ee8844362a62d137f81);
circle_marker_69bbb420e5c445a7a6a5ebeabcd6db7b.bindPopup(popup_d0596a3a3b2048619974e79718f1759b);
var circle_marker_5e8fc7f883ea4509abdec431be5aa95d = L.circleMarker(
[45.4051926881,-121.568058685],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.0,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_cc9a76db71484460b3f36046b422242e = L.popup({maxWidth: '300'});
var html_a62c07e9e4c444f2b6a5d1cd2a2540e6 = $('<div id="html_a62c07e9e4c444f2b6a5d1cd2a2540e6" style="width: 100.0%; height: 100.0%;">Dunce 5.6</div>')[0];
popup_cc9a76db71484460b3f36046b422242e.setContent(html_a62c07e9e4c444f2b6a5d1cd2a2540e6);
circle_marker_5e8fc7f883ea4509abdec431be5aa95d.bindPopup(popup_cc9a76db71484460b3f36046b422242e);
var circle_marker_c653a59a83bd4477a4501d0daac740ad = L.circleMarker(
[45.3697976226,-121.700518501],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.0,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_34730817ad4f4d99b30552964e16aff2 = L.popup({maxWidth: '300'});
var html_33114847f4ee4fb4a2f5d700a5229afd = $('<div id="html_33114847f4ee4fb4a2f5d700a5229afd" style="width: 100.0%; height: 100.0%;">SE Buttress 5.6</div>')[0];
popup_34730817ad4f4d99b30552964e16aff2.setContent(html_33114847f4ee4fb4a2f5d700a5229afd);
circle_marker_c653a59a83bd4477a4501d0daac740ad.bindPopup(popup_34730817ad4f4d99b30552964e16aff2);
var circle_marker_0cffd97c0e5a4f1a88f3804d71ef0445 = L.circleMarker(
[45.4082122868,-121.568715289],
{
"bubblingMouseEvents": true,
"color": "LimeGreen",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 1.0,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_c4ab7d33ae85486b9168d6a543455cdd = L.popup({maxWidth: '300'});
var html_2a6c2da6dd9b4fb6a604d0b26a05d5b2 = $('<div id="html_2a6c2da6dd9b4fb6a604d0b26a05d5b2" style="width: 100.0%; height: 100.0%;">Project 1 5.6</div>')[0];
popup_c4ab7d33ae85486b9168d6a543455cdd.setContent(html_2a6c2da6dd9b4fb6a604d0b26a05d5b2);
circle_marker_0cffd97c0e5a4f1a88f3804d71ef0445.bindPopup(popup_c4ab7d33ae85486b9168d6a543455cdd);
var circle_marker_617f60631ca14dadbd2c3c3835eb8e7b = L.circleMarker(
[45.3971126475,-121.85920105],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.6,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_d772daabb5c04e0d806c6291232e9045 = L.popup({maxWidth: '300'});
var html_38502cc2cd9c471a8eec7005dc28c391 = $('<div id="html_38502cc2cd9c471a8eec7005dc28c391" style="width: 100.0%; height: 100.0%;">Alpha Centauri 5.8</div>')[0];
popup_d772daabb5c04e0d806c6291232e9045.setContent(html_38502cc2cd9c471a8eec7005dc28c391);
circle_marker_617f60631ca14dadbd2c3c3835eb8e7b.bindPopup(popup_d772daabb5c04e0d806c6291232e9045);
var circle_marker_21af0b17f10b4cb6b8d069bfa7407cd1 = L.circleMarker(
[45.3975924519,-121.860125844],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.5,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_b7297d84cbbf4697b6df8fa599e23f64 = L.popup({maxWidth: '300'});
var html_c09a196ad29c490e8dfe8e29ffa53a80 = $('<div id="html_c09a196ad29c490e8dfe8e29ffa53a80" style="width: 100.0%; height: 100.0%;">Tin Tangle 5.8</div>')[0];
popup_b7297d84cbbf4697b6df8fa599e23f64.setContent(html_c09a196ad29c490e8dfe8e29ffa53a80);
circle_marker_21af0b17f10b4cb6b8d069bfa7407cd1.bindPopup(popup_b7297d84cbbf4697b6df8fa599e23f64);
var circle_marker_cef97393bd9c4ed48ac53ac10fb27bd2 = L.circleMarker(
[45.3733189243,-121.474557191],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.9,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_6bf56b8bb16846c694a61b345f1bb0e7 = L.popup({maxWidth: '300'});
var html_0546b496a3df443ea43ef0bfd8ec5564 = $('<div id="html_0546b496a3df443ea43ef0bfd8ec5564" style="width: 100.0%; height: 100.0%;">DaKind 5.9</div>')[0];
popup_6bf56b8bb16846c694a61b345f1bb0e7.setContent(html_0546b496a3df443ea43ef0bfd8ec5564);
circle_marker_cef97393bd9c4ed48ac53ac10fb27bd2.bindPopup(popup_6bf56b8bb16846c694a61b345f1bb0e7);
var circle_marker_57e09f5aa6994e1eb1c4903887997648 = L.circleMarker(
[45.2907655133,-121.939611358],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.2,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_5f1620d705f24afb9af0caf0e9a8a52b = L.popup({maxWidth: '300'});
var html_12d8779f133642a684f02663e6d40e73 = $('<div id="html_12d8779f133642a684f02663e6d40e73" style="width: 100.0%; height: 100.0%;">Camel Back 5.9</div>')[0];
popup_5f1620d705f24afb9af0caf0e9a8a52b.setContent(html_12d8779f133642a684f02663e6d40e73);
circle_marker_57e09f5aa6994e1eb1c4903887997648.bindPopup(popup_5f1620d705f24afb9af0caf0e9a8a52b);
var circle_marker_a84ad234fa5f4204bd494ddee619e7ca = L.circleMarker(
[45.4098947889,-121.568446944],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.5,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_336ea0c644994968904a182818867013 = L.popup({maxWidth: '300'});
var html_e8306cbabdaa4e0eafcdfbf2f276bfac = $('<div id="html_e8306cbabdaa4e0eafcdfbf2f276bfac" style="width: 100.0%; height: 100.0%;">GSR (Good Sport Route) 5.7</div>')[0];
popup_336ea0c644994968904a182818867013.setContent(html_e8306cbabdaa4e0eafcdfbf2f276bfac);
circle_marker_a84ad234fa5f4204bd494ddee619e7ca.bindPopup(popup_336ea0c644994968904a182818867013);
var circle_marker_dfa81e20b7e4413ea33771814ca3e342 = L.circleMarker(
[45.4105003012,-121.568395505],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.8,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_61e7771656934266891f1452abb1704b = L.popup({maxWidth: '300'});
var html_5da28c405ef44fe2b8899f54bdf16b92 = $('<div id="html_5da28c405ef44fe2b8899f54bdf16b92" style="width: 100.0%; height: 100.0%;">Hanging Chad 5.7</div>')[0];
popup_61e7771656934266891f1452abb1704b.setContent(html_5da28c405ef44fe2b8899f54bdf16b92);
circle_marker_dfa81e20b7e4413ea33771814ca3e342.bindPopup(popup_61e7771656934266891f1452abb1704b);
var circle_marker_4b724d63b58640c799f7b60ae31ab1b7 = L.circleMarker(
[45.4081023551,-121.568928626],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5.7,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_016ecc154acb4910bfd99a3a48a6ce42 = L.popup({maxWidth: '300'});
var html_38f3733f110a49e6942f26d556ddd37f = $('<div id="html_38f3733f110a49e6942f26d556ddd37f" style="width: 100.0%; height: 100.0%;">Nosferatu 5.9</div>')[0];
popup_016ecc154acb4910bfd99a3a48a6ce42.setContent(html_38f3733f110a49e6942f26d556ddd37f);
circle_marker_4b724d63b58640c799f7b60ae31ab1b7.bindPopup(popup_016ecc154acb4910bfd99a3a48a6ce42);
var circle_marker_90f0b47602dc4e94a4d1a6b46a88765d = L.circleMarker(
[45.3729187953,-121.475017811],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.2,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_84697845bd784ae2ab2ddff18d1da06e = L.popup({maxWidth: '300'});
var html_571ffdd8744142dc94270dd58fc5facb = $('<div id="html_571ffdd8744142dc94270dd58fc5facb" style="width: 100.0%; height: 100.0%;">Silence of the Cams 5.8</div>')[0];
popup_84697845bd784ae2ab2ddff18d1da06e.setContent(html_571ffdd8744142dc94270dd58fc5facb);
circle_marker_90f0b47602dc4e94a4d1a6b46a88765d.bindPopup(popup_84697845bd784ae2ab2ddff18d1da06e);
var circle_marker_17c7b1f79a784d2e878bb194d0c37296 = L.circleMarker(
[45.2912321429,-121.939395727],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 3.9,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_f8e3ae3ea0b04c8fb077bc68435aecfd = L.popup({maxWidth: '300'});
var html_b70ee2a9235c4707b03e972b969c1820 = $('<div id="html_b70ee2a9235c4707b03e972b969c1820" style="width: 100.0%; height: 100.0%;">Cave Man Crawl 5.7</div>')[0];
popup_f8e3ae3ea0b04c8fb077bc68435aecfd.setContent(html_b70ee2a9235c4707b03e972b969c1820);
circle_marker_17c7b1f79a784d2e878bb194d0c37296.bindPopup(popup_f8e3ae3ea0b04c8fb077bc68435aecfd);
var circle_marker_1a61c9ccec9545b2ac0dc0ee02a0ebcd = L.circleMarker(
[45.4053472527,-121.56810631],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 5.0,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_42910ef1121f4bb195f93eb629ad9726 = L.popup({maxWidth: '300'});
var html_10d55337964b43ef8f06cd4cd3484682 = $('<div id="html_10d55337964b43ef8f06cd4cd3484682" style="width: 100.0%; height: 100.0%;">For Pete's Sake 5.8</div>')[0];
popup_42910ef1121f4bb195f93eb629ad9726.setContent(html_10d55337964b43ef8f06cd4cd3484682);
circle_marker_1a61c9ccec9545b2ac0dc0ee02a0ebcd.bindPopup(popup_42910ef1121f4bb195f93eb629ad9726);
var circle_marker_ed06c9f973c44a3b8821c17bc9c63be7 = L.circleMarker(
[45.3969876916,-121.859542176],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.4,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_69886043fe6d4871824dc4e6addfdf36 = L.popup({maxWidth: '300'});
var html_e821fd6ac1bc410980766517e0ff11de = $('<div id="html_e821fd6ac1bc410980766517e0ff11de" style="width: 100.0%; height: 100.0%;">Straw Man 5.8</div>')[0];
popup_69886043fe6d4871824dc4e6addfdf36.setContent(html_e821fd6ac1bc410980766517e0ff11de);
circle_marker_ed06c9f973c44a3b8821c17bc9c63be7.bindPopup(popup_69886043fe6d4871824dc4e6addfdf36);
var circle_marker_9f9d8e05eabe4bdab23a3e09dbea9113 = L.circleMarker(
[45.3730599387,-121.47426542],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.4,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_16d2eb5b46004c90b40592f8e5dcc36d = L.popup({maxWidth: '300'});
var html_2572b65395424064ada957d8ce62f4f7 = $('<div id="html_2572b65395424064ada957d8ce62f4f7" style="width: 100.0%; height: 100.0%;">Nook and Cranny 5.8</div>')[0];
popup_16d2eb5b46004c90b40592f8e5dcc36d.setContent(html_2572b65395424064ada957d8ce62f4f7);
circle_marker_9f9d8e05eabe4bdab23a3e09dbea9113.bindPopup(popup_16d2eb5b46004c90b40592f8e5dcc36d);
var circle_marker_c323f518fa234b20bc57946d82b1b4d4 = L.circleMarker(
[45.4096237691,-121.568765266],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.7,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_1b8284a3636649239fb162de97f9f372 = L.popup({maxWidth: '300'});
var html_054288d7f50a497095ea57bf81593102 = $('<div id="html_054288d7f50a497095ea57bf81593102" style="width: 100.0%; height: 100.0%;">Blue Grouse 5.9</div>')[0];
popup_1b8284a3636649239fb162de97f9f372.setContent(html_054288d7f50a497095ea57bf81593102);
circle_marker_c323f518fa234b20bc57946d82b1b4d4.bindPopup(popup_1b8284a3636649239fb162de97f9f372);
var circle_marker_55536bb1405e46ec81c0501bed3b3988 = L.circleMarker(
[45.4049587518,-121.568317103],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.6,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_da2688b6b0064b87ad508298231d2858 = L.popup({maxWidth: '300'});
var html_361dfe27e8be400fa93b0d7bc009823a = $('<div id="html_361dfe27e8be400fa93b0d7bc009823a" style="width: 100.0%; height: 100.0%;">Even 5.7</div>')[0];
popup_da2688b6b0064b87ad508298231d2858.setContent(html_361dfe27e8be400fa93b0d7bc009823a);
circle_marker_55536bb1405e46ec81c0501bed3b3988.bindPopup(popup_da2688b6b0064b87ad508298231d2858);
var circle_marker_1574e3a3671d40b7b0226e491f773f13 = L.circleMarker(
[45.4079169642,-121.568787716],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.9,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_6786e81c45a74ce48c7e5124f9a67a99 = L.popup({maxWidth: '300'});
var html_1d316557e656437e90996eb5fcf173a7 = $('<div id="html_1d316557e656437e90996eb5fcf173a7" style="width: 100.0%; height: 100.0%;">Yeti's Betty 5.8</div>')[0];
popup_6786e81c45a74ce48c7e5124f9a67a99.setContent(html_1d316557e656437e90996eb5fcf173a7);
circle_marker_1574e3a3671d40b7b0226e491f773f13.bindPopup(popup_6786e81c45a74ce48c7e5124f9a67a99);
var circle_marker_6efff55a497e491b973f4b98e0fd77f8 = L.circleMarker(
[45.3484716648,-121.437775306],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.5,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_d5fd71520d594ae28a7a420334d22fbe = L.popup({maxWidth: '300'});
var html_eb4a5728540f4dd38fc4b29d41502ab3 = $('<div id="html_eb4a5728540f4dd38fc4b29d41502ab3" style="width: 100.0%; height: 100.0%;">Out of this World 5.9</div>')[0];
popup_d5fd71520d594ae28a7a420334d22fbe.setContent(html_eb4a5728540f4dd38fc4b29d41502ab3);
circle_marker_6efff55a497e491b973f4b98e0fd77f8.bindPopup(popup_d5fd71520d594ae28a7a420334d22fbe);
var circle_marker_899893b0895e466f86f8b671932d856f = L.circleMarker(
[45.4093071322,-121.568396045],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.2,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_dc56fa51db74468ab9830b25d17d20e6 = L.popup({maxWidth: '300'});
var html_a5d2a0198e7340f590f73a4a034a1735 = $('<div id="html_a5d2a0198e7340f590f73a4a034a1735" style="width: 100.0%; height: 100.0%;">Point of Diminishing Returns (PDR) 5.9</div>')[0];
popup_dc56fa51db74468ab9830b25d17d20e6.setContent(html_a5d2a0198e7340f590f73a4a034a1735);
circle_marker_899893b0895e466f86f8b671932d856f.bindPopup(popup_dc56fa51db74468ab9830b25d17d20e6);
var circle_marker_4a04b526f9c245b398c5a8804826e128 = L.circleMarker(
[45.4099421614,-121.568416505],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 4.3,
"stroke": true,
"weight": 3
}
).addTo(map_acbcad009e434ebb8260ed859c36f651);
var popup_cfd2cb7bd06646eda559fe1afbd92888 = L.popup({maxWidth: '300'});
var html_8d06640413fd427c8f649f032b94bb78 = $('<div id="html_8d06640413fd427c8f649f032b94bb78" style="width: 100.0%; height: 100.0%;">Cerberus 5.9</div>')[0];
popup_cfd2cb7bd06646eda559fe1afbd92888.setContent(html_8d06640413fd427c8f649f032b94bb78);
circle_marker_4a04b526f9c245b398c5a8804826e128.bindPopup(popup_cfd2cb7bd06646eda559fe1afbd92888);
var circle_marker_4c0197ef890848a6a0c0d8aee48a2f1c = L.circleMarker(
[45.3482948672,-121.437058141],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",