-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevils.html
4156 lines (2903 loc) · 132 KB
/
devils.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_aa57fd9c04b44b929838b5e05aeb793a {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_aa57fd9c04b44b929838b5e05aeb793a" ></div>
</body>
<script>
var bounds = null;
var map_aa57fd9c04b44b929838b5e05aeb793a = L.map(
'map_aa57fd9c04b44b929838b5e05aeb793a',
{center: [44.5903451613,-104.715918548],
zoom: 15,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_6729bd96289b4bc091635aca16856fb5 = 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_aa57fd9c04b44b929838b5e05aeb793a);
var circle_marker_4a5d42fed5cc4eaca656e7a0ed8d37a2 = L.circleMarker(
[44.5896689575,-104.714432224],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_fdec9aa9692e4ad6b70c9d5baacd8b81 = L.popup({maxWidth: '300'});
var html_2712cf24e4da42409e05fd6ddc5fa539 = $('<div id="html_2712cf24e4da42409e05fd6ddc5fa539" style="width: 100.0%; height: 100.0%;">Bowling Alley- aka Durrance approach route 5.5</div>')[0];
popup_fdec9aa9692e4ad6b70c9d5baacd8b81.setContent(html_2712cf24e4da42409e05fd6ddc5fa539);
circle_marker_4a5d42fed5cc4eaca656e7a0ed8d37a2.bindPopup(popup_fdec9aa9692e4ad6b70c9d5baacd8b81);
var circle_marker_f8e3410f270c48abb794d96fed32027b = L.circleMarker(
[44.5898072536,-104.714868757],
{
"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": 6.0,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_1f51a949706a4c8ea887c2873ffb70ad = L.popup({maxWidth: '300'});
var html_e8a50c1d0ec5448abe360cf2f282df3c = $('<div id="html_e8a50c1d0ec5448abe360cf2f282df3c" style="width: 100.0%; height: 100.0%;">Windex 5.6</div>')[0];
popup_1f51a949706a4c8ea887c2873ffb70ad.setContent(html_e8a50c1d0ec5448abe360cf2f282df3c);
circle_marker_f8e3410f270c48abb794d96fed32027b.bindPopup(popup_1f51a949706a4c8ea887c2873ffb70ad);
var circle_marker_e17639c20b06493bbf6968985a9d99a7 = L.circleMarker(
[44.5898848201,-104.714836195],
{
"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": 5.0,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_f0170577e3d4431fa772c14fdff3c3ca = L.popup({maxWidth: '300'});
var html_dd8efd24fb59456fa25f623039ac151b = $('<div id="html_dd8efd24fb59456fa25f623039ac151b" style="width: 100.0%; height: 100.0%;">Double-Edged Blade 5.6</div>')[0];
popup_f0170577e3d4431fa772c14fdff3c3ca.setContent(html_dd8efd24fb59456fa25f623039ac151b);
circle_marker_e17639c20b06493bbf6968985a9d99a7.bindPopup(popup_f0170577e3d4431fa772c14fdff3c3ca);
var circle_marker_b5b3bc94e19740cfb03613ebf0cdc4f7 = L.circleMarker(
[44.5895482881,-104.716082983],
{
"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.9,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_4875691755b943fab121d4f44e80eb33 = L.popup({maxWidth: '300'});
var html_e5d1ca76e5c446cfb34adadeffd05135 = $('<div id="html_e5d1ca76e5c446cfb34adadeffd05135" style="width: 100.0%; height: 100.0%;">Walt Bailey 5.9</div>')[0];
popup_4875691755b943fab121d4f44e80eb33.setContent(html_e5d1ca76e5c446cfb34adadeffd05135);
circle_marker_b5b3bc94e19740cfb03613ebf0cdc4f7.bindPopup(popup_4875691755b943fab121d4f44e80eb33);
var circle_marker_cbf98fe55b534c9d97b81ad7cffdc4b7 = L.circleMarker(
[44.5896665903,-104.715488738],
{
"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.6,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_61a86a0319f8478cb576e9c8680abc33 = L.popup({maxWidth: '300'});
var html_64911292d9294da4a43c25e963b822a6 = $('<div id="html_64911292d9294da4a43c25e963b822a6" style="width: 100.0%; height: 100.0%;">Soler 5.9</div>')[0];
popup_61a86a0319f8478cb576e9c8680abc33.setContent(html_64911292d9294da4a43c25e963b822a6);
circle_marker_cbf98fe55b534c9d97b81ad7cffdc4b7.bindPopup(popup_61a86a0319f8478cb576e9c8680abc33);
var circle_marker_0fce9457467a4bb5acc23e1575ad9452 = L.circleMarker(
[44.5900043455,-104.717152457],
{
"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.5,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_9dcc970528ef4d699ee5d292e3ccdfc9 = L.popup({maxWidth: '300'});
var html_b0b840c8092a4c21b9a8f7c5bcaecca2 = $('<div id="html_b0b840c8092a4c21b9a8f7c5bcaecca2" style="width: 100.0%; height: 100.0%;">Blotter is my Spotter 5.7</div>')[0];
popup_9dcc970528ef4d699ee5d292e3ccdfc9.setContent(html_b0b840c8092a4c21b9a8f7c5bcaecca2);
circle_marker_0fce9457467a4bb5acc23e1575ad9452.bindPopup(popup_9dcc970528ef4d699ee5d292e3ccdfc9);
var circle_marker_1ba9038de94c41438d4e81f273f6345d = L.circleMarker(
[44.5903936802,-104.714789783],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_448afc9b9f894aefbd7f04558e731f99 = L.popup({maxWidth: '300'});
var html_1930afd21c694d51b0d5bc7acdb7f9fb = $('<div id="html_1930afd21c694d51b0d5bc7acdb7f9fb" style="width: 100.0%; height: 100.0%;">Wiessner 5.7</div>')[0];
popup_448afc9b9f894aefbd7f04558e731f99.setContent(html_1930afd21c694d51b0d5bc7acdb7f9fb);
circle_marker_1ba9038de94c41438d4e81f273f6345d.bindPopup(popup_448afc9b9f894aefbd7f04558e731f99);
var circle_marker_bc93996376d84fae9da1ed0387238cd5 = L.circleMarker(
[44.5900060309,-104.716154318],
{
"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.1,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_d1ed2f93adc4421c9a392ea9b1602de8 = L.popup({maxWidth: '300'});
var html_b0f48a92d4804fa6a939e440bbc44bec = $('<div id="html_b0f48a92d4804fa6a939e440bbc44bec" style="width: 100.0%; height: 100.0%;">Tintin Does Doughnuts 5.9</div>')[0];
popup_d1ed2f93adc4421c9a392ea9b1602de8.setContent(html_b0f48a92d4804fa6a939e440bbc44bec);
circle_marker_bc93996376d84fae9da1ed0387238cd5.bindPopup(popup_d1ed2f93adc4421c9a392ea9b1602de8);
var circle_marker_0399f0f8fa9847eaaf75446db292652e = L.circleMarker(
[44.5912238704,-104.714484696],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_08ded6e407b147b1a191888e00398e70 = L.popup({maxWidth: '300'});
var html_a770fe92273b432d850b91c90379f5e8 = $('<div id="html_a770fe92273b432d850b91c90379f5e8" style="width: 100.0%; height: 100.0%;">Gooseberry Jam 5.9</div>')[0];
popup_08ded6e407b147b1a191888e00398e70.setContent(html_a770fe92273b432d850b91c90379f5e8);
circle_marker_0399f0f8fa9847eaaf75446db292652e.bindPopup(popup_08ded6e407b147b1a191888e00398e70);
var circle_marker_ba1b5c6a31774368b3a0c4f72daa768d = L.circleMarker(
[44.5902592743,-104.714567124],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_13f3b578c20b442cb452d21d1de5fb09 = L.popup({maxWidth: '300'});
var html_d5f0c0721a1c4a709f60043c1d20018d = $('<div id="html_d5f0c0721a1c4a709f60043c1d20018d" style="width: 100.0%; height: 100.0%;">Late for Dinner 5.7</div>')[0];
popup_13f3b578c20b442cb452d21d1de5fb09.setContent(html_d5f0c0721a1c4a709f60043c1d20018d);
circle_marker_ba1b5c6a31774368b3a0c4f72daa768d.bindPopup(popup_13f3b578c20b442cb452d21d1de5fb09);
var circle_marker_46cd86362603487cb85237691ac9474b = L.circleMarker(
[44.5903196534,-104.714922933],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_64342f60cc8e4b5d80c636d0bec6e62c = L.popup({maxWidth: '300'});
var html_e4bc9a19ad0142959227e962449b2bbc = $('<div id="html_e4bc9a19ad0142959227e962449b2bbc" style="width: 100.0%; height: 100.0%;">Dancing With The Devils After Dark 5.8</div>')[0];
popup_64342f60cc8e4b5d80c636d0bec6e62c.setContent(html_e4bc9a19ad0142959227e962449b2bbc);
circle_marker_46cd86362603487cb85237691ac9474b.bindPopup(popup_64342f60cc8e4b5d80c636d0bec6e62c);
var circle_marker_a520b65ded95492c97212c1a1db12143 = L.circleMarker(
[44.5895441732,-104.716078799],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_08c529d820244b34b958d8dac109ba5b = L.popup({maxWidth: '300'});
var html_d7dbf50b4c3b46f394d52cbb153c6452 = $('<div id="html_d7dbf50b4c3b46f394d52cbb153c6452" style="width: 100.0%; height: 100.0%;">Roach Addition 5.7</div>')[0];
popup_08c529d820244b34b958d8dac109ba5b.setContent(html_d7dbf50b4c3b46f394d52cbb153c6452);
circle_marker_a520b65ded95492c97212c1a1db12143.bindPopup(popup_08c529d820244b34b958d8dac109ba5b);
var circle_marker_3b03883fdc884baaba9b89c3fe911a53 = L.circleMarker(
[44.5901904851,-104.714224287],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_3bf14786f52f4f9f9754693a83bdcd7c = L.popup({maxWidth: '300'});
var html_d292606efe76411380390a32cd85a679 = $('<div id="html_d292606efe76411380390a32cd85a679" style="width: 100.0%; height: 100.0%;">Sundance 5.7</div>')[0];
popup_3bf14786f52f4f9f9754693a83bdcd7c.setContent(html_d292606efe76411380390a32cd85a679);
circle_marker_3b03883fdc884baaba9b89c3fe911a53.bindPopup(popup_3bf14786f52f4f9f9754693a83bdcd7c);
var circle_marker_01abe9aaa3a2485caa20fb880fc08bff = L.circleMarker(
[44.5907598877,-104.71443904],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_bad9ab2b62cf4331b1f1c44c78e75e1f = L.popup({maxWidth: '300'});
var html_0cf87b36bc95468a90d4df2ecee2e66b = $('<div id="html_0cf87b36bc95468a90d4df2ecee2e66b" style="width: 100.0%; height: 100.0%;">Assembly Line 5.9</div>')[0];
popup_bad9ab2b62cf4331b1f1c44c78e75e1f.setContent(html_0cf87b36bc95468a90d4df2ecee2e66b);
circle_marker_01abe9aaa3a2485caa20fb880fc08bff.bindPopup(popup_bad9ab2b62cf4331b1f1c44c78e75e1f);
var circle_marker_1e9be9eb85fe4629b5d043090f8d6a2c = L.circleMarker(
[44.590254326,-104.717052054],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_dc5df4ae67694da3b644385331b8babd = L.popup({maxWidth: '300'});
var html_6877c49e67864726884fab07532d1727 = $('<div id="html_6877c49e67864726884fab07532d1727" style="width: 100.0%; height: 100.0%;">Harkness variation 5.8</div>')[0];
popup_dc5df4ae67694da3b644385331b8babd.setContent(html_6877c49e67864726884fab07532d1727);
circle_marker_1e9be9eb85fe4629b5d043090f8d6a2c.bindPopup(popup_dc5df4ae67694da3b644385331b8babd);
var circle_marker_ac4b2d5d45b348f9915f9cecc715cae6 = L.circleMarker(
[44.5899361927,-104.71517145],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_b1626e2803ca419d92a7988b057e7b08 = L.popup({maxWidth: '300'});
var html_231e30fff9844d3b9ae47f8afb041c43 = $('<div id="html_231e30fff9844d3b9ae47f8afb041c43" style="width: 100.0%; height: 100.0%;">Cave 5.9</div>')[0];
popup_b1626e2803ca419d92a7988b057e7b08.setContent(html_231e30fff9844d3b9ae47f8afb041c43);
circle_marker_ac4b2d5d45b348f9915f9cecc715cae6.bindPopup(popup_b1626e2803ca419d92a7988b057e7b08);
var circle_marker_aa0ba3778bb342f8a3bc1c56b82fa16c = L.circleMarker(
[44.589817672,-104.718027137],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_16e3e41d310741d5b66dbfc16bf68987 = L.popup({maxWidth: '300'});
var html_f1e795b2ddc849ba9f771aa86e91b28d = $('<div id="html_f1e795b2ddc849ba9f771aa86e91b28d" style="width: 100.0%; height: 100.0%;">Call Evita 911 5.9</div>')[0];
popup_16e3e41d310741d5b66dbfc16bf68987.setContent(html_f1e795b2ddc849ba9f771aa86e91b28d);
circle_marker_aa0ba3778bb342f8a3bc1c56b82fa16c.bindPopup(popup_16e3e41d310741d5b66dbfc16bf68987);
var circle_marker_8d76e1be861644ed88513e50960cd9f8 = L.circleMarker(
[44.5896338983,-104.714684545],
{
"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.1,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_c16c14e219a64b698c1287e0fcf9fbb5 = L.popup({maxWidth: '300'});
var html_5f454b16c97045e0b9a167eeeebce076 = $('<div id="html_5f454b16c97045e0b9a167eeeebce076" style="width: 100.0%; height: 100.0%;">Manifest Destiny 5.9</div>')[0];
popup_c16c14e219a64b698c1287e0fcf9fbb5.setContent(html_5f454b16c97045e0b9a167eeeebce076);
circle_marker_8d76e1be861644ed88513e50960cd9f8.bindPopup(popup_c16c14e219a64b698c1287e0fcf9fbb5);
var circle_marker_3c3bbd970e7f4df782419505aa89a5ab = L.circleMarker(
[44.5912943144,-104.714882218],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_c24aeb26fd0e496985caba8fbd35d37e = L.popup({maxWidth: '300'});
var html_abefb7c828524386b18e8105148d2f42 = $('<div id="html_abefb7c828524386b18e8105148d2f42" style="width: 100.0%; height: 100.0%;">Missed Opportunity 5.8</div>')[0];
popup_c24aeb26fd0e496985caba8fbd35d37e.setContent(html_abefb7c828524386b18e8105148d2f42);
circle_marker_3c3bbd970e7f4df782419505aa89a5ab.bindPopup(popup_c24aeb26fd0e496985caba8fbd35d37e);
var circle_marker_0823ea57b71a419b81b1351b159a17ac = L.circleMarker(
[44.5903405281,-104.717570295],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_6a92e8edc17141e3bd8706596d2ec3e2 = L.popup({maxWidth: '300'});
var html_78a8fc7377c047b68f20b58f07f23001 = $('<div id="html_78a8fc7377c047b68f20b58f07f23001" style="width: 100.0%; height: 100.0%;">Little Fingers 5.9</div>')[0];
popup_6a92e8edc17141e3bd8706596d2ec3e2.setContent(html_78a8fc7377c047b68f20b58f07f23001);
circle_marker_0823ea57b71a419b81b1351b159a17ac.bindPopup(popup_6a92e8edc17141e3bd8706596d2ec3e2);
var circle_marker_76fdefe4a0d041fea9e012720b9dd846 = L.circleMarker(
[44.5905802743,-104.717395768],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_8db2686d150040cfa2b7d571d9795e10 = L.popup({maxWidth: '300'});
var html_7742c4520fa748068fce0fea0988d7e4 = $('<div id="html_7742c4520fa748068fce0fea0988d7e4" style="width: 100.0%; height: 100.0%;">Little Creatures 5.9</div>')[0];
popup_8db2686d150040cfa2b7d571d9795e10.setContent(html_7742c4520fa748068fce0fea0988d7e4);
circle_marker_76fdefe4a0d041fea9e012720b9dd846.bindPopup(popup_8db2686d150040cfa2b7d571d9795e10);
var circle_marker_992fb4c7db1448109fd8a7fd0fbe180e = L.circleMarker(
[44.5904956218,-104.717082138],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_3495873d0fbe432999d084b21709d5a0 = L.popup({maxWidth: '300'});
var html_a2434bb3307c45bfb5b330249a1fcb43 = $('<div id="html_a2434bb3307c45bfb5b330249a1fcb43" style="width: 100.0%; height: 100.0%;">Down and Out 5.7</div>')[0];
popup_3495873d0fbe432999d084b21709d5a0.setContent(html_a2434bb3307c45bfb5b330249a1fcb43);
circle_marker_992fb4c7db1448109fd8a7fd0fbe180e.bindPopup(popup_3495873d0fbe432999d084b21709d5a0);
var circle_marker_16fd2fbee8bd434590aaad187dc095bf = L.circleMarker(
[44.5900186409,-104.714371113],
{
"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_aa57fd9c04b44b929838b5e05aeb793a);
var popup_eee845de1fba446393854e285e0e83df = L.popup({maxWidth: '300'});
var html_330e0e1930f04d1bbfe53cd63f9cd00e = $('<div id="html_330e0e1930f04d1bbfe53cd63f9cd00e" style="width: 100.0%; height: 100.0%;">Liken Lichen 5.9</div>')[0];
popup_eee845de1fba446393854e285e0e83df.setContent(html_330e0e1930f04d1bbfe53cd63f9cd00e);
circle_marker_16fd2fbee8bd434590aaad187dc095bf.bindPopup(popup_eee845de1fba446393854e285e0e83df);
var circle_marker_079a041a89e0418585aa2ca08c7c8221 = L.circleMarker(
[44.5899283834,-104.717592034],
{
"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.0,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_871c53563add400f8b88a71ebb1da9e4 = L.popup({maxWidth: '300'});
var html_93266d59ae914d8c91ffeaf8effb286a = $('<div id="html_93266d59ae914d8c91ffeaf8effb286a" style="width: 100.0%; height: 100.0%;">Warm Up 5.7</div>')[0];
popup_871c53563add400f8b88a71ebb1da9e4.setContent(html_93266d59ae914d8c91ffeaf8effb286a);
circle_marker_079a041a89e0418585aa2ca08c7c8221.bindPopup(popup_871c53563add400f8b88a71ebb1da9e4);
var circle_marker_bcc0f85142194991b38d163f73dd6db6 = L.circleMarker(
[44.5900431386,-104.715867055],
{
"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.5,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_ad872f37d16f4980a7e7b9bc39b8f7ee = L.popup({maxWidth: '300'});
var html_5e13a9df511e44159856b627867e88de = $('<div id="html_5e13a9df511e44159856b627867e88de" style="width: 100.0%; height: 100.0%;">Bon Homme Variation 5.8</div>')[0];
popup_ad872f37d16f4980a7e7b9bc39b8f7ee.setContent(html_5e13a9df511e44159856b627867e88de);
circle_marker_bcc0f85142194991b38d163f73dd6db6.bindPopup(popup_ad872f37d16f4980a7e7b9bc39b8f7ee);
var circle_marker_4d6c7402be0e4a7dae7680bc8bbfcf6b = L.circleMarker(
[44.5903815428,-104.717592939],
{
"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.0,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_8724c5f08b6f4327a846aef763a27276 = L.popup({maxWidth: '300'});
var html_c05075a25d494f2c87ae27f7405f2c01 = $('<div id="html_c05075a25d494f2c87ae27f7405f2c01" style="width: 100.0%; height: 100.0%;">Friend of the Devil 5.8</div>')[0];
popup_8724c5f08b6f4327a846aef763a27276.setContent(html_c05075a25d494f2c87ae27f7405f2c01);
circle_marker_4d6c7402be0e4a7dae7680bc8bbfcf6b.bindPopup(popup_8724c5f08b6f4327a846aef763a27276);
var circle_marker_159056977c2441ec857b993594c89c43 = L.circleMarker(
[44.5894851039,-104.715701251],
{
"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.3,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_6f428391b2ef4c53a117077ca7737388 = L.popup({maxWidth: '300'});
var html_e8be3a31179d4dbfa3fc9321d4832135 = $('<div id="html_e8be3a31179d4dbfa3fc9321d4832135" style="width: 100.0%; height: 100.0%;">Best Crack in Minnesota 5.9</div>')[0];
popup_6f428391b2ef4c53a117077ca7737388.setContent(html_e8be3a31179d4dbfa3fc9321d4832135);
circle_marker_159056977c2441ec857b993594c89c43.bindPopup(popup_6f428391b2ef4c53a117077ca7737388);
var circle_marker_912c0a6555fa40bf84f5b186b82aca15 = L.circleMarker(
[44.5898706485,-104.717340041],
{
"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": 2.8,
"stroke": true,
"weight": 3
}
).addTo(map_aa57fd9c04b44b929838b5e05aeb793a);
var popup_79c26518aeca4c8c9f4a04863236dbd9 = L.popup({maxWidth: '300'});
var html_9bb196c172f04076b7931983898aca01 = $('<div id="html_9bb196c172f04076b7931983898aca01" style="width: 100.0%; height: 100.0%;">Warm Up Too 5.7</div>')[0];
popup_79c26518aeca4c8c9f4a04863236dbd9.setContent(html_9bb196c172f04076b7931983898aca01);
circle_marker_912c0a6555fa40bf84f5b186b82aca15.bindPopup(popup_79c26518aeca4c8c9f4a04863236dbd9);
var circle_marker_de8167aa42c54605b0696666a6e7eeea = L.circleMarker(
[44.5903394171,-104.717997906],
{
"bubblingMouseEvents": true,
"color": "#28a5d2",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",