-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest6.html
2110 lines (1229 loc) · 79.2 KB
/
test6.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_e728d8a11ec7447c9fcc8091b327433d {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_e728d8a11ec7447c9fcc8091b327433d" ></div>
</body>
<script>
var bounds = null;
var map_e728d8a11ec7447c9fcc8091b327433d = L.map(
'map_e728d8a11ec7447c9fcc8091b327433d',
{center: [40.897934,-73.885948],
zoom: 15,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_9cfc2e08cac643fdb66fd166916ada2d = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var marker_63715e181e414477af642d51999661c2 = L.marker(
[48.7767982,-121.810997],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_0a00dab9735c4f80805449e44b36924e = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_63715e181e414477af642d51999661c2.setIcon(icon_0a00dab9735c4f80805449e44b36924e);
var popup_472b85d6ff1b4f259cca55c38fb635d3 = L.popup({maxWidth: '300'});
var html_671a8773e1ce4f6488f2c2bc5b6fd8b2 = $('<div id="html_671a8773e1ce4f6488f2c2bc5b6fd8b2" style="width: 100.0%; height: 100.0%;">Baker</div>')[0];
popup_472b85d6ff1b4f259cca55c38fb635d3.setContent(html_671a8773e1ce4f6488f2c2bc5b6fd8b2);
marker_63715e181e414477af642d51999661c2.bindPopup(popup_472b85d6ff1b4f259cca55c38fb635d3);
var marker_6a2c9f0251ba43f4a6edeb21ce371a51 = L.marker(
[48.1118011,-121.1110001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_dbc4a7ab8e0b4c09a151bc2941539d7a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6a2c9f0251ba43f4a6edeb21ce371a51.setIcon(icon_dbc4a7ab8e0b4c09a151bc2941539d7a);
var popup_9378584deba6486ca9c1a04680eccef2 = L.popup({maxWidth: '300'});
var html_ad3d614f05614f499b5f671f2a5ed3f2 = $('<div id="html_ad3d614f05614f499b5f671f2a5ed3f2" style="width: 100.0%; height: 100.0%;">Glacier Peak</div>')[0];
popup_9378584deba6486ca9c1a04680eccef2.setContent(html_ad3d614f05614f499b5f671f2a5ed3f2);
marker_6a2c9f0251ba43f4a6edeb21ce371a51.bindPopup(popup_9378584deba6486ca9c1a04680eccef2);
var marker_cdcd090702a1440ab9bfe819141a5d6d = L.marker(
[46.8698006,-121.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_9e5830109a0447dcb0adbbd3b51012ec = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cdcd090702a1440ab9bfe819141a5d6d.setIcon(icon_9e5830109a0447dcb0adbbd3b51012ec);
var popup_2b1f633537794c0890afba09b47fc134 = L.popup({maxWidth: '300'});
var html_74a249650ef1439bb30a8ffe0d369126 = $('<div id="html_74a249650ef1439bb30a8ffe0d369126" style="width: 100.0%; height: 100.0%;">Rainier</div>')[0];
popup_2b1f633537794c0890afba09b47fc134.setContent(html_74a249650ef1439bb30a8ffe0d369126);
marker_cdcd090702a1440ab9bfe819141a5d6d.bindPopup(popup_2b1f633537794c0890afba09b47fc134);
var marker_335dd269065e4a0d9ad50977a2797226 = L.marker(
[46.1997986,-122.1809998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_3be063684a2041af8608a8f8a6623edb = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_335dd269065e4a0d9ad50977a2797226.setIcon(icon_3be063684a2041af8608a8f8a6623edb);
var popup_d399d70409df4f9aadbeffd66504fda3 = L.popup({maxWidth: '300'});
var html_2a9508ef28d148269221e37a7f944cdb = $('<div id="html_2a9508ef28d148269221e37a7f944cdb" style="width: 100.0%; height: 100.0%;">St. Helens</div>')[0];
popup_d399d70409df4f9aadbeffd66504fda3.setContent(html_2a9508ef28d148269221e37a7f944cdb);
marker_335dd269065e4a0d9ad50977a2797226.bindPopup(popup_d399d70409df4f9aadbeffd66504fda3);
var marker_d1d43fae28eb4174ac9bc75ff2884755 = L.marker(
[46.20579910000001,-121.4909973],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_888c3a6c963948c981d94bad707098c0 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d1d43fae28eb4174ac9bc75ff2884755.setIcon(icon_888c3a6c963948c981d94bad707098c0);
var popup_3c89db71417d435ba4b358e7a6389a9e = L.popup({maxWidth: '300'});
var html_386028381b7d4892a597a830f954e53b = $('<div id="html_386028381b7d4892a597a830f954e53b" style="width: 100.0%; height: 100.0%;">Adams</div>')[0];
popup_3c89db71417d435ba4b358e7a6389a9e.setContent(html_386028381b7d4892a597a830f954e53b);
marker_d1d43fae28eb4174ac9bc75ff2884755.bindPopup(popup_3c89db71417d435ba4b358e7a6389a9e);
var marker_0c6b8940479a4b2e89e6cbd143c1a0b2 = L.marker(
[45.8797989,-122.0810013],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_0982f7c42b8b4562bf3e97587e3756f6 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0c6b8940479a4b2e89e6cbd143c1a0b2.setIcon(icon_0982f7c42b8b4562bf3e97587e3756f6);
var popup_6b991f21f72a4c10a1a96a60f73d21cf = L.popup({maxWidth: '300'});
var html_74c21ffc9d5b42348f33fc327b3eb6dc = $('<div id="html_74c21ffc9d5b42348f33fc327b3eb6dc" style="width: 100.0%; height: 100.0%;">West Crater</div>')[0];
popup_6b991f21f72a4c10a1a96a60f73d21cf.setContent(html_74c21ffc9d5b42348f33fc327b3eb6dc);
marker_0c6b8940479a4b2e89e6cbd143c1a0b2.bindPopup(popup_6b991f21f72a4c10a1a96a60f73d21cf);
var marker_291e941e1d59454f8acfac84031a9f14 = L.marker(
[45.929798100000006,-121.8209991],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_ce04a955020f4dc0abd7ee56d8eaa633 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_291e941e1d59454f8acfac84031a9f14.setIcon(icon_ce04a955020f4dc0abd7ee56d8eaa633);
var popup_edfc90a95fcd4f5c9a41196fd3cd96ba = L.popup({maxWidth: '300'});
var html_37003dbd68f84821a86eefe720f5be62 = $('<div id="html_37003dbd68f84821a86eefe720f5be62" style="width: 100.0%; height: 100.0%;">Indian Heaven</div>')[0];
popup_edfc90a95fcd4f5c9a41196fd3cd96ba.setContent(html_37003dbd68f84821a86eefe720f5be62);
marker_291e941e1d59454f8acfac84031a9f14.bindPopup(popup_edfc90a95fcd4f5c9a41196fd3cd96ba);
var marker_cc7fe053e8d6490cb240897a7424a433 = L.marker(
[45.3737984,-121.6910019],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_6c0fcca710ac4f55a10d6f95efa827f1 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cc7fe053e8d6490cb240897a7424a433.setIcon(icon_6c0fcca710ac4f55a10d6f95efa827f1);
var popup_c319e713a3e94566aa84cfb8ca5dbcb6 = L.popup({maxWidth: '300'});
var html_334022a5b057453a86894124bc1f70cf = $('<div id="html_334022a5b057453a86894124bc1f70cf" style="width: 100.0%; height: 100.0%;">Hood</div>')[0];
popup_c319e713a3e94566aa84cfb8ca5dbcb6.setContent(html_334022a5b057453a86894124bc1f70cf);
marker_cc7fe053e8d6490cb240897a7424a433.bindPopup(popup_c319e713a3e94566aa84cfb8ca5dbcb6);
var marker_e85241106e954659b285760ebf605af4 = L.marker(
[44.691799200000005,-121.8010025],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_f40bb916ab3f4431b22c14a021aca656 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_e85241106e954659b285760ebf605af4.setIcon(icon_f40bb916ab3f4431b22c14a021aca656);
var popup_6982eba7b66b4c0d9ce116c556350631 = L.popup({maxWidth: '300'});
var html_917105bdeb05487d8e1eb76560c556b9 = $('<div id="html_917105bdeb05487d8e1eb76560c556b9" style="width: 100.0%; height: 100.0%;">Jefferson</div>')[0];
popup_6982eba7b66b4c0d9ce116c556350631.setContent(html_917105bdeb05487d8e1eb76560c556b9);
marker_e85241106e954659b285760ebf605af4.bindPopup(popup_6982eba7b66b4c0d9ce116c556350631);
var marker_2c2a1921cef04b9a8380d63a67f21ada = L.marker(
[44.4197998,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_c3abf754cbd74647b7e437ce7d324fbb = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2c2a1921cef04b9a8380d63a67f21ada.setIcon(icon_c3abf754cbd74647b7e437ce7d324fbb);
var popup_492d34e0947c40c0a2b719077d3efcf9 = L.popup({maxWidth: '300'});
var html_d9525cc7983740b1832db199da850cbc = $('<div id="html_d9525cc7983740b1832db199da850cbc" style="width: 100.0%; height: 100.0%;">Blue Lake Crater</div>')[0];
popup_492d34e0947c40c0a2b719077d3efcf9.setContent(html_d9525cc7983740b1832db199da850cbc);
marker_2c2a1921cef04b9a8380d63a67f21ada.bindPopup(popup_492d34e0947c40c0a2b719077d3efcf9);
var marker_b2184f8bead04cbe979bab1f2c96b9c2 = L.marker(
[44.3797989,-121.9309998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_0cfa48951155468e98d4ea65c15b514d = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b2184f8bead04cbe979bab1f2c96b9c2.setIcon(icon_0cfa48951155468e98d4ea65c15b514d);
var popup_af2b1c44a1e340e3860178bf4c6d6017 = L.popup({maxWidth: '300'});
var html_90f949d0a28f45dfafd95ab6ee82e286 = $('<div id="html_90f949d0a28f45dfafd95ab6ee82e286" style="width: 100.0%; height: 100.0%;">Sand Mountain Field</div>')[0];
popup_af2b1c44a1e340e3860178bf4c6d6017.setContent(html_90f949d0a28f45dfafd95ab6ee82e286);
marker_b2184f8bead04cbe979bab1f2c96b9c2.bindPopup(popup_af2b1c44a1e340e3860178bf4c6d6017);
var marker_3325a76713684c96b0ed14f9e1fd84df = L.marker(
[44.331798600000006,-121.8310013],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_39e00108b00442b9ad4eafca05f00203 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3325a76713684c96b0ed14f9e1fd84df.setIcon(icon_39e00108b00442b9ad4eafca05f00203);
var popup_9d57f6e98dba492485a258d32723f152 = L.popup({maxWidth: '300'});
var html_8a49f4a9573947acbe7483acac7ee1d6 = $('<div id="html_8a49f4a9573947acbe7483acac7ee1d6" style="width: 100.0%; height: 100.0%;">Washington</div>')[0];
popup_9d57f6e98dba492485a258d32723f152.setContent(html_8a49f4a9573947acbe7483acac7ee1d6);
marker_3325a76713684c96b0ed14f9e1fd84df.bindPopup(popup_9d57f6e98dba492485a258d32723f152);
var marker_d77057128dc942b89aa3a5457aa32642 = L.marker(
[44.2848015,-121.8410034],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_5c4ee55e7fe848da8695b01c28a597e2 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d77057128dc942b89aa3a5457aa32642.setIcon(icon_5c4ee55e7fe848da8695b01c28a597e2);
var popup_8ecdc88ec3d94be49359fe540b7525aa = L.popup({maxWidth: '300'});
var html_cc6d3a783f774b82bb96e57b4612ec1f = $('<div id="html_cc6d3a783f774b82bb96e57b4612ec1f" style="width: 100.0%; height: 100.0%;">Belknap</div>')[0];
popup_8ecdc88ec3d94be49359fe540b7525aa.setContent(html_cc6d3a783f774b82bb96e57b4612ec1f);
marker_d77057128dc942b89aa3a5457aa32642.bindPopup(popup_8ecdc88ec3d94be49359fe540b7525aa);
var marker_7cd9673d896a4647bbd3ca2a75eefcbe = L.marker(
[44.1697998,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_3c9883a073c24108b18d4f3cf0518103 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_7cd9673d896a4647bbd3ca2a75eefcbe.setIcon(icon_3c9883a073c24108b18d4f3cf0518103);
var popup_02aeccbdc7b1413fa2fb9fe585153b31 = L.popup({maxWidth: '300'});
var html_147702d51b9e4dcb942ad1f5e81c2c24 = $('<div id="html_147702d51b9e4dcb942ad1f5e81c2c24" style="width: 100.0%; height: 100.0%;">North Sister Field</div>')[0];
popup_02aeccbdc7b1413fa2fb9fe585153b31.setContent(html_147702d51b9e4dcb942ad1f5e81c2c24);
marker_7cd9673d896a4647bbd3ca2a75eefcbe.bindPopup(popup_02aeccbdc7b1413fa2fb9fe585153b31);
var marker_577a3e481f4148c9826af96fbdb2dbe4 = L.marker(
[44.099800099999996,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_90e12ea5e1064686ac9c660e544e0782 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_577a3e481f4148c9826af96fbdb2dbe4.setIcon(icon_90e12ea5e1064686ac9c660e544e0782);
var popup_e0213793acf54f7585c1d776af712b4c = L.popup({maxWidth: '300'});
var html_71683dcb3ece4db0a4df7835a32eec02 = $('<div id="html_71683dcb3ece4db0a4df7835a32eec02" style="width: 100.0%; height: 100.0%;">South Sister</div>')[0];
popup_e0213793acf54f7585c1d776af712b4c.setContent(html_71683dcb3ece4db0a4df7835a32eec02);
marker_577a3e481f4148c9826af96fbdb2dbe4.bindPopup(popup_e0213793acf54f7585c1d776af712b4c);
var marker_bc3202ea0b0347248518e0d8db4c7b2d = L.marker(
[43.978801700000005,-121.6809998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_b2b4bba222e74964b5b279b35203a401 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bc3202ea0b0347248518e0d8db4c7b2d.setIcon(icon_b2b4bba222e74964b5b279b35203a401);
var popup_0b2cb03c325c41a18f48f73768f259e3 = L.popup({maxWidth: '300'});
var html_7c657522dbf84e429b85ff93c22f6a6b = $('<div id="html_7c657522dbf84e429b85ff93c22f6a6b" style="width: 100.0%; height: 100.0%;">Bachelor</div>')[0];
popup_0b2cb03c325c41a18f48f73768f259e3.setContent(html_7c657522dbf84e429b85ff93c22f6a6b);
marker_bc3202ea0b0347248518e0d8db4c7b2d.bindPopup(popup_0b2cb03c325c41a18f48f73768f259e3);
var marker_bc2d14b561744a0f86a00b8345b5fe90 = L.marker(
[43.7218018,-121.2210007],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_5071b0cceb31486e868cac7f35dcfdf7 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bc2d14b561744a0f86a00b8345b5fe90.setIcon(icon_5071b0cceb31486e868cac7f35dcfdf7);
var popup_89a97abd693544d7a6df6e8a26eb71ac = L.popup({maxWidth: '300'});
var html_dc4fc3a7e07643ab97e52de5e248b48c = $('<div id="html_dc4fc3a7e07643ab97e52de5e248b48c" style="width: 100.0%; height: 100.0%;">Newberry Volcano</div>')[0];
popup_89a97abd693544d7a6df6e8a26eb71ac.setContent(html_dc4fc3a7e07643ab97e52de5e248b48c);
marker_bc2d14b561744a0f86a00b8345b5fe90.bindPopup(popup_89a97abd693544d7a6df6e8a26eb71ac);
var marker_2a1159a71c3a44d9bf630e003f36dd20 = L.marker(
[43.569801299999995,-121.8209991],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_98ebb077b99e499bb13e4e808872a5b4 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2a1159a71c3a44d9bf630e003f36dd20.setIcon(icon_98ebb077b99e499bb13e4e808872a5b4);
var popup_1e591e7910614019a45d790a5a5f616e = L.popup({maxWidth: '300'});
var html_078361a74f974251b0c4389d6533b66c = $('<div id="html_078361a74f974251b0c4389d6533b66c" style="width: 100.0%; height: 100.0%;">Davis Lake</div>')[0];
popup_1e591e7910614019a45d790a5a5f616e.setContent(html_078361a74f974251b0c4389d6533b66c);
marker_2a1159a71c3a44d9bf630e003f36dd20.bindPopup(popup_1e591e7910614019a45d790a5a5f616e);
var marker_18364d1534c54d149f18218963ec2601 = L.marker(
[43.5119019,-120.8610001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_c6821298ea1249cb9352c1df727c71d7 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_18364d1534c54d149f18218963ec2601.setIcon(icon_c6821298ea1249cb9352c1df727c71d7);
var popup_bf62220805e842b49c9fb1f52187c01e = L.popup({maxWidth: '300'});
var html_3421b9c3949c4390b6dec86e6efa576b = $('<div id="html_3421b9c3949c4390b6dec86e6efa576b" style="width: 100.0%; height: 100.0%;">Devils Garden</div>')[0];
popup_bf62220805e842b49c9fb1f52187c01e.setContent(html_3421b9c3949c4390b6dec86e6efa576b);
marker_18364d1534c54d149f18218963ec2601.bindPopup(popup_bf62220805e842b49c9fb1f52187c01e);
var marker_e9836fff7cff49338ab80c6e00a4ffc2 = L.marker(
[43.240798999999996,-122.10099790000001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_b3aa32291b564023945fcf1c999f0f72 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_e9836fff7cff49338ab80c6e00a4ffc2.setIcon(icon_b3aa32291b564023945fcf1c999f0f72);
var popup_8cd86e9f31264586a44aa356cb440a7f = L.popup({maxWidth: '300'});
var html_28d38bac4ad54ab49c078eb12ae908bf = $('<div id="html_28d38bac4ad54ab49c078eb12ae908bf" style="width: 100.0%; height: 100.0%;">Cinnamon Butte</div>')[0];
popup_8cd86e9f31264586a44aa356cb440a7f.setContent(html_28d38bac4ad54ab49c078eb12ae908bf);
marker_e9836fff7cff49338ab80c6e00a4ffc2.bindPopup(popup_8cd86e9f31264586a44aa356cb440a7f);
var marker_0020ecdd5c08416ab65ec079cb741c0c = L.marker(
[43.471900899999994,-120.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_244efed583e24f5f95180655f56a3428 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0020ecdd5c08416ab65ec079cb741c0c.setIcon(icon_244efed583e24f5f95180655f56a3428);
var popup_350ecc249a094e449fa42931b3c6d0a1 = L.popup({maxWidth: '300'});
var html_c1b93e7bb91c4136b87e958c3913112b = $('<div id="html_c1b93e7bb91c4136b87e958c3913112b" style="width: 100.0%; height: 100.0%;">Squaw Ridge Lava Field</div>')[0];
popup_350ecc249a094e449fa42931b3c6d0a1.setContent(html_c1b93e7bb91c4136b87e958c3913112b);
marker_0020ecdd5c08416ab65ec079cb741c0c.bindPopup(popup_350ecc249a094e449fa42931b3c6d0a1);
var marker_3cba297fde0b490996b9ef9b301d8496 = L.marker(
[43.3609009,-120.6610031],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_b18d9d529ee746d68e8548bd41a97ed8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3cba297fde0b490996b9ef9b301d8496.setIcon(icon_b18d9d529ee746d68e8548bd41a97ed8);
var popup_44a5c66c38ee4f9da50d1d9e75a033fc = L.popup({maxWidth: '300'});
var html_84628adae70b4f48adbe0f71a136dbc1 = $('<div id="html_84628adae70b4f48adbe0f71a136dbc1" style="width: 100.0%; height: 100.0%;">Four Craters Lava Field</div>')[0];
popup_44a5c66c38ee4f9da50d1d9e75a033fc.setContent(html_84628adae70b4f48adbe0f71a136dbc1);
marker_3cba297fde0b490996b9ef9b301d8496.bindPopup(popup_44a5c66c38ee4f9da50d1d9e75a033fc);
var marker_293df6780ae94da89d34bab3f43cf088 = L.marker(
[42.9299011,-122.1210022],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_e78f4da1066b4d0c90f339832c45bfc5 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_293df6780ae94da89d34bab3f43cf088.setIcon(icon_e78f4da1066b4d0c90f339832c45bfc5);
var popup_1b4cf99d2a4a453f83708dcd9484a714 = L.popup({maxWidth: '300'});
var html_3e49dd6372dd44cfade0dbe8099c8f06 = $('<div id="html_3e49dd6372dd44cfade0dbe8099c8f06" style="width: 100.0%; height: 100.0%;">Crater Lake</div>')[0];
popup_1b4cf99d2a4a453f83708dcd9484a714.setContent(html_3e49dd6372dd44cfade0dbe8099c8f06);
marker_293df6780ae94da89d34bab3f43cf088.bindPopup(popup_1b4cf99d2a4a453f83708dcd9484a714);
var marker_4c4231e661aa4b84a9a7c38826a5f47f = L.marker(
[44.4299011,-110.6709976],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_d8f767f5c39e4017b4340cf00941471d = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_4c4231e661aa4b84a9a7c38826a5f47f.setIcon(icon_d8f767f5c39e4017b4340cf00941471d);
var popup_f44739fa46f043e2b119c838a1e8216a = L.popup({maxWidth: '300'});
var html_65d432c4d2eb45c8b44c91e9e1d06a63 = $('<div id="html_65d432c4d2eb45c8b44c91e9e1d06a63" style="width: 100.0%; height: 100.0%;">Yellowstone</div>')[0];
popup_f44739fa46f043e2b119c838a1e8216a.setContent(html_65d432c4d2eb45c8b44c91e9e1d06a63);
marker_4c4231e661aa4b84a9a7c38826a5f47f.bindPopup(popup_f44739fa46f043e2b119c838a1e8216a);
var marker_1b8dd5eb264641d3953e812cca4e96b4 = L.marker(
[43.0998993,-118.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_692428f1d99c4cb185df4c0fc8496654 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1b8dd5eb264641d3953e812cca4e96b4.setIcon(icon_692428f1d99c4cb185df4c0fc8496654);
var popup_b786de89499a42b193672a34ba2cca80 = L.popup({maxWidth: '300'});
var html_c27930e76b494ef1a42a301db0fdbf11 = $('<div id="html_c27930e76b494ef1a42a301db0fdbf11" style="width: 100.0%; height: 100.0%;">Diamond Craters</div>')[0];
popup_b786de89499a42b193672a34ba2cca80.setContent(html_c27930e76b494ef1a42a301db0fdbf11);
marker_1b8dd5eb264641d3953e812cca4e96b4.bindPopup(popup_b786de89499a42b193672a34ba2cca80);
var marker_a2e81b6a300b412eb7e04d44d81dd294 = L.marker(
[43.1498985,-117.4710007],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_c25376ed8a6c46e9b204bebe78e5cd4a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a2e81b6a300b412eb7e04d44d81dd294.setIcon(icon_c25376ed8a6c46e9b204bebe78e5cd4a);
var popup_7a2cd0ebd74b40bdb4da90fc7cea2ad8 = L.popup({maxWidth: '300'});
var html_2069bf967e894bc29dd11466067bd651 = $('<div id="html_2069bf967e894bc29dd11466067bd651" style="width: 100.0%; height: 100.0%;">Jordan Craters</div>')[0];
popup_7a2cd0ebd74b40bdb4da90fc7cea2ad8.setContent(html_2069bf967e894bc29dd11466067bd651);
marker_a2e81b6a300b412eb7e04d44d81dd294.bindPopup(popup_7a2cd0ebd74b40bdb4da90fc7cea2ad8);
var marker_13eb914a244044bd8154e6fb867f19a2 = L.marker(
[42.9999008,-117.8010025],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_7a4228a68ebd444a9cdfd71a524349a8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_13eb914a244044bd8154e6fb867f19a2.setIcon(icon_7a4228a68ebd444a9cdfd71a524349a8);
var popup_1199846d7ccb4b5686bd1a53d1c644bf = L.popup({maxWidth: '300'});
var html_18f639082bf949b6b894ad0594c6d95a = $('<div id="html_18f639082bf949b6b894ad0594c6d95a" style="width: 100.0%; height: 100.0%;">Saddle Butte</div>')[0];
popup_1199846d7ccb4b5686bd1a53d1c644bf.setContent(html_18f639082bf949b6b894ad0594c6d95a);
marker_13eb914a244044bd8154e6fb867f19a2.bindPopup(popup_1199846d7ccb4b5686bd1a53d1c644bf);
var marker_bcd98d4971d144c19cd66c48b930d940 = L.marker(
[43.419899,-113.5009995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_e4ac83c7c6934349a7f5911efb721f69 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'white',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bcd98d4971d144c19cd66c48b930d940.setIcon(icon_e4ac83c7c6934349a7f5911efb721f69);
var popup_798d9636bc9b4a5bb88ec43c0e0f6c12 = L.popup({maxWidth: '300'});
var html_fe459d2211c04bcda402858de5ab1cf4 = $('<div id="html_fe459d2211c04bcda402858de5ab1cf4" style="width: 100.0%; height: 100.0%;">Craters of the Moon</div>')[0];
popup_798d9636bc9b4a5bb88ec43c0e0f6c12.setContent(html_fe459d2211c04bcda402858de5ab1cf4);
marker_bcd98d4971d144c19cd66c48b930d940.bindPopup(popup_798d9636bc9b4a5bb88ec43c0e0f6c12);
var marker_16c7ade0c6e54b318ff0f40ad25e24e1 = L.marker(
[43.4999008,-112.45099640000001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_e728d8a11ec7447c9fcc8091b327433d);
var icon_df800af4399b418b802e40f944b50443 = L.AwesomeMarkers.icon({