-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRiskmap.html
More file actions
1858 lines (943 loc) Β· 67.1 KB
/
Copy pathRiskmap.html
File metadata and controls
1858 lines (943 loc) Β· 67.1 KB
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 src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/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.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/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.1.0/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://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<style> #map_662ebf44e97a4489b4938cc4b2c735ce {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_662ebf44e97a4489b4938cc4b2c735ce" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_662ebf44e97a4489b4938cc4b2c735ce = L.map('map_662ebf44e97a4489b4938cc4b2c735ce', {
center:[45.523,-122.675],
zoom: 6,
maxBounds: bounds,
layers: [],
crs: L.CRS.EPSG3857
});
var tile_layer_1a006d7dc49648409bd821515af84385 = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
maxZoom: 18,
minZoom: 1,
attribution: 'Map tiles by <a href="http://www.mapbox.com/m">Mapbox</a> Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>.',
detectRetina: false
}
).addTo(map_662ebf44e97a4489b4938cc4b2c735ce);
var feature_group_ce14e31224f94195b1121fc904d20f2d = L.featureGroup(
).addTo(map_662ebf44e97a4489b4938cc4b2c735ce);
var circle_marker_1d37aa1ea7564d86a3839e2bc58c3641 = L.circle(
[48.7767982,-121.810997],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_546979524684421a802d45a7b3b6f601 = L.popup({maxWidth: '300'});
var html_8e96c9f62e264e5bad80d2ee6d3ec337 = $(' <div id="html_8e96c9f62e264e5bad80d2ee6d3ec337" style="width: 100.0%; height: 100.0%;"> 3285.0 m</div> ')[0];
popup_546979524684421a802d45a7b3b6f601.setContent(html_8e96c9f62e264e5bad80d2ee6d3ec337);
circle_marker_1d37aa1ea7564d86a3839e2bc58c3641.bindPopup(popup_546979524684421a802d45a7b3b6f601);
var circle_marker_a383e38da81745c2a8eb605eb39efda7 = L.circle(
[48.1118011,-121.1110001],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_793a9f32f54b4b1b99e637728b939675 = L.popup({maxWidth: '300'});
var html_22683f514a1b47ba9224c3cfa50fdbaf = $(' <div id="html_22683f514a1b47ba9224c3cfa50fdbaf" style="width: 100.0%; height: 100.0%;"> 3213.0 m</div> ')[0];
popup_793a9f32f54b4b1b99e637728b939675.setContent(html_22683f514a1b47ba9224c3cfa50fdbaf);
circle_marker_a383e38da81745c2a8eb605eb39efda7.bindPopup(popup_793a9f32f54b4b1b99e637728b939675);
var circle_marker_85140fa6a3c2449c8e2acd17253693d6 = L.circle(
[46.8698006,-121.7509995],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_6b206ca891ca4d86a8e1b6ccd6acc1f1 = L.popup({maxWidth: '300'});
var html_e2cc66dd3e2041d58ab7ed1a81ab8bec = $(' <div id="html_e2cc66dd3e2041d58ab7ed1a81ab8bec" style="width: 100.0%; height: 100.0%;"> 4392.0 m</div> ')[0];
popup_6b206ca891ca4d86a8e1b6ccd6acc1f1.setContent(html_e2cc66dd3e2041d58ab7ed1a81ab8bec);
circle_marker_85140fa6a3c2449c8e2acd17253693d6.bindPopup(popup_6b206ca891ca4d86a8e1b6ccd6acc1f1);
var circle_marker_ef0fbe00b8e24ffda57acb04b7366d73 = L.circle(
[46.1997986,-122.1809998],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_d12cc83ddb7a40308e8119fd2133f4ed = L.popup({maxWidth: '300'});
var html_e545be2cef2d401e8c6d16b4e37c8bc1 = $(' <div id="html_e545be2cef2d401e8c6d16b4e37c8bc1" style="width: 100.0%; height: 100.0%;"> 2549.0 m</div> ')[0];
popup_d12cc83ddb7a40308e8119fd2133f4ed.setContent(html_e545be2cef2d401e8c6d16b4e37c8bc1);
circle_marker_ef0fbe00b8e24ffda57acb04b7366d73.bindPopup(popup_d12cc83ddb7a40308e8119fd2133f4ed);
var circle_marker_9d907ea03e284997ba19b281bccf056f = L.circle(
[46.2057991,-121.4909973],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_ab78ac5e2ac24eea84c4a118993a7350 = L.popup({maxWidth: '300'});
var html_d7d543a4c1834288b78ea4d10489f1f9 = $(' <div id="html_d7d543a4c1834288b78ea4d10489f1f9" style="width: 100.0%; height: 100.0%;"> 3742.0 m</div> ')[0];
popup_ab78ac5e2ac24eea84c4a118993a7350.setContent(html_d7d543a4c1834288b78ea4d10489f1f9);
circle_marker_9d907ea03e284997ba19b281bccf056f.bindPopup(popup_ab78ac5e2ac24eea84c4a118993a7350);
var circle_marker_09c62538270643ae91b6b1fb1597bb76 = L.circle(
[45.8797989,-122.0810013],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_8043e88e5ebb481c9b6e015fd0e655ec = L.popup({maxWidth: '300'});
var html_ea5d65cb7c7041a19c5468cbf99eacd6 = $(' <div id="html_ea5d65cb7c7041a19c5468cbf99eacd6" style="width: 100.0%; height: 100.0%;"> 1329.0 m</div> ')[0];
popup_8043e88e5ebb481c9b6e015fd0e655ec.setContent(html_ea5d65cb7c7041a19c5468cbf99eacd6);
circle_marker_09c62538270643ae91b6b1fb1597bb76.bindPopup(popup_8043e88e5ebb481c9b6e015fd0e655ec);
var circle_marker_5a0e14323c83468ea8f1deee67e36871 = L.circle(
[45.9297981,-121.8209991],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_e5a76768abd24dc6a503f820366dcb48 = L.popup({maxWidth: '300'});
var html_49f51f9ecb244effb7ceee557fd1fc08 = $(' <div id="html_49f51f9ecb244effb7ceee557fd1fc08" style="width: 100.0%; height: 100.0%;"> 1806.0 m</div> ')[0];
popup_e5a76768abd24dc6a503f820366dcb48.setContent(html_49f51f9ecb244effb7ceee557fd1fc08);
circle_marker_5a0e14323c83468ea8f1deee67e36871.bindPopup(popup_e5a76768abd24dc6a503f820366dcb48);
var circle_marker_4201bcf37c764d28a5865f61c3b13655 = L.circle(
[45.3737984,-121.6910019],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_071b5fe355ee4070a43f77f7031fff9d = L.popup({maxWidth: '300'});
var html_5becaff6f6cc4ca88d27b0cfe1f5e280 = $(' <div id="html_5becaff6f6cc4ca88d27b0cfe1f5e280" style="width: 100.0%; height: 100.0%;"> 3426.0 m</div> ')[0];
popup_071b5fe355ee4070a43f77f7031fff9d.setContent(html_5becaff6f6cc4ca88d27b0cfe1f5e280);
circle_marker_4201bcf37c764d28a5865f61c3b13655.bindPopup(popup_071b5fe355ee4070a43f77f7031fff9d);
var circle_marker_61e6bccd6742449f80958bb9867e740d = L.circle(
[44.6917992,-121.8010025],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_b9d34afaff8a47cba8d8ca4bc916114c = L.popup({maxWidth: '300'});
var html_a75b17a780074afe8d2b9f4a587a35fd = $(' <div id="html_a75b17a780074afe8d2b9f4a587a35fd" style="width: 100.0%; height: 100.0%;"> 3199.0 m</div> ')[0];
popup_b9d34afaff8a47cba8d8ca4bc916114c.setContent(html_a75b17a780074afe8d2b9f4a587a35fd);
circle_marker_61e6bccd6742449f80958bb9867e740d.bindPopup(popup_b9d34afaff8a47cba8d8ca4bc916114c);
var circle_marker_3d41a08871274d8b84ec08335372913f = L.circle(
[44.4197998,-121.7710037],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_f1b5f926cfec4e72ba6fb5db140a1ba7 = L.popup({maxWidth: '300'});
var html_53369d524e39494090a234837664b73e = $(' <div id="html_53369d524e39494090a234837664b73e" style="width: 100.0%; height: 100.0%;"> 1230.0 m</div> ')[0];
popup_f1b5f926cfec4e72ba6fb5db140a1ba7.setContent(html_53369d524e39494090a234837664b73e);
circle_marker_3d41a08871274d8b84ec08335372913f.bindPopup(popup_f1b5f926cfec4e72ba6fb5db140a1ba7);
var circle_marker_88db3ffdb03f4fedb6533ffdb8631c93 = L.circle(
[44.3797989,-121.9309998],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_64c2ed4910464d5d85b6b521262c3da8 = L.popup({maxWidth: '300'});
var html_4f528bb6d8164356a7ad6b039de34d66 = $(' <div id="html_4f528bb6d8164356a7ad6b039de34d66" style="width: 100.0%; height: 100.0%;"> 1664.0 m</div> ')[0];
popup_64c2ed4910464d5d85b6b521262c3da8.setContent(html_4f528bb6d8164356a7ad6b039de34d66);
circle_marker_88db3ffdb03f4fedb6533ffdb8631c93.bindPopup(popup_64c2ed4910464d5d85b6b521262c3da8);
var circle_marker_abdb7a444b3c410881a138f99e3ad228 = L.circle(
[44.3317986,-121.8310013],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_ad291c31c5ca488f8897982fcd3fab44 = L.popup({maxWidth: '300'});
var html_e065b65e55284861af5e9f01c449245c = $(' <div id="html_e065b65e55284861af5e9f01c449245c" style="width: 100.0%; height: 100.0%;"> 2376.0 m</div> ')[0];
popup_ad291c31c5ca488f8897982fcd3fab44.setContent(html_e065b65e55284861af5e9f01c449245c);
circle_marker_abdb7a444b3c410881a138f99e3ad228.bindPopup(popup_ad291c31c5ca488f8897982fcd3fab44);
var circle_marker_c5edecfebe684b339872b67e42f102b6 = L.circle(
[44.2848015,-121.8410034],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_41128ad0a91f442ba438e21e4e764e96 = L.popup({maxWidth: '300'});
var html_42fc87554eb94b8288c7a651d190ac0c = $(' <div id="html_42fc87554eb94b8288c7a651d190ac0c" style="width: 100.0%; height: 100.0%;"> 2095.0 m</div> ')[0];
popup_41128ad0a91f442ba438e21e4e764e96.setContent(html_42fc87554eb94b8288c7a651d190ac0c);
circle_marker_c5edecfebe684b339872b67e42f102b6.bindPopup(popup_41128ad0a91f442ba438e21e4e764e96);
var circle_marker_1ab0b24ca609494a8b726c071a47d72d = L.circle(
[44.1697998,-121.7710037],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_5f04c2c4a61e4b9aba3360d6809358bc = L.popup({maxWidth: '300'});
var html_8a1823f968c8408cb7c36b82c4ee279c = $(' <div id="html_8a1823f968c8408cb7c36b82c4ee279c" style="width: 100.0%; height: 100.0%;"> 3074.0 m</div> ')[0];
popup_5f04c2c4a61e4b9aba3360d6809358bc.setContent(html_8a1823f968c8408cb7c36b82c4ee279c);
circle_marker_1ab0b24ca609494a8b726c071a47d72d.bindPopup(popup_5f04c2c4a61e4b9aba3360d6809358bc);
var circle_marker_0551880ddac143e5ab6a52d28eefd206 = L.circle(
[44.0998001,-121.7710037],
6,
{
color: 'red',
fillColor: 'red',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_3b80d377dfdd44229145be3881ed04cc = L.popup({maxWidth: '300'});
var html_f9ecaa61533f46f1bbf2f1accb397b10 = $(' <div id="html_f9ecaa61533f46f1bbf2f1accb397b10" style="width: 100.0%; height: 100.0%;"> 3157.0 m</div> ')[0];
popup_3b80d377dfdd44229145be3881ed04cc.setContent(html_f9ecaa61533f46f1bbf2f1accb397b10);
circle_marker_0551880ddac143e5ab6a52d28eefd206.bindPopup(popup_3b80d377dfdd44229145be3881ed04cc);
var circle_marker_4a86fe854a624564851f71588352b3a2 = L.circle(
[43.9788017,-121.6809998],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_0eb6c4a021b544bbb167e349fbd4e683 = L.popup({maxWidth: '300'});
var html_f736acb73cc045d7b447de28e4e3e853 = $(' <div id="html_f736acb73cc045d7b447de28e4e3e853" style="width: 100.0%; height: 100.0%;"> 2763.0 m</div> ')[0];
popup_0eb6c4a021b544bbb167e349fbd4e683.setContent(html_f736acb73cc045d7b447de28e4e3e853);
circle_marker_4a86fe854a624564851f71588352b3a2.bindPopup(popup_0eb6c4a021b544bbb167e349fbd4e683);
var circle_marker_11c87383b97443a3a3baef1cf44f136f = L.circle(
[43.7218018,-121.2210007],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_654559063c264286af950484fa4cb57c = L.popup({maxWidth: '300'});
var html_cf44133dbec940b98db95d07ee257f50 = $(' <div id="html_cf44133dbec940b98db95d07ee257f50" style="width: 100.0%; height: 100.0%;"> 2434.0 m</div> ')[0];
popup_654559063c264286af950484fa4cb57c.setContent(html_cf44133dbec940b98db95d07ee257f50);
circle_marker_11c87383b97443a3a3baef1cf44f136f.bindPopup(popup_654559063c264286af950484fa4cb57c);
var circle_marker_d0c7c3034914411abdaf810c8867a417 = L.circle(
[43.5698013,-121.8209991],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_3b1ebd778f404533aaf6cbf738d9ca43 = L.popup({maxWidth: '300'});
var html_0d46315b318b45758463f294b675adf4 = $(' <div id="html_0d46315b318b45758463f294b675adf4" style="width: 100.0%; height: 100.0%;"> 2163.0 m</div> ')[0];
popup_3b1ebd778f404533aaf6cbf738d9ca43.setContent(html_0d46315b318b45758463f294b675adf4);
circle_marker_d0c7c3034914411abdaf810c8867a417.bindPopup(popup_3b1ebd778f404533aaf6cbf738d9ca43);
var circle_marker_007ab3961cdf4d94a83e905a63f975cf = L.circle(
[43.5119019,-120.8610001],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_c9752ae87dd54b7ba86b6997c82eac00 = L.popup({maxWidth: '300'});
var html_c81d4e4257334c9fa9a29dcb5b5204db = $(' <div id="html_c81d4e4257334c9fa9a29dcb5b5204db" style="width: 100.0%; height: 100.0%;"> 1698.0 m</div> ')[0];
popup_c9752ae87dd54b7ba86b6997c82eac00.setContent(html_c81d4e4257334c9fa9a29dcb5b5204db);
circle_marker_007ab3961cdf4d94a83e905a63f975cf.bindPopup(popup_c9752ae87dd54b7ba86b6997c82eac00);
var circle_marker_cf2b7eb18ba541c984c8bec2646e982c = L.circle(
[43.240799,-122.1009979],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_6013636eff5c449c90b1e93e86c92d00 = L.popup({maxWidth: '300'});
var html_1d343998e4fe4348b5654b6e3d887a8e = $(' <div id="html_1d343998e4fe4348b5654b6e3d887a8e" style="width: 100.0%; height: 100.0%;"> 1956.0 m</div> ')[0];
popup_6013636eff5c449c90b1e93e86c92d00.setContent(html_1d343998e4fe4348b5654b6e3d887a8e);
circle_marker_cf2b7eb18ba541c984c8bec2646e982c.bindPopup(popup_6013636eff5c449c90b1e93e86c92d00);
var circle_marker_9c5006eb355e44b5956cee02dcc0bcb5 = L.circle(
[43.4719009,-120.7509995],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_4aaa0ffb15a24516bcd7c3680c08ad74 = L.popup({maxWidth: '300'});
var html_b4741c54303d42a4a6b9832858c36679 = $(' <div id="html_b4741c54303d42a4a6b9832858c36679" style="width: 100.0%; height: 100.0%;"> 1711.0 m</div> ')[0];
popup_4aaa0ffb15a24516bcd7c3680c08ad74.setContent(html_b4741c54303d42a4a6b9832858c36679);
circle_marker_9c5006eb355e44b5956cee02dcc0bcb5.bindPopup(popup_4aaa0ffb15a24516bcd7c3680c08ad74);
var circle_marker_71124bf3cc6840f1988a0a88084fc85c = L.circle(
[43.3609009,-120.6610031],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_3f725337af2e4ba7879cc4321772e752 = L.popup({maxWidth: '300'});
var html_09e5fa439b7649f7a46b0fc6de08f2e0 = $(' <div id="html_09e5fa439b7649f7a46b0fc6de08f2e0" style="width: 100.0%; height: 100.0%;"> 1501.0 m</div> ')[0];
popup_3f725337af2e4ba7879cc4321772e752.setContent(html_09e5fa439b7649f7a46b0fc6de08f2e0);
circle_marker_71124bf3cc6840f1988a0a88084fc85c.bindPopup(popup_3f725337af2e4ba7879cc4321772e752);
var circle_marker_3fe9abf1ac974300a4d3ac74056318bb = L.circle(
[42.9299011,-122.1210022],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_caa9d5a882f041a086c7dd78de976efc = L.popup({maxWidth: '300'});
var html_77b01009d095464483b1e49a8fd87654 = $(' <div id="html_77b01009d095464483b1e49a8fd87654" style="width: 100.0%; height: 100.0%;"> 2487.0 m</div> ')[0];
popup_caa9d5a882f041a086c7dd78de976efc.setContent(html_77b01009d095464483b1e49a8fd87654);
circle_marker_3fe9abf1ac974300a4d3ac74056318bb.bindPopup(popup_caa9d5a882f041a086c7dd78de976efc);
var circle_marker_c90ec210e44e4ede879658cc23a3e896 = L.circle(
[44.4299011,-110.6709976],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_807ac406e72e49a492e3694099935824 = L.popup({maxWidth: '300'});
var html_5eba7df59ab2485a901a40fd8a2ea7fb = $(' <div id="html_5eba7df59ab2485a901a40fd8a2ea7fb" style="width: 100.0%; height: 100.0%;"> 2805.0 m</div> ')[0];
popup_807ac406e72e49a492e3694099935824.setContent(html_5eba7df59ab2485a901a40fd8a2ea7fb);
circle_marker_c90ec210e44e4ede879658cc23a3e896.bindPopup(popup_807ac406e72e49a492e3694099935824);
var circle_marker_d31cbe732c1f454fadeee887be7b2d49 = L.circle(
[43.0998993,-118.7509995],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_f0921f44ba904aa2bd61ab40f8ef0dbe = L.popup({maxWidth: '300'});
var html_febf6d25cf57466aad367a2462a02e75 = $(' <div id="html_febf6d25cf57466aad367a2462a02e75" style="width: 100.0%; height: 100.0%;"> 1435.0 m</div> ')[0];
popup_f0921f44ba904aa2bd61ab40f8ef0dbe.setContent(html_febf6d25cf57466aad367a2462a02e75);
circle_marker_d31cbe732c1f454fadeee887be7b2d49.bindPopup(popup_f0921f44ba904aa2bd61ab40f8ef0dbe);
var circle_marker_b8c0be39ff3244e597885bda6d5a8d9c = L.circle(
[43.1498985,-117.4710007],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_18f808eabe0140b0a18e8b6566f095c0 = L.popup({maxWidth: '300'});
var html_d509ed6098ce40db9fbff3e43f53a3ee = $(' <div id="html_d509ed6098ce40db9fbff3e43f53a3ee" style="width: 100.0%; height: 100.0%;"> 1473.0 m</div> ')[0];
popup_18f808eabe0140b0a18e8b6566f095c0.setContent(html_d509ed6098ce40db9fbff3e43f53a3ee);
circle_marker_b8c0be39ff3244e597885bda6d5a8d9c.bindPopup(popup_18f808eabe0140b0a18e8b6566f095c0);
var circle_marker_3adb5ec8c4d64bdbb3481442bb24db8c = L.circle(
[42.9999008,-117.8010025],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_998e1369363e4ef68e7b388c6d63e38e = L.popup({maxWidth: '300'});
var html_c0ece0b4ffd5498fa399c01c81f56ab6 = $(' <div id="html_c0ece0b4ffd5498fa399c01c81f56ab6" style="width: 100.0%; height: 100.0%;"> 1700.0 m</div> ')[0];
popup_998e1369363e4ef68e7b388c6d63e38e.setContent(html_c0ece0b4ffd5498fa399c01c81f56ab6);
circle_marker_3adb5ec8c4d64bdbb3481442bb24db8c.bindPopup(popup_998e1369363e4ef68e7b388c6d63e38e);
var circle_marker_c5ae41705b5d4e1192fc9ee62bf24788 = L.circle(
[43.419899,-113.5009995],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_4fd1892db5184baaa5f6d47aec5efc8d = L.popup({maxWidth: '300'});
var html_1ceeb578cbfc46f0902134dbecf57cff = $(' <div id="html_1ceeb578cbfc46f0902134dbecf57cff" style="width: 100.0%; height: 100.0%;"> 2005.0 m</div> ')[0];
popup_4fd1892db5184baaa5f6d47aec5efc8d.setContent(html_1ceeb578cbfc46f0902134dbecf57cff);
circle_marker_c5ae41705b5d4e1192fc9ee62bf24788.bindPopup(popup_4fd1892db5184baaa5f6d47aec5efc8d);
var circle_marker_94252fd2396c479ab8eb19235e60602e = L.circle(
[43.4999008,-112.4509964],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_e41b0e269c9b4f4d83cbb36022b57036 = L.popup({maxWidth: '300'});
var html_21502f050a8f46b8912bec3abcbe3421 = $(' <div id="html_21502f050a8f46b8912bec3abcbe3421" style="width: 100.0%; height: 100.0%;"> 1631.0 m</div> ')[0];
popup_e41b0e269c9b4f4d83cbb36022b57036.setContent(html_21502f050a8f46b8912bec3abcbe3421);
circle_marker_94252fd2396c479ab8eb19235e60602e.bindPopup(popup_e41b0e269c9b4f4d83cbb36022b57036);
var circle_marker_b3946e7b8a3e4dbfabb0cc7e87ff8283 = L.circle(
[43.1799011,-114.3509979],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_dd6642bbc4a34825961f45c528132acc = L.popup({maxWidth: '300'});
var html_2ca582e9280546a19a2933a4c69e1c46 = $(' <div id="html_2ca582e9280546a19a2933a4c69e1c46" style="width: 100.0%; height: 100.0%;"> 1478.0 m</div> ')[0];
popup_dd6642bbc4a34825961f45c528132acc.setContent(html_2ca582e9280546a19a2933a4c69e1c46);
circle_marker_b3946e7b8a3e4dbfabb0cc7e87ff8283.bindPopup(popup_dd6642bbc4a34825961f45c528132acc);
var circle_marker_55ccf840b805439e9ffebe24f1d68f42 = L.circle(
[42.6058998,-117.5810013],
6,
{
color: 'red',
fillColor: 'orange',
fillOpacity: 0.7
}
)
.addTo(feature_group_ce14e31224f94195b1121fc904d20f2d);
var popup_113f8d8cee7440bc85768bb1086b224c = L.popup({maxWidth: '300'});
var html_af8c6123b618406785e7b48aff97b12b = $(' <div id="html_af8c6123b618406785e7b48aff97b12b" style="width: 100.0%; height: 100.0%;"> 1418.0 m</div> ')[0];
popup_113f8d8cee7440bc85768bb1086b224c.setContent(html_af8c6123b618406785e7b48aff97b12b);