-
Notifications
You must be signed in to change notification settings - Fork 0
/
Map1.html
2114 lines (1479 loc) · 66.5 KB
/
Map1.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_5f9225d9cdf04a55a1374ba327aada2c {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_5f9225d9cdf04a55a1374ba327aada2c" ></div>
</body>
<script>
var bounds = null;
var map_5f9225d9cdf04a55a1374ba327aada2c = L.map(
'map_5f9225d9cdf04a55a1374ba327aada2c',
{center: [42.685378,-103.319062],
zoom: 6,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_34c2033b6ac644c6ba74f7f24bb55263 = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var circle_marker_9d11242918f249d298329af6d34e7306 = L.circleMarker(
[48.7767982,-121.810997],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_4127da07191645388cb4664db35de591 = L.popup({maxWidth: '300'});
var html_0e0cd39dddad4905aa7f0cdde28b74e3 = $('<div id="html_0e0cd39dddad4905aa7f0cdde28b74e3" style="width: 100.0%; height: 100.0%;">3285.0 m</div>')[0];
popup_4127da07191645388cb4664db35de591.setContent(html_0e0cd39dddad4905aa7f0cdde28b74e3);
circle_marker_9d11242918f249d298329af6d34e7306.bindPopup(popup_4127da07191645388cb4664db35de591);
var circle_marker_73b0aceadd254a07a8c2ea9c3bd2be9d = L.circleMarker(
[48.1118011,-121.1110001],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_5befe563dc5d44e2b8ea9e5a573f7e88 = L.popup({maxWidth: '300'});
var html_15ffd01d9d6a42e89395057419657f94 = $('<div id="html_15ffd01d9d6a42e89395057419657f94" style="width: 100.0%; height: 100.0%;">3213.0 m</div>')[0];
popup_5befe563dc5d44e2b8ea9e5a573f7e88.setContent(html_15ffd01d9d6a42e89395057419657f94);
circle_marker_73b0aceadd254a07a8c2ea9c3bd2be9d.bindPopup(popup_5befe563dc5d44e2b8ea9e5a573f7e88);
var circle_marker_bf88bae527884a50b41a13bb3b18d8b3 = L.circleMarker(
[46.8698006,-121.7509995],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_dbd27ccd6b634f0dbe64a01f8afc6549 = L.popup({maxWidth: '300'});
var html_23c8ed8bc93048e797a2a26950118c12 = $('<div id="html_23c8ed8bc93048e797a2a26950118c12" style="width: 100.0%; height: 100.0%;">4392.0 m</div>')[0];
popup_dbd27ccd6b634f0dbe64a01f8afc6549.setContent(html_23c8ed8bc93048e797a2a26950118c12);
circle_marker_bf88bae527884a50b41a13bb3b18d8b3.bindPopup(popup_dbd27ccd6b634f0dbe64a01f8afc6549);
var circle_marker_a5be6837a38b4d7cbd616d41eee365f5 = L.circleMarker(
[46.1997986,-122.1809998],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_b5007568ecc94d2db57b021a9cf233af = L.popup({maxWidth: '300'});
var html_969246d4d31142baa408b742f3871dbc = $('<div id="html_969246d4d31142baa408b742f3871dbc" style="width: 100.0%; height: 100.0%;">2549.0 m</div>')[0];
popup_b5007568ecc94d2db57b021a9cf233af.setContent(html_969246d4d31142baa408b742f3871dbc);
circle_marker_a5be6837a38b4d7cbd616d41eee365f5.bindPopup(popup_b5007568ecc94d2db57b021a9cf233af);
var circle_marker_89e326548362453c887092a0ecca8b57 = L.circleMarker(
[46.20579910000001,-121.4909973],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_fa122c04ff864a009183a689017cf01e = L.popup({maxWidth: '300'});
var html_fd12ccd85e9247d99814aa31a949df56 = $('<div id="html_fd12ccd85e9247d99814aa31a949df56" style="width: 100.0%; height: 100.0%;">3742.0 m</div>')[0];
popup_fa122c04ff864a009183a689017cf01e.setContent(html_fd12ccd85e9247d99814aa31a949df56);
circle_marker_89e326548362453c887092a0ecca8b57.bindPopup(popup_fa122c04ff864a009183a689017cf01e);
var circle_marker_5bef58731b7c43aabcaebf2f213a2a1f = L.circleMarker(
[45.8797989,-122.0810013],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_060fb8f8ba3a40bf80b43b114dc0a682 = L.popup({maxWidth: '300'});
var html_a47ee26c65c34575b5ddc850dfa78829 = $('<div id="html_a47ee26c65c34575b5ddc850dfa78829" style="width: 100.0%; height: 100.0%;">1329.0 m</div>')[0];
popup_060fb8f8ba3a40bf80b43b114dc0a682.setContent(html_a47ee26c65c34575b5ddc850dfa78829);
circle_marker_5bef58731b7c43aabcaebf2f213a2a1f.bindPopup(popup_060fb8f8ba3a40bf80b43b114dc0a682);
var circle_marker_0c3b1f9b81834813bc4cd758ca916186 = L.circleMarker(
[45.929798100000006,-121.8209991],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_ce51dcafcd8e44c4b55785c3447b7e14 = L.popup({maxWidth: '300'});
var html_e44cbd3183ef4e119fa880ec3122d8bf = $('<div id="html_e44cbd3183ef4e119fa880ec3122d8bf" style="width: 100.0%; height: 100.0%;">1806.0 m</div>')[0];
popup_ce51dcafcd8e44c4b55785c3447b7e14.setContent(html_e44cbd3183ef4e119fa880ec3122d8bf);
circle_marker_0c3b1f9b81834813bc4cd758ca916186.bindPopup(popup_ce51dcafcd8e44c4b55785c3447b7e14);
var circle_marker_8e7e989e010a49c5b369b608b8c9ae5f = L.circleMarker(
[45.3737984,-121.6910019],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_3d8f42579d0746d69246798dbbc28b13 = L.popup({maxWidth: '300'});
var html_1bd725ff52944961ba621cf3b1974e3d = $('<div id="html_1bd725ff52944961ba621cf3b1974e3d" style="width: 100.0%; height: 100.0%;">3426.0 m</div>')[0];
popup_3d8f42579d0746d69246798dbbc28b13.setContent(html_1bd725ff52944961ba621cf3b1974e3d);
circle_marker_8e7e989e010a49c5b369b608b8c9ae5f.bindPopup(popup_3d8f42579d0746d69246798dbbc28b13);
var circle_marker_34abffa4f7d446d7b607dfaca895da3f = L.circleMarker(
[44.691799200000005,-121.8010025],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_541295d5a1e3442f9afc860deed349cc = L.popup({maxWidth: '300'});
var html_591aae1ab67c46c0bb3a175baa157526 = $('<div id="html_591aae1ab67c46c0bb3a175baa157526" style="width: 100.0%; height: 100.0%;">3199.0 m</div>')[0];
popup_541295d5a1e3442f9afc860deed349cc.setContent(html_591aae1ab67c46c0bb3a175baa157526);
circle_marker_34abffa4f7d446d7b607dfaca895da3f.bindPopup(popup_541295d5a1e3442f9afc860deed349cc);
var circle_marker_ff3ad7fcf53c4a419a8301cfc6d15d39 = L.circleMarker(
[44.4197998,-121.7710037],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_22bff3b986ca451b95aeecc3d0a91478 = L.popup({maxWidth: '300'});
var html_5858f9b8663b4df2adacdfbcec609393 = $('<div id="html_5858f9b8663b4df2adacdfbcec609393" style="width: 100.0%; height: 100.0%;">1230.0 m</div>')[0];
popup_22bff3b986ca451b95aeecc3d0a91478.setContent(html_5858f9b8663b4df2adacdfbcec609393);
circle_marker_ff3ad7fcf53c4a419a8301cfc6d15d39.bindPopup(popup_22bff3b986ca451b95aeecc3d0a91478);
var circle_marker_a8dc64444d09468798a76c7e8bc0d80e = L.circleMarker(
[44.3797989,-121.9309998],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_b7940ece9fdd4421a99b71ac8cc7f5c4 = L.popup({maxWidth: '300'});
var html_4d836b60382f47acbdca84a23df5510c = $('<div id="html_4d836b60382f47acbdca84a23df5510c" style="width: 100.0%; height: 100.0%;">1664.0 m</div>')[0];
popup_b7940ece9fdd4421a99b71ac8cc7f5c4.setContent(html_4d836b60382f47acbdca84a23df5510c);
circle_marker_a8dc64444d09468798a76c7e8bc0d80e.bindPopup(popup_b7940ece9fdd4421a99b71ac8cc7f5c4);
var circle_marker_f402cdfba75c40728f0320b60e0fbeda = L.circleMarker(
[44.331798600000006,-121.8310013],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_b03a1ae643ee419d9e31d96bd9cf6136 = L.popup({maxWidth: '300'});
var html_d60916cfd55a468ba4d5700102169531 = $('<div id="html_d60916cfd55a468ba4d5700102169531" style="width: 100.0%; height: 100.0%;">2376.0 m</div>')[0];
popup_b03a1ae643ee419d9e31d96bd9cf6136.setContent(html_d60916cfd55a468ba4d5700102169531);
circle_marker_f402cdfba75c40728f0320b60e0fbeda.bindPopup(popup_b03a1ae643ee419d9e31d96bd9cf6136);
var circle_marker_f8ec56fe67994a049cab114d91ee0499 = L.circleMarker(
[44.2848015,-121.8410034],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_1635a7884247425d86dfb8c8ecc4e442 = L.popup({maxWidth: '300'});
var html_e440c6d6cce14637861b5b8ed6fb0206 = $('<div id="html_e440c6d6cce14637861b5b8ed6fb0206" style="width: 100.0%; height: 100.0%;">2095.0 m</div>')[0];
popup_1635a7884247425d86dfb8c8ecc4e442.setContent(html_e440c6d6cce14637861b5b8ed6fb0206);
circle_marker_f8ec56fe67994a049cab114d91ee0499.bindPopup(popup_1635a7884247425d86dfb8c8ecc4e442);
var circle_marker_b0e1c8352a8d48b7996fd6cb109395e8 = L.circleMarker(
[44.1697998,-121.7710037],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_abdc4dbcad1a4b1ea36f0e8d5764614b = L.popup({maxWidth: '300'});
var html_b42e6ca376a54a31b977b56d41b72f6a = $('<div id="html_b42e6ca376a54a31b977b56d41b72f6a" style="width: 100.0%; height: 100.0%;">3074.0 m</div>')[0];
popup_abdc4dbcad1a4b1ea36f0e8d5764614b.setContent(html_b42e6ca376a54a31b977b56d41b72f6a);
circle_marker_b0e1c8352a8d48b7996fd6cb109395e8.bindPopup(popup_abdc4dbcad1a4b1ea36f0e8d5764614b);
var circle_marker_668eaf2b46994dcfbca5133f634b1534 = L.circleMarker(
[44.099800099999996,-121.7710037],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_a754fed5960b44f2bfb1b121974354b3 = L.popup({maxWidth: '300'});
var html_ac516be0e15f42babbe2bf0e017e151f = $('<div id="html_ac516be0e15f42babbe2bf0e017e151f" style="width: 100.0%; height: 100.0%;">3157.0 m</div>')[0];
popup_a754fed5960b44f2bfb1b121974354b3.setContent(html_ac516be0e15f42babbe2bf0e017e151f);
circle_marker_668eaf2b46994dcfbca5133f634b1534.bindPopup(popup_a754fed5960b44f2bfb1b121974354b3);
var circle_marker_67d128c42a1340e89a7491d73352dfe4 = L.circleMarker(
[43.978801700000005,-121.6809998],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_10bde7fb731a4c48a3ff784ea4e6a247 = L.popup({maxWidth: '300'});
var html_fddc1f943573468cbcd6078ef27466df = $('<div id="html_fddc1f943573468cbcd6078ef27466df" style="width: 100.0%; height: 100.0%;">2763.0 m</div>')[0];
popup_10bde7fb731a4c48a3ff784ea4e6a247.setContent(html_fddc1f943573468cbcd6078ef27466df);
circle_marker_67d128c42a1340e89a7491d73352dfe4.bindPopup(popup_10bde7fb731a4c48a3ff784ea4e6a247);
var circle_marker_6acdf15d19714ec6bb6b0832a2aa2a95 = L.circleMarker(
[43.7218018,-121.2210007],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_1116103502534feb957479aeb9cc7023 = L.popup({maxWidth: '300'});
var html_2bc2d3d346be4b40b67554ce771d2996 = $('<div id="html_2bc2d3d346be4b40b67554ce771d2996" style="width: 100.0%; height: 100.0%;">2434.0 m</div>')[0];
popup_1116103502534feb957479aeb9cc7023.setContent(html_2bc2d3d346be4b40b67554ce771d2996);
circle_marker_6acdf15d19714ec6bb6b0832a2aa2a95.bindPopup(popup_1116103502534feb957479aeb9cc7023);
var circle_marker_d1a22c64e70c4af897a14a516afb88f0 = L.circleMarker(
[43.569801299999995,-121.8209991],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_3afd45ab1afd456496a5608fe160f716 = L.popup({maxWidth: '300'});
var html_49d59e416434407aa953712bc57490ca = $('<div id="html_49d59e416434407aa953712bc57490ca" style="width: 100.0%; height: 100.0%;">2163.0 m</div>')[0];
popup_3afd45ab1afd456496a5608fe160f716.setContent(html_49d59e416434407aa953712bc57490ca);
circle_marker_d1a22c64e70c4af897a14a516afb88f0.bindPopup(popup_3afd45ab1afd456496a5608fe160f716);
var circle_marker_ee3c1d3fb660428dbeaf7d9d61aca3ea = L.circleMarker(
[43.5119019,-120.8610001],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_f6d1f2d787724fa0bb00990b2692c9b9 = L.popup({maxWidth: '300'});
var html_1816178fc5944fd8a93c3d83785713cb = $('<div id="html_1816178fc5944fd8a93c3d83785713cb" style="width: 100.0%; height: 100.0%;">1698.0 m</div>')[0];
popup_f6d1f2d787724fa0bb00990b2692c9b9.setContent(html_1816178fc5944fd8a93c3d83785713cb);
circle_marker_ee3c1d3fb660428dbeaf7d9d61aca3ea.bindPopup(popup_f6d1f2d787724fa0bb00990b2692c9b9);
var circle_marker_dd9a3705fc3d4e12b423b2c98e6750cb = L.circleMarker(
[43.240798999999996,-122.10099790000001],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_53db9041df1d49b0b6a484e267900f37 = L.popup({maxWidth: '300'});
var html_ea71a22b0a7b4393a02d8e70db00de4a = $('<div id="html_ea71a22b0a7b4393a02d8e70db00de4a" style="width: 100.0%; height: 100.0%;">1956.0 m</div>')[0];
popup_53db9041df1d49b0b6a484e267900f37.setContent(html_ea71a22b0a7b4393a02d8e70db00de4a);
circle_marker_dd9a3705fc3d4e12b423b2c98e6750cb.bindPopup(popup_53db9041df1d49b0b6a484e267900f37);
var circle_marker_8923d25cdd4148cb8284ebb46a0beb2c = L.circleMarker(
[43.471900899999994,-120.7509995],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_f7119f8681e341f6ba2e78c1ff7ad4ce = L.popup({maxWidth: '300'});
var html_b07609f056934b70b3d64a56b5ee7f5b = $('<div id="html_b07609f056934b70b3d64a56b5ee7f5b" style="width: 100.0%; height: 100.0%;">1711.0 m</div>')[0];
popup_f7119f8681e341f6ba2e78c1ff7ad4ce.setContent(html_b07609f056934b70b3d64a56b5ee7f5b);
circle_marker_8923d25cdd4148cb8284ebb46a0beb2c.bindPopup(popup_f7119f8681e341f6ba2e78c1ff7ad4ce);
var circle_marker_b44832c76b5045dfbf7be971226b4733 = L.circleMarker(
[43.3609009,-120.6610031],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_e0717ed60160454b846c1d3290be36e2 = L.popup({maxWidth: '300'});
var html_a1c3ec2e8f1e4f3aab9bced694cc308d = $('<div id="html_a1c3ec2e8f1e4f3aab9bced694cc308d" style="width: 100.0%; height: 100.0%;">1501.0 m</div>')[0];
popup_e0717ed60160454b846c1d3290be36e2.setContent(html_a1c3ec2e8f1e4f3aab9bced694cc308d);
circle_marker_b44832c76b5045dfbf7be971226b4733.bindPopup(popup_e0717ed60160454b846c1d3290be36e2);
var circle_marker_f7c58f23afae4106ae395cb1666e2986 = L.circleMarker(
[42.9299011,-122.1210022],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_53a50453ed874420b1589233f767a485 = L.popup({maxWidth: '300'});
var html_7da31b97f1454fd2a96f65b90ad64055 = $('<div id="html_7da31b97f1454fd2a96f65b90ad64055" style="width: 100.0%; height: 100.0%;">2487.0 m</div>')[0];
popup_53a50453ed874420b1589233f767a485.setContent(html_7da31b97f1454fd2a96f65b90ad64055);
circle_marker_f7c58f23afae4106ae395cb1666e2986.bindPopup(popup_53a50453ed874420b1589233f767a485);
var circle_marker_6634034439044083a00bdd0254abb156 = L.circleMarker(
[44.4299011,-110.6709976],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_bad32864f8564f789ae77fb2b8c60d62 = L.popup({maxWidth: '300'});
var html_ff507ee1e736400f826a567a580c6081 = $('<div id="html_ff507ee1e736400f826a567a580c6081" style="width: 100.0%; height: 100.0%;">2805.0 m</div>')[0];
popup_bad32864f8564f789ae77fb2b8c60d62.setContent(html_ff507ee1e736400f826a567a580c6081);
circle_marker_6634034439044083a00bdd0254abb156.bindPopup(popup_bad32864f8564f789ae77fb2b8c60d62);
var circle_marker_e98a854a6c7544e0ae05a1b75e7bbdca = L.circleMarker(
[43.0998993,-118.7509995],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_4e0262f8488643918ea5e554a667bd6e = L.popup({maxWidth: '300'});
var html_1f597c8667774f2db6c47329e5d96882 = $('<div id="html_1f597c8667774f2db6c47329e5d96882" style="width: 100.0%; height: 100.0%;">1435.0 m</div>')[0];
popup_4e0262f8488643918ea5e554a667bd6e.setContent(html_1f597c8667774f2db6c47329e5d96882);
circle_marker_e98a854a6c7544e0ae05a1b75e7bbdca.bindPopup(popup_4e0262f8488643918ea5e554a667bd6e);
var circle_marker_4d4c558ec18143c9bc8b2bcf6657f0e3 = L.circleMarker(
[43.1498985,-117.4710007],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_1bc6288665344b7a86a560978b562423 = L.popup({maxWidth: '300'});
var html_4d5039ff9ce44658924ec42247305eb6 = $('<div id="html_4d5039ff9ce44658924ec42247305eb6" style="width: 100.0%; height: 100.0%;">1473.0 m</div>')[0];
popup_1bc6288665344b7a86a560978b562423.setContent(html_4d5039ff9ce44658924ec42247305eb6);
circle_marker_4d4c558ec18143c9bc8b2bcf6657f0e3.bindPopup(popup_1bc6288665344b7a86a560978b562423);
var circle_marker_8a322e700aa04245893a6db32a36172f = L.circleMarker(
[42.9999008,-117.8010025],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_cde9ec6bc98e4523aefd760ba8dd0cbf = L.popup({maxWidth: '300'});
var html_b471c20fe8094f32adfe8cdeabdd585c = $('<div id="html_b471c20fe8094f32adfe8cdeabdd585c" style="width: 100.0%; height: 100.0%;">1700.0 m</div>')[0];
popup_cde9ec6bc98e4523aefd760ba8dd0cbf.setContent(html_b471c20fe8094f32adfe8cdeabdd585c);
circle_marker_8a322e700aa04245893a6db32a36172f.bindPopup(popup_cde9ec6bc98e4523aefd760ba8dd0cbf);
var circle_marker_c8798301c4fb45d99b3628976b3401cd = L.circleMarker(
[43.419899,-113.5009995],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"opacity": 1.0,
"radius": 6,
"stroke": true,
"weight": 3
}
).addTo(map_5f9225d9cdf04a55a1374ba327aada2c);
var popup_5baf9ee6a7b945e39991cc6b31060257 = L.popup({maxWidth: '300'});
var html_8b5c818e44314bffa088883ee5b19097 = $('<div id="html_8b5c818e44314bffa088883ee5b19097" style="width: 100.0%; height: 100.0%;">2005.0 m</div>')[0];
popup_5baf9ee6a7b945e39991cc6b31060257.setContent(html_8b5c818e44314bffa088883ee5b19097);
circle_marker_c8798301c4fb45d99b3628976b3401cd.bindPopup(popup_5baf9ee6a7b945e39991cc6b31060257);
var circle_marker_d0ef76fea7cb4d8eb8fc8dbdfe772d2a = L.circleMarker(
[43.4999008,-112.45099640000001],
{
"bubblingMouseEvents": true,
"color": "#333333",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.7,
"fillRule": "evenodd",
"lineCap": "round",