-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest7.html
2110 lines (1229 loc) · 79.3 KB
/
test7.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_4f7b20b4059a46209c7343b59df0e832 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_4f7b20b4059a46209c7343b59df0e832" ></div>
</body>
<script>
var bounds = null;
var map_4f7b20b4059a46209c7343b59df0e832 = L.map(
'map_4f7b20b4059a46209c7343b59df0e832',
{center: [41.31256779838711,-118.2669679016129],
zoom: 6,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_10264ac532f1425c98b925edeee69e1a = 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_4f7b20b4059a46209c7343b59df0e832);
var marker_c6e2e7e0acfa48d2814a0bc36e464289 = L.marker(
[48.7767982,-121.810997],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_b959ece93ae440f4953f051b6f659a67 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c6e2e7e0acfa48d2814a0bc36e464289.setIcon(icon_b959ece93ae440f4953f051b6f659a67);
var popup_85ff2f06165f43b6be1db11eab58010a = L.popup({maxWidth: '300'});
var html_4290b43a069742b7b2cbf2d2eafb9cb0 = $('<div id="html_4290b43a069742b7b2cbf2d2eafb9cb0" style="width: 100.0%; height: 100.0%;">Baker</div>')[0];
popup_85ff2f06165f43b6be1db11eab58010a.setContent(html_4290b43a069742b7b2cbf2d2eafb9cb0);
marker_c6e2e7e0acfa48d2814a0bc36e464289.bindPopup(popup_85ff2f06165f43b6be1db11eab58010a);
var marker_687facb38ecd4b1994c2a885b3d0167f = L.marker(
[48.1118011,-121.1110001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_f58ac2c7137c4a088c36670c7939d167 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_687facb38ecd4b1994c2a885b3d0167f.setIcon(icon_f58ac2c7137c4a088c36670c7939d167);
var popup_2e83eab0586c4306b9f4834b35d776a0 = L.popup({maxWidth: '300'});
var html_274400e992d0449ab534f646cc03c01c = $('<div id="html_274400e992d0449ab534f646cc03c01c" style="width: 100.0%; height: 100.0%;">Glacier Peak</div>')[0];
popup_2e83eab0586c4306b9f4834b35d776a0.setContent(html_274400e992d0449ab534f646cc03c01c);
marker_687facb38ecd4b1994c2a885b3d0167f.bindPopup(popup_2e83eab0586c4306b9f4834b35d776a0);
var marker_0947c93b7eb84189bd797cec4a639b5e = L.marker(
[46.8698006,-121.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_9198e4d7cdab4811a93d5669f838cefa = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0947c93b7eb84189bd797cec4a639b5e.setIcon(icon_9198e4d7cdab4811a93d5669f838cefa);
var popup_c52c1a203ae7402197b7794ca7bd27ff = L.popup({maxWidth: '300'});
var html_2aedbd3137d54d4598ad282fdb435948 = $('<div id="html_2aedbd3137d54d4598ad282fdb435948" style="width: 100.0%; height: 100.0%;">Rainier</div>')[0];
popup_c52c1a203ae7402197b7794ca7bd27ff.setContent(html_2aedbd3137d54d4598ad282fdb435948);
marker_0947c93b7eb84189bd797cec4a639b5e.bindPopup(popup_c52c1a203ae7402197b7794ca7bd27ff);
var marker_b5b6d3530d0e48009651d3ecb4c346cb = L.marker(
[46.1997986,-122.1809998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_12dd64d52bd7438d81142d68e3f6f70d = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b5b6d3530d0e48009651d3ecb4c346cb.setIcon(icon_12dd64d52bd7438d81142d68e3f6f70d);
var popup_d1353d2294914f499e31cf60caa3dccc = L.popup({maxWidth: '300'});
var html_dc643fe3ac8d4bce81a87fdc6ea88bb9 = $('<div id="html_dc643fe3ac8d4bce81a87fdc6ea88bb9" style="width: 100.0%; height: 100.0%;">St. Helens</div>')[0];
popup_d1353d2294914f499e31cf60caa3dccc.setContent(html_dc643fe3ac8d4bce81a87fdc6ea88bb9);
marker_b5b6d3530d0e48009651d3ecb4c346cb.bindPopup(popup_d1353d2294914f499e31cf60caa3dccc);
var marker_d9eec350eb17437684b207d956bfb480 = L.marker(
[46.20579910000001,-121.4909973],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_6c7fd6197a0749e0b7a25f0e46200fa4 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d9eec350eb17437684b207d956bfb480.setIcon(icon_6c7fd6197a0749e0b7a25f0e46200fa4);
var popup_14e5e2c7e1e340788dfcd470d34d9c8b = L.popup({maxWidth: '300'});
var html_4c84597563dd4fba8d2e5730b6151531 = $('<div id="html_4c84597563dd4fba8d2e5730b6151531" style="width: 100.0%; height: 100.0%;">Adams</div>')[0];
popup_14e5e2c7e1e340788dfcd470d34d9c8b.setContent(html_4c84597563dd4fba8d2e5730b6151531);
marker_d9eec350eb17437684b207d956bfb480.bindPopup(popup_14e5e2c7e1e340788dfcd470d34d9c8b);
var marker_c66f21fcd3214d25b459c597c7bc7fbd = L.marker(
[45.8797989,-122.0810013],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_f1c6bb990b854b6b8b6e428b2601d67e = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c66f21fcd3214d25b459c597c7bc7fbd.setIcon(icon_f1c6bb990b854b6b8b6e428b2601d67e);
var popup_756ea1b452a64cd48d0a4e6913a1a4cf = L.popup({maxWidth: '300'});
var html_b060896f2c8e4ac3ae822d7fea24a93d = $('<div id="html_b060896f2c8e4ac3ae822d7fea24a93d" style="width: 100.0%; height: 100.0%;">West Crater</div>')[0];
popup_756ea1b452a64cd48d0a4e6913a1a4cf.setContent(html_b060896f2c8e4ac3ae822d7fea24a93d);
marker_c66f21fcd3214d25b459c597c7bc7fbd.bindPopup(popup_756ea1b452a64cd48d0a4e6913a1a4cf);
var marker_f0dccb593dd54a85a77c558d7fd7b3f6 = L.marker(
[45.929798100000006,-121.8209991],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_bf24c17715254b65b22225b3763ce5a0 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f0dccb593dd54a85a77c558d7fd7b3f6.setIcon(icon_bf24c17715254b65b22225b3763ce5a0);
var popup_04c76b3dda4f46f38cef5dcff94a8228 = L.popup({maxWidth: '300'});
var html_2dce2e6e8f2b41ed8455d17aaf2b20a0 = $('<div id="html_2dce2e6e8f2b41ed8455d17aaf2b20a0" style="width: 100.0%; height: 100.0%;">Indian Heaven</div>')[0];
popup_04c76b3dda4f46f38cef5dcff94a8228.setContent(html_2dce2e6e8f2b41ed8455d17aaf2b20a0);
marker_f0dccb593dd54a85a77c558d7fd7b3f6.bindPopup(popup_04c76b3dda4f46f38cef5dcff94a8228);
var marker_f8365905c6b348539252be0ce131c311 = L.marker(
[45.3737984,-121.6910019],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_60d316a1d76e489e874802b40ff4b5b5 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f8365905c6b348539252be0ce131c311.setIcon(icon_60d316a1d76e489e874802b40ff4b5b5);
var popup_a3e3b140225840008adf01fe8f6c92f8 = L.popup({maxWidth: '300'});
var html_6fba745cb0af4403841b0d3a04377a69 = $('<div id="html_6fba745cb0af4403841b0d3a04377a69" style="width: 100.0%; height: 100.0%;">Hood</div>')[0];
popup_a3e3b140225840008adf01fe8f6c92f8.setContent(html_6fba745cb0af4403841b0d3a04377a69);
marker_f8365905c6b348539252be0ce131c311.bindPopup(popup_a3e3b140225840008adf01fe8f6c92f8);
var marker_2ab2c6db6bac431b8f2213934055cd23 = L.marker(
[44.691799200000005,-121.8010025],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_78c3edce1e4549b8acb4221d11c81cc9 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2ab2c6db6bac431b8f2213934055cd23.setIcon(icon_78c3edce1e4549b8acb4221d11c81cc9);
var popup_c89745f2c11242b0b8cb35beeddbe50c = L.popup({maxWidth: '300'});
var html_c57959a56716417f820430ef6f64ca5d = $('<div id="html_c57959a56716417f820430ef6f64ca5d" style="width: 100.0%; height: 100.0%;">Jefferson</div>')[0];
popup_c89745f2c11242b0b8cb35beeddbe50c.setContent(html_c57959a56716417f820430ef6f64ca5d);
marker_2ab2c6db6bac431b8f2213934055cd23.bindPopup(popup_c89745f2c11242b0b8cb35beeddbe50c);
var marker_ffc6e02c2ad14001afbe1bc63262abc7 = L.marker(
[44.4197998,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_6dda4bfbf8f1464596b2df16c7f42ce1 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_ffc6e02c2ad14001afbe1bc63262abc7.setIcon(icon_6dda4bfbf8f1464596b2df16c7f42ce1);
var popup_053fa3d9775e44f1bf5412e6e256d22c = L.popup({maxWidth: '300'});
var html_1254aafc0c8e4f8cbe8e3530f7a8e985 = $('<div id="html_1254aafc0c8e4f8cbe8e3530f7a8e985" style="width: 100.0%; height: 100.0%;">Blue Lake Crater</div>')[0];
popup_053fa3d9775e44f1bf5412e6e256d22c.setContent(html_1254aafc0c8e4f8cbe8e3530f7a8e985);
marker_ffc6e02c2ad14001afbe1bc63262abc7.bindPopup(popup_053fa3d9775e44f1bf5412e6e256d22c);
var marker_6774fc3fc9444b97b089fe4db86687d1 = L.marker(
[44.3797989,-121.9309998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_5f9e04e64b2d414f97c3fac1fdce4bb9 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6774fc3fc9444b97b089fe4db86687d1.setIcon(icon_5f9e04e64b2d414f97c3fac1fdce4bb9);
var popup_6beb67b334314f8fa1f2ecdccdff27f2 = L.popup({maxWidth: '300'});
var html_707fd27580944edd99704e4d1f1f9431 = $('<div id="html_707fd27580944edd99704e4d1f1f9431" style="width: 100.0%; height: 100.0%;">Sand Mountain Field</div>')[0];
popup_6beb67b334314f8fa1f2ecdccdff27f2.setContent(html_707fd27580944edd99704e4d1f1f9431);
marker_6774fc3fc9444b97b089fe4db86687d1.bindPopup(popup_6beb67b334314f8fa1f2ecdccdff27f2);
var marker_22f614cb1fd24a289adb2e6d8dc51f40 = L.marker(
[44.331798600000006,-121.8310013],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_6f5fec55a59e453ea39fb354de185f72 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_22f614cb1fd24a289adb2e6d8dc51f40.setIcon(icon_6f5fec55a59e453ea39fb354de185f72);
var popup_1d70f0625cbb44be872fbb5bcdf4df33 = L.popup({maxWidth: '300'});
var html_ceace261d6964f3a8c60e3a788c2d49a = $('<div id="html_ceace261d6964f3a8c60e3a788c2d49a" style="width: 100.0%; height: 100.0%;">Washington</div>')[0];
popup_1d70f0625cbb44be872fbb5bcdf4df33.setContent(html_ceace261d6964f3a8c60e3a788c2d49a);
marker_22f614cb1fd24a289adb2e6d8dc51f40.bindPopup(popup_1d70f0625cbb44be872fbb5bcdf4df33);
var marker_c4ae9420e1b5464ebf5925c8052d5213 = L.marker(
[44.2848015,-121.8410034],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_dd17fd586a6f4df1bdb1aee811e7f9b2 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c4ae9420e1b5464ebf5925c8052d5213.setIcon(icon_dd17fd586a6f4df1bdb1aee811e7f9b2);
var popup_e1702232eae144b7b4943c1ad8a615b7 = L.popup({maxWidth: '300'});
var html_152e149105f14df4ae6290b820cf99a0 = $('<div id="html_152e149105f14df4ae6290b820cf99a0" style="width: 100.0%; height: 100.0%;">Belknap</div>')[0];
popup_e1702232eae144b7b4943c1ad8a615b7.setContent(html_152e149105f14df4ae6290b820cf99a0);
marker_c4ae9420e1b5464ebf5925c8052d5213.bindPopup(popup_e1702232eae144b7b4943c1ad8a615b7);
var marker_02858c941ee54da797f61124812ae325 = L.marker(
[44.1697998,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_3866173437b44ab6856d602166c241d7 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_02858c941ee54da797f61124812ae325.setIcon(icon_3866173437b44ab6856d602166c241d7);
var popup_44c8718730e84adc852fbdbf16c635cf = L.popup({maxWidth: '300'});
var html_7aef85eadb884d1eaddc12d21e18d9c5 = $('<div id="html_7aef85eadb884d1eaddc12d21e18d9c5" style="width: 100.0%; height: 100.0%;">North Sister Field</div>')[0];
popup_44c8718730e84adc852fbdbf16c635cf.setContent(html_7aef85eadb884d1eaddc12d21e18d9c5);
marker_02858c941ee54da797f61124812ae325.bindPopup(popup_44c8718730e84adc852fbdbf16c635cf);
var marker_faa06b43d38c42cda30f7aa31af92b4c = L.marker(
[44.099800099999996,-121.7710037],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_a44d14d46a774ad291af60bdc4833adb = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_faa06b43d38c42cda30f7aa31af92b4c.setIcon(icon_a44d14d46a774ad291af60bdc4833adb);
var popup_1c171d5214f64fc3bfd4027becb84ae3 = L.popup({maxWidth: '300'});
var html_7bf69e61c01047d9acc679c4a1856cb8 = $('<div id="html_7bf69e61c01047d9acc679c4a1856cb8" style="width: 100.0%; height: 100.0%;">South Sister</div>')[0];
popup_1c171d5214f64fc3bfd4027becb84ae3.setContent(html_7bf69e61c01047d9acc679c4a1856cb8);
marker_faa06b43d38c42cda30f7aa31af92b4c.bindPopup(popup_1c171d5214f64fc3bfd4027becb84ae3);
var marker_a0f50299f7d94dadba57ecb620c9ff5e = L.marker(
[43.978801700000005,-121.6809998],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_9663a91ad213496b89db91ffdc9134ac = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a0f50299f7d94dadba57ecb620c9ff5e.setIcon(icon_9663a91ad213496b89db91ffdc9134ac);
var popup_6e244d8ac4444bedba775d9a0c3502e2 = L.popup({maxWidth: '300'});
var html_0e81457d7a8a446fa8b1cf2c3e05c8ec = $('<div id="html_0e81457d7a8a446fa8b1cf2c3e05c8ec" style="width: 100.0%; height: 100.0%;">Bachelor</div>')[0];
popup_6e244d8ac4444bedba775d9a0c3502e2.setContent(html_0e81457d7a8a446fa8b1cf2c3e05c8ec);
marker_a0f50299f7d94dadba57ecb620c9ff5e.bindPopup(popup_6e244d8ac4444bedba775d9a0c3502e2);
var marker_10f629a680d34a2caa22936911286ead = L.marker(
[43.7218018,-121.2210007],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_cba52b6a3080443a984ff82e924813c8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_10f629a680d34a2caa22936911286ead.setIcon(icon_cba52b6a3080443a984ff82e924813c8);
var popup_9f043910c246417eb692c3fae656c488 = L.popup({maxWidth: '300'});
var html_e28fd4a37c9942509fcce26902e4870c = $('<div id="html_e28fd4a37c9942509fcce26902e4870c" style="width: 100.0%; height: 100.0%;">Newberry Volcano</div>')[0];
popup_9f043910c246417eb692c3fae656c488.setContent(html_e28fd4a37c9942509fcce26902e4870c);
marker_10f629a680d34a2caa22936911286ead.bindPopup(popup_9f043910c246417eb692c3fae656c488);
var marker_2ee1c91688f54e2d982215dbd89e6ce5 = L.marker(
[43.569801299999995,-121.8209991],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_eb7e5e1b9c7645b59c743cade0fa7b6c = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2ee1c91688f54e2d982215dbd89e6ce5.setIcon(icon_eb7e5e1b9c7645b59c743cade0fa7b6c);
var popup_8cfb3557198046f68fc981e288acb42c = L.popup({maxWidth: '300'});
var html_30d8feaa363e4cc2a21cc1357aeaed62 = $('<div id="html_30d8feaa363e4cc2a21cc1357aeaed62" style="width: 100.0%; height: 100.0%;">Davis Lake</div>')[0];
popup_8cfb3557198046f68fc981e288acb42c.setContent(html_30d8feaa363e4cc2a21cc1357aeaed62);
marker_2ee1c91688f54e2d982215dbd89e6ce5.bindPopup(popup_8cfb3557198046f68fc981e288acb42c);
var marker_8bc03c2cae4146dab4bcecedefecb5c9 = L.marker(
[43.5119019,-120.8610001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_63c1c81e3b4c4da38ce185dac22d989a = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8bc03c2cae4146dab4bcecedefecb5c9.setIcon(icon_63c1c81e3b4c4da38ce185dac22d989a);
var popup_9c3316f12123432a87f6e20b2cd9b398 = L.popup({maxWidth: '300'});
var html_ec3ca27f2434445a9e5d5f1daed79ea6 = $('<div id="html_ec3ca27f2434445a9e5d5f1daed79ea6" style="width: 100.0%; height: 100.0%;">Devils Garden</div>')[0];
popup_9c3316f12123432a87f6e20b2cd9b398.setContent(html_ec3ca27f2434445a9e5d5f1daed79ea6);
marker_8bc03c2cae4146dab4bcecedefecb5c9.bindPopup(popup_9c3316f12123432a87f6e20b2cd9b398);
var marker_84407d8358de4f2cbedf10572a8efb59 = L.marker(
[43.240798999999996,-122.10099790000001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_be416a88913a4b078bcbd737544a6ab8 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_84407d8358de4f2cbedf10572a8efb59.setIcon(icon_be416a88913a4b078bcbd737544a6ab8);
var popup_8116d5f77055403a8d6bb630223d0cff = L.popup({maxWidth: '300'});
var html_e49804129d154cdea361adfd9a9b4bb0 = $('<div id="html_e49804129d154cdea361adfd9a9b4bb0" style="width: 100.0%; height: 100.0%;">Cinnamon Butte</div>')[0];
popup_8116d5f77055403a8d6bb630223d0cff.setContent(html_e49804129d154cdea361adfd9a9b4bb0);
marker_84407d8358de4f2cbedf10572a8efb59.bindPopup(popup_8116d5f77055403a8d6bb630223d0cff);
var marker_5c617f0b68ac4d59bb67d76dfa17054e = L.marker(
[43.471900899999994,-120.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_8176f629e6ad491fbfd4eeb6a4b122ab = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5c617f0b68ac4d59bb67d76dfa17054e.setIcon(icon_8176f629e6ad491fbfd4eeb6a4b122ab);
var popup_bc91145c2295490abbb3740327e4d00f = L.popup({maxWidth: '300'});
var html_65e8a2fa4a4240159b0b2183d2b86374 = $('<div id="html_65e8a2fa4a4240159b0b2183d2b86374" style="width: 100.0%; height: 100.0%;">Squaw Ridge Lava Field</div>')[0];
popup_bc91145c2295490abbb3740327e4d00f.setContent(html_65e8a2fa4a4240159b0b2183d2b86374);
marker_5c617f0b68ac4d59bb67d76dfa17054e.bindPopup(popup_bc91145c2295490abbb3740327e4d00f);
var marker_8f8412d2d871491da0768a01d2b19ecb = L.marker(
[43.3609009,-120.6610031],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_f9254d4831bd49359c457154fa97c4d9 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8f8412d2d871491da0768a01d2b19ecb.setIcon(icon_f9254d4831bd49359c457154fa97c4d9);
var popup_3363209330d1480386449fda5247b931 = L.popup({maxWidth: '300'});
var html_05d1984356ef4a9f8a1aaf87a1827555 = $('<div id="html_05d1984356ef4a9f8a1aaf87a1827555" style="width: 100.0%; height: 100.0%;">Four Craters Lava Field</div>')[0];
popup_3363209330d1480386449fda5247b931.setContent(html_05d1984356ef4a9f8a1aaf87a1827555);
marker_8f8412d2d871491da0768a01d2b19ecb.bindPopup(popup_3363209330d1480386449fda5247b931);
var marker_f1c3cb8ab8054c51b431d3f99230ac71 = L.marker(
[42.9299011,-122.1210022],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_7dc853e98ec1421885d65875c0db91b0 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_f1c3cb8ab8054c51b431d3f99230ac71.setIcon(icon_7dc853e98ec1421885d65875c0db91b0);
var popup_2bc6fc8800344d528ee78ac5d087b792 = L.popup({maxWidth: '300'});
var html_c8ce9681bcf2459c9376135817077951 = $('<div id="html_c8ce9681bcf2459c9376135817077951" style="width: 100.0%; height: 100.0%;">Crater Lake</div>')[0];
popup_2bc6fc8800344d528ee78ac5d087b792.setContent(html_c8ce9681bcf2459c9376135817077951);
marker_f1c3cb8ab8054c51b431d3f99230ac71.bindPopup(popup_2bc6fc8800344d528ee78ac5d087b792);
var marker_0daa814ec94249b699ebcf1a1f530609 = L.marker(
[44.4299011,-110.6709976],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_7d290d3188874000b79416caa2f2248b = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0daa814ec94249b699ebcf1a1f530609.setIcon(icon_7d290d3188874000b79416caa2f2248b);
var popup_af78e5bf5abb4d1d89d9a7e4e424c191 = L.popup({maxWidth: '300'});
var html_a8932c03627d42e98c485cfa19f9e96e = $('<div id="html_a8932c03627d42e98c485cfa19f9e96e" style="width: 100.0%; height: 100.0%;">Yellowstone</div>')[0];
popup_af78e5bf5abb4d1d89d9a7e4e424c191.setContent(html_a8932c03627d42e98c485cfa19f9e96e);
marker_0daa814ec94249b699ebcf1a1f530609.bindPopup(popup_af78e5bf5abb4d1d89d9a7e4e424c191);
var marker_9eb81086676f42daabb4eea54e6156eb = L.marker(
[43.0998993,-118.7509995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_2c11efaa768b4052a3417edd4d5977f0 = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_9eb81086676f42daabb4eea54e6156eb.setIcon(icon_2c11efaa768b4052a3417edd4d5977f0);
var popup_dd07196e786f4834836175a3e7d42e89 = L.popup({maxWidth: '300'});
var html_119ec8d6b6af460c8e5ababf3c0bc7d0 = $('<div id="html_119ec8d6b6af460c8e5ababf3c0bc7d0" style="width: 100.0%; height: 100.0%;">Diamond Craters</div>')[0];
popup_dd07196e786f4834836175a3e7d42e89.setContent(html_119ec8d6b6af460c8e5ababf3c0bc7d0);
marker_9eb81086676f42daabb4eea54e6156eb.bindPopup(popup_dd07196e786f4834836175a3e7d42e89);
var marker_6c843fe023dd4f789f6b9d1c8bd2dd58 = L.marker(
[43.1498985,-117.4710007],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_d71edd8a4f844ad5bdd972bac4762ded = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6c843fe023dd4f789f6b9d1c8bd2dd58.setIcon(icon_d71edd8a4f844ad5bdd972bac4762ded);
var popup_a35c23ea088e4c178eafc7128c4ec099 = L.popup({maxWidth: '300'});
var html_c5fdbca622324cffacdfd9fa3e09a5e5 = $('<div id="html_c5fdbca622324cffacdfd9fa3e09a5e5" style="width: 100.0%; height: 100.0%;">Jordan Craters</div>')[0];
popup_a35c23ea088e4c178eafc7128c4ec099.setContent(html_c5fdbca622324cffacdfd9fa3e09a5e5);
marker_6c843fe023dd4f789f6b9d1c8bd2dd58.bindPopup(popup_a35c23ea088e4c178eafc7128c4ec099);
var marker_90eb8fe13051472c8a0c8cb0709aacdd = L.marker(
[42.9999008,-117.8010025],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_940ec998350745838df8c5044ccf316d = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'blue',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_90eb8fe13051472c8a0c8cb0709aacdd.setIcon(icon_940ec998350745838df8c5044ccf316d);
var popup_6085a12acfd94669859801c6c3bfe7ec = L.popup({maxWidth: '300'});
var html_3eb719acdef948c095914db2f11946e0 = $('<div id="html_3eb719acdef948c095914db2f11946e0" style="width: 100.0%; height: 100.0%;">Saddle Butte</div>')[0];
popup_6085a12acfd94669859801c6c3bfe7ec.setContent(html_3eb719acdef948c095914db2f11946e0);
marker_90eb8fe13051472c8a0c8cb0709aacdd.bindPopup(popup_6085a12acfd94669859801c6c3bfe7ec);
var marker_b77ea1104ef04bcfae26d1c8b451a5ab = L.marker(
[43.419899,-113.5009995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_1462ab21bc6242209bf952513476afca = L.AwesomeMarkers.icon({
icon: 'cloud',
iconColor: 'yellow',
markerColor: 'orange',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b77ea1104ef04bcfae26d1c8b451a5ab.setIcon(icon_1462ab21bc6242209bf952513476afca);
var popup_df24031f876a41359793def318bb7e1a = L.popup({maxWidth: '300'});
var html_6029efe38dd94eb0880c3ec5ce87ba61 = $('<div id="html_6029efe38dd94eb0880c3ec5ce87ba61" style="width: 100.0%; height: 100.0%;">Craters of the Moon</div>')[0];
popup_df24031f876a41359793def318bb7e1a.setContent(html_6029efe38dd94eb0880c3ec5ce87ba61);
marker_b77ea1104ef04bcfae26d1c8b451a5ab.bindPopup(popup_df24031f876a41359793def318bb7e1a);
var marker_733e1b879c7d461d9c0d665d6e9c7fe5 = L.marker(
[43.4999008,-112.45099640000001],
{
icon: new L.Icon.Default()
}
)
.addTo(map_4f7b20b4059a46209c7343b59df0e832);
var icon_c066c8fc690b4a0681a7e97f658fc609 = L.AwesomeMarkers.icon({