-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest.html
More file actions
2173 lines (1294 loc) · 79.1 KB
/
Test.html
File metadata and controls
2173 lines (1294 loc) · 79.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>L_PREFER_CANVAS=false; L_NO_TOUCH=false; L_DISABLE_3D=false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/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/leaflet@1.2.0/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_d57009bf005f47bc8668cc122ed91e67 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_d57009bf005f47bc8668cc122ed91e67" ></div>
</body>
<script>
var bounds = null;
var map_d57009bf005f47bc8668cc122ed91e67 = L.map(
'map_d57009bf005f47bc8668cc122ed91e67', {
center: [25.58, -92.09],
zoom: 8,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_77417810f0a843698c1f44ad9ba4f3f4 = L.tileLayer(
'https://{s}.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"subdomains": "abc"
}).addTo(map_d57009bf005f47bc8668cc122ed91e67);
var feature_group_55f972fd98724e12b2db46303f5b8e21 = L.featureGroup(
).addTo(map_d57009bf005f47bc8668cc122ed91e67);
var marker_806879972f784b89ab93c9a102221f25 = L.marker(
[48.7767982, -121.810997],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_f013e17988a14886875a2afb25f8279f = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_806879972f784b89ab93c9a102221f25.setIcon(icon_f013e17988a14886875a2afb25f8279f);
var popup_bcf033c903d048798f09d6af04ad8e96 = L.popup({maxWidth: '300'
});
var html_c89beb402b3e46fbb7f9da2d0caa6928 = $('<div id="html_c89beb402b3e46fbb7f9da2d0caa6928" style="width: 100.0%; height: 100.0%;">3285.0</div>')[0];
popup_bcf033c903d048798f09d6af04ad8e96.setContent(html_c89beb402b3e46fbb7f9da2d0caa6928);
marker_806879972f784b89ab93c9a102221f25.bindPopup(popup_bcf033c903d048798f09d6af04ad8e96)
;
var marker_cd56a78d82eb42e68762b9120c4aa5cf = L.marker(
[48.1118011, -121.1110001],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_0250def2b7c44fdcad1f22f034636496 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cd56a78d82eb42e68762b9120c4aa5cf.setIcon(icon_0250def2b7c44fdcad1f22f034636496);
var popup_9f3628c4146b4854a099b78e12851ef3 = L.popup({maxWidth: '300'
});
var html_29bf619eebc141fba46c160b4bfa63a9 = $('<div id="html_29bf619eebc141fba46c160b4bfa63a9" style="width: 100.0%; height: 100.0%;">3213.0</div>')[0];
popup_9f3628c4146b4854a099b78e12851ef3.setContent(html_29bf619eebc141fba46c160b4bfa63a9);
marker_cd56a78d82eb42e68762b9120c4aa5cf.bindPopup(popup_9f3628c4146b4854a099b78e12851ef3)
;
var marker_03e6dac5fb0a42ab852a32fcb15d94d8 = L.marker(
[46.8698006, -121.7509995],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_89f3255ed7bc43c3980af894dce515bd = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_03e6dac5fb0a42ab852a32fcb15d94d8.setIcon(icon_89f3255ed7bc43c3980af894dce515bd);
var popup_e8e2e9bc98ef4059b358010f3b477a8c = L.popup({maxWidth: '300'
});
var html_f768f0f631ff436b895f382c137191d8 = $('<div id="html_f768f0f631ff436b895f382c137191d8" style="width: 100.0%; height: 100.0%;">4392.0</div>')[0];
popup_e8e2e9bc98ef4059b358010f3b477a8c.setContent(html_f768f0f631ff436b895f382c137191d8);
marker_03e6dac5fb0a42ab852a32fcb15d94d8.bindPopup(popup_e8e2e9bc98ef4059b358010f3b477a8c)
;
var marker_2d731c26161a49ddb714f53a82ba4efb = L.marker(
[46.1997986, -122.1809998],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_c8ddfe1f96d041608e96f40a9f3c6176 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2d731c26161a49ddb714f53a82ba4efb.setIcon(icon_c8ddfe1f96d041608e96f40a9f3c6176);
var popup_79cf7abc44134f8486c06ed4928b3969 = L.popup({maxWidth: '300'
});
var html_eff9759a77734714a5d103e1e72d8e4e = $('<div id="html_eff9759a77734714a5d103e1e72d8e4e" style="width: 100.0%; height: 100.0%;">2549.0</div>')[0];
popup_79cf7abc44134f8486c06ed4928b3969.setContent(html_eff9759a77734714a5d103e1e72d8e4e);
marker_2d731c26161a49ddb714f53a82ba4efb.bindPopup(popup_79cf7abc44134f8486c06ed4928b3969)
;
var marker_1cb58d7cc7e64365ab8833b0d72ed5a9 = L.marker(
[46.20579910000001, -121.4909973],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_76b3907a9de04a64a9888ae828d8c652 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1cb58d7cc7e64365ab8833b0d72ed5a9.setIcon(icon_76b3907a9de04a64a9888ae828d8c652);
var popup_8cd7706f9de2452a923d25b8ba3c3cb9 = L.popup({maxWidth: '300'
});
var html_de00d525058f49fbac7ac740c081a5fd = $('<div id="html_de00d525058f49fbac7ac740c081a5fd" style="width: 100.0%; height: 100.0%;">3742.0</div>')[0];
popup_8cd7706f9de2452a923d25b8ba3c3cb9.setContent(html_de00d525058f49fbac7ac740c081a5fd);
marker_1cb58d7cc7e64365ab8833b0d72ed5a9.bindPopup(popup_8cd7706f9de2452a923d25b8ba3c3cb9)
;
var marker_63a82b34a26d4c37909df1bbd03c3302 = L.marker(
[45.8797989, -122.0810013],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_c4d9549b129a4a3f879b68fcc64c4ec8 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_63a82b34a26d4c37909df1bbd03c3302.setIcon(icon_c4d9549b129a4a3f879b68fcc64c4ec8);
var popup_05c5ab741ef04a75a8145ce06746f41c = L.popup({maxWidth: '300'
});
var html_23547442549e446d9308ce5f72b2673e = $('<div id="html_23547442549e446d9308ce5f72b2673e" style="width: 100.0%; height: 100.0%;">1329.0</div>')[0];
popup_05c5ab741ef04a75a8145ce06746f41c.setContent(html_23547442549e446d9308ce5f72b2673e);
marker_63a82b34a26d4c37909df1bbd03c3302.bindPopup(popup_05c5ab741ef04a75a8145ce06746f41c)
;
var marker_87c1590dead64f7aa6c160188facdf4d = L.marker(
[45.929798100000006, -121.8209991],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_3a52309de06e448c920b09a893a52e00 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_87c1590dead64f7aa6c160188facdf4d.setIcon(icon_3a52309de06e448c920b09a893a52e00);
var popup_297a6227ecdf4b4b9bd3ea1a579d288b = L.popup({maxWidth: '300'
});
var html_c135f6aa3e454d4fa138839f165610e8 = $('<div id="html_c135f6aa3e454d4fa138839f165610e8" style="width: 100.0%; height: 100.0%;">1806.0</div>')[0];
popup_297a6227ecdf4b4b9bd3ea1a579d288b.setContent(html_c135f6aa3e454d4fa138839f165610e8);
marker_87c1590dead64f7aa6c160188facdf4d.bindPopup(popup_297a6227ecdf4b4b9bd3ea1a579d288b)
;
var marker_280f45df72cd42f0b04fb85a3cdfaf82 = L.marker(
[45.3737984, -121.6910019],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_eef5dfd624e94a13a68a9bf77b28b91f = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_280f45df72cd42f0b04fb85a3cdfaf82.setIcon(icon_eef5dfd624e94a13a68a9bf77b28b91f);
var popup_80cb87e89ed34abdab02c965fdf665ba = L.popup({maxWidth: '300'
});
var html_47fe8eb559154656aa951d6743547504 = $('<div id="html_47fe8eb559154656aa951d6743547504" style="width: 100.0%; height: 100.0%;">3426.0</div>')[0];
popup_80cb87e89ed34abdab02c965fdf665ba.setContent(html_47fe8eb559154656aa951d6743547504);
marker_280f45df72cd42f0b04fb85a3cdfaf82.bindPopup(popup_80cb87e89ed34abdab02c965fdf665ba)
;
var marker_3164d1dd1a8146a8a78253dbb0207d78 = L.marker(
[44.691799200000005, -121.8010025],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_4beb74d066544fc4b13749b8479c81aa = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3164d1dd1a8146a8a78253dbb0207d78.setIcon(icon_4beb74d066544fc4b13749b8479c81aa);
var popup_e2c2a380b1554d69a41b6327d298273a = L.popup({maxWidth: '300'
});
var html_775ad5d277e940b391a7c613807d9d4e = $('<div id="html_775ad5d277e940b391a7c613807d9d4e" style="width: 100.0%; height: 100.0%;">3199.0</div>')[0];
popup_e2c2a380b1554d69a41b6327d298273a.setContent(html_775ad5d277e940b391a7c613807d9d4e);
marker_3164d1dd1a8146a8a78253dbb0207d78.bindPopup(popup_e2c2a380b1554d69a41b6327d298273a)
;
var marker_3f0aa96a5d7147668a29a1b6543176d6 = L.marker(
[44.4197998, -121.7710037],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_b3a49ba9b9764158ba15ca47ddd76b35 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3f0aa96a5d7147668a29a1b6543176d6.setIcon(icon_b3a49ba9b9764158ba15ca47ddd76b35);
var popup_db4e00f6606249e5adbb1a31b8f2cee2 = L.popup({maxWidth: '300'
});
var html_adeaffa2cb2d42d394ab7d48296cb285 = $('<div id="html_adeaffa2cb2d42d394ab7d48296cb285" style="width: 100.0%; height: 100.0%;">1230.0</div>')[0];
popup_db4e00f6606249e5adbb1a31b8f2cee2.setContent(html_adeaffa2cb2d42d394ab7d48296cb285);
marker_3f0aa96a5d7147668a29a1b6543176d6.bindPopup(popup_db4e00f6606249e5adbb1a31b8f2cee2)
;
var marker_3d0c8e26fe814bb6881791b59a86c29f = L.marker(
[44.3797989, -121.9309998],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_df9aec19832b4c1aa9ed4f77e1d27c53 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3d0c8e26fe814bb6881791b59a86c29f.setIcon(icon_df9aec19832b4c1aa9ed4f77e1d27c53);
var popup_1e69fc71b420470bbe3576b6d58735c4 = L.popup({maxWidth: '300'
});
var html_3ce671e4e22e4d35b24ae2ec131567f3 = $('<div id="html_3ce671e4e22e4d35b24ae2ec131567f3" style="width: 100.0%; height: 100.0%;">1664.0</div>')[0];
popup_1e69fc71b420470bbe3576b6d58735c4.setContent(html_3ce671e4e22e4d35b24ae2ec131567f3);
marker_3d0c8e26fe814bb6881791b59a86c29f.bindPopup(popup_1e69fc71b420470bbe3576b6d58735c4)
;
var marker_b40e7e65927442eeb394cf1cac270d05 = L.marker(
[44.331798600000006, -121.8310013],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_1014fbe202ae4c3f8606e176423d37ff = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b40e7e65927442eeb394cf1cac270d05.setIcon(icon_1014fbe202ae4c3f8606e176423d37ff);
var popup_128f52580ec64f82b1f05627fa132ab0 = L.popup({maxWidth: '300'
});
var html_1b65b383663e4d30ba57a3fcba05a4ae = $('<div id="html_1b65b383663e4d30ba57a3fcba05a4ae" style="width: 100.0%; height: 100.0%;">2376.0</div>')[0];
popup_128f52580ec64f82b1f05627fa132ab0.setContent(html_1b65b383663e4d30ba57a3fcba05a4ae);
marker_b40e7e65927442eeb394cf1cac270d05.bindPopup(popup_128f52580ec64f82b1f05627fa132ab0)
;
var marker_0e5f4714bad047f58b1965645099a71e = L.marker(
[44.2848015, -121.8410034],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_aa1e46cb9a73422dae2eaa784749b05e = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0e5f4714bad047f58b1965645099a71e.setIcon(icon_aa1e46cb9a73422dae2eaa784749b05e);
var popup_3b7d7da7ed1b46c382a32fd178c0eff9 = L.popup({maxWidth: '300'
});
var html_9fbacefbf10b43f386774bd55cc0087f = $('<div id="html_9fbacefbf10b43f386774bd55cc0087f" style="width: 100.0%; height: 100.0%;">2095.0</div>')[0];
popup_3b7d7da7ed1b46c382a32fd178c0eff9.setContent(html_9fbacefbf10b43f386774bd55cc0087f);
marker_0e5f4714bad047f58b1965645099a71e.bindPopup(popup_3b7d7da7ed1b46c382a32fd178c0eff9)
;
var marker_a779c524ffaa42d3a58e19e96983313a = L.marker(
[44.1697998, -121.7710037],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_e7cccb5615644e90be98fd5f7acc580e = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_a779c524ffaa42d3a58e19e96983313a.setIcon(icon_e7cccb5615644e90be98fd5f7acc580e);
var popup_8667ea8ee4044a27a6b8239b778d236b = L.popup({maxWidth: '300'
});
var html_4fc7b76051024e20995231c559838301 = $('<div id="html_4fc7b76051024e20995231c559838301" style="width: 100.0%; height: 100.0%;">3074.0</div>')[0];
popup_8667ea8ee4044a27a6b8239b778d236b.setContent(html_4fc7b76051024e20995231c559838301);
marker_a779c524ffaa42d3a58e19e96983313a.bindPopup(popup_8667ea8ee4044a27a6b8239b778d236b)
;
var marker_d807af0639dc4230b80958684252347c = L.marker(
[44.099800099999996, -121.7710037],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_c14afb7a3af14b81b274cc55bb119b9b = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d807af0639dc4230b80958684252347c.setIcon(icon_c14afb7a3af14b81b274cc55bb119b9b);
var popup_3fe4d7a8ad5d40e8add1b06c2d9b1bf3 = L.popup({maxWidth: '300'
});
var html_9e3a7a20a44e4107ac03a0c9f2fe3847 = $('<div id="html_9e3a7a20a44e4107ac03a0c9f2fe3847" style="width: 100.0%; height: 100.0%;">3157.0</div>')[0];
popup_3fe4d7a8ad5d40e8add1b06c2d9b1bf3.setContent(html_9e3a7a20a44e4107ac03a0c9f2fe3847);
marker_d807af0639dc4230b80958684252347c.bindPopup(popup_3fe4d7a8ad5d40e8add1b06c2d9b1bf3)
;
var marker_b3294098b35e479ab42db56bf7f917ef = L.marker(
[43.978801700000005, -121.6809998],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_57e99e800c11441ba2b70e7f88cb1e9a = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_b3294098b35e479ab42db56bf7f917ef.setIcon(icon_57e99e800c11441ba2b70e7f88cb1e9a);
var popup_67406447367f455f89a672bdd99cce6d = L.popup({maxWidth: '300'
});
var html_efb1d8e4c3c7424fbba6f20ae76fbd4c = $('<div id="html_efb1d8e4c3c7424fbba6f20ae76fbd4c" style="width: 100.0%; height: 100.0%;">2763.0</div>')[0];
popup_67406447367f455f89a672bdd99cce6d.setContent(html_efb1d8e4c3c7424fbba6f20ae76fbd4c);
marker_b3294098b35e479ab42db56bf7f917ef.bindPopup(popup_67406447367f455f89a672bdd99cce6d)
;
var marker_fae2a88083834807bcd588a42a0a211f = L.marker(
[43.7218018, -121.2210007],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_8927a4c1061f49a2957758114bb55a4c = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_fae2a88083834807bcd588a42a0a211f.setIcon(icon_8927a4c1061f49a2957758114bb55a4c);
var popup_2d6451634cac4e249a2141b33ee52ccf = L.popup({maxWidth: '300'
});
var html_472a9999df3241d2bef88a7f3050e3a8 = $('<div id="html_472a9999df3241d2bef88a7f3050e3a8" style="width: 100.0%; height: 100.0%;">2434.0</div>')[0];
popup_2d6451634cac4e249a2141b33ee52ccf.setContent(html_472a9999df3241d2bef88a7f3050e3a8);
marker_fae2a88083834807bcd588a42a0a211f.bindPopup(popup_2d6451634cac4e249a2141b33ee52ccf)
;
var marker_42c162ce36ce4204bbdc6d2fb84eb426 = L.marker(
[43.569801299999995, -121.8209991],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_d7ea0b1b8e734c02b1d57be5c6d31d4a = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_42c162ce36ce4204bbdc6d2fb84eb426.setIcon(icon_d7ea0b1b8e734c02b1d57be5c6d31d4a);
var popup_3d2cd8f277b549f78ab0e5fb5bf357d3 = L.popup({maxWidth: '300'
});
var html_6a65ef23eb5040609fd3bafb5ce58e39 = $('<div id="html_6a65ef23eb5040609fd3bafb5ce58e39" style="width: 100.0%; height: 100.0%;">2163.0</div>')[0];
popup_3d2cd8f277b549f78ab0e5fb5bf357d3.setContent(html_6a65ef23eb5040609fd3bafb5ce58e39);
marker_42c162ce36ce4204bbdc6d2fb84eb426.bindPopup(popup_3d2cd8f277b549f78ab0e5fb5bf357d3)
;
var marker_0586759f0f9e41b48d8ed31681073d16 = L.marker(
[43.5119019, -120.8610001],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_772e1ff3d41b4c08b55a663a5adf25e3 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_0586759f0f9e41b48d8ed31681073d16.setIcon(icon_772e1ff3d41b4c08b55a663a5adf25e3);
var popup_0721632e7a0d4286aa5425b05e607007 = L.popup({maxWidth: '300'
});
var html_7a1c323130c5427b904f31c9561dd494 = $('<div id="html_7a1c323130c5427b904f31c9561dd494" style="width: 100.0%; height: 100.0%;">1698.0</div>')[0];
popup_0721632e7a0d4286aa5425b05e607007.setContent(html_7a1c323130c5427b904f31c9561dd494);
marker_0586759f0f9e41b48d8ed31681073d16.bindPopup(popup_0721632e7a0d4286aa5425b05e607007)
;
var marker_6b81a21760474bb3971bc63e388d603f = L.marker(
[43.240798999999996, -122.10099790000001],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_acdd2102960c48d18ed40f8535b5652b = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6b81a21760474bb3971bc63e388d603f.setIcon(icon_acdd2102960c48d18ed40f8535b5652b);
var popup_eb90af15c1974a12933e097089737ab3 = L.popup({maxWidth: '300'
});
var html_d026e16487c84120beb28e99398bde68 = $('<div id="html_d026e16487c84120beb28e99398bde68" style="width: 100.0%; height: 100.0%;">1956.0</div>')[0];
popup_eb90af15c1974a12933e097089737ab3.setContent(html_d026e16487c84120beb28e99398bde68);
marker_6b81a21760474bb3971bc63e388d603f.bindPopup(popup_eb90af15c1974a12933e097089737ab3)
;
var marker_6852ad9bd61c47da9b8bad507ab8b3f8 = L.marker(
[43.471900899999994, -120.7509995],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_e287641f9f3b415d9ad51ccc84e2e9bf = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6852ad9bd61c47da9b8bad507ab8b3f8.setIcon(icon_e287641f9f3b415d9ad51ccc84e2e9bf);
var popup_93d5435dbf224053969641739c43f2ef = L.popup({maxWidth: '300'
});
var html_c8466537bccd42d283805de5e3c3e2dc = $('<div id="html_c8466537bccd42d283805de5e3c3e2dc" style="width: 100.0%; height: 100.0%;">1711.0</div>')[0];
popup_93d5435dbf224053969641739c43f2ef.setContent(html_c8466537bccd42d283805de5e3c3e2dc);
marker_6852ad9bd61c47da9b8bad507ab8b3f8.bindPopup(popup_93d5435dbf224053969641739c43f2ef)
;
var marker_1bf62ac9f002407e8ae31b640834a244 = L.marker(
[43.3609009, -120.6610031],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_f5128339ab34446c811a93368b5b5261 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_1bf62ac9f002407e8ae31b640834a244.setIcon(icon_f5128339ab34446c811a93368b5b5261);
var popup_931efba1284f40748253aa342f695c7b = L.popup({maxWidth: '300'
});
var html_289a3c0a43a544d8b16020c967bcaec9 = $('<div id="html_289a3c0a43a544d8b16020c967bcaec9" style="width: 100.0%; height: 100.0%;">1501.0</div>')[0];
popup_931efba1284f40748253aa342f695c7b.setContent(html_289a3c0a43a544d8b16020c967bcaec9);
marker_1bf62ac9f002407e8ae31b640834a244.bindPopup(popup_931efba1284f40748253aa342f695c7b)
;
var marker_944ac010079c4a37bc0c7d249b9481c5 = L.marker(
[42.9299011, -122.1210022],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_af358df46e5044c99155024254f79359 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_944ac010079c4a37bc0c7d249b9481c5.setIcon(icon_af358df46e5044c99155024254f79359);
var popup_c38e61419a05491481ab74689e65f94a = L.popup({maxWidth: '300'
});
var html_d115888778ce48fd805550228580e75a = $('<div id="html_d115888778ce48fd805550228580e75a" style="width: 100.0%; height: 100.0%;">2487.0</div>')[0];
popup_c38e61419a05491481ab74689e65f94a.setContent(html_d115888778ce48fd805550228580e75a);
marker_944ac010079c4a37bc0c7d249b9481c5.bindPopup(popup_c38e61419a05491481ab74689e65f94a)
;
var marker_86c8e1e6f8a64d229d3de8038fe2acf6 = L.marker(
[44.4299011, -110.6709976],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_c39ede5a8d0d4bc1889b83628a87042f = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_86c8e1e6f8a64d229d3de8038fe2acf6.setIcon(icon_c39ede5a8d0d4bc1889b83628a87042f);
var popup_d0d53cb7897b4ee6b3fa7388f0a9aff1 = L.popup({maxWidth: '300'
});
var html_948157e8c8da4551b1d20ec7a1d979b6 = $('<div id="html_948157e8c8da4551b1d20ec7a1d979b6" style="width: 100.0%; height: 100.0%;">2805.0</div>')[0];
popup_d0d53cb7897b4ee6b3fa7388f0a9aff1.setContent(html_948157e8c8da4551b1d20ec7a1d979b6);
marker_86c8e1e6f8a64d229d3de8038fe2acf6.bindPopup(popup_d0d53cb7897b4ee6b3fa7388f0a9aff1)
;
var marker_bbe18dcc5d4c450999270d0aaab12dd2 = L.marker(
[43.0998993, -118.7509995],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_71a98f6bafb6428e85d7111526e6f530 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_bbe18dcc5d4c450999270d0aaab12dd2.setIcon(icon_71a98f6bafb6428e85d7111526e6f530);
var popup_5a40957e121d4d02828f69d888a91f32 = L.popup({maxWidth: '300'
});
var html_bf4611755ba54ff789694d727de21b1b = $('<div id="html_bf4611755ba54ff789694d727de21b1b" style="width: 100.0%; height: 100.0%;">1435.0</div>')[0];
popup_5a40957e121d4d02828f69d888a91f32.setContent(html_bf4611755ba54ff789694d727de21b1b);
marker_bbe18dcc5d4c450999270d0aaab12dd2.bindPopup(popup_5a40957e121d4d02828f69d888a91f32)
;
var marker_215b26da108b44d79fa79962d495aa84 = L.marker(
[43.1498985, -117.4710007],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_4615868667364ff8a5b4158c4f5b64ec = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_215b26da108b44d79fa79962d495aa84.setIcon(icon_4615868667364ff8a5b4158c4f5b64ec);
var popup_e1a1da5943e54ceba07617d4dba95953 = L.popup({maxWidth: '300'
});
var html_49db4fad385649fb8c0f0181d8196173 = $('<div id="html_49db4fad385649fb8c0f0181d8196173" style="width: 100.0%; height: 100.0%;">1473.0</div>')[0];
popup_e1a1da5943e54ceba07617d4dba95953.setContent(html_49db4fad385649fb8c0f0181d8196173);
marker_215b26da108b44d79fa79962d495aa84.bindPopup(popup_e1a1da5943e54ceba07617d4dba95953)
;
var marker_7c3478f2e3e74c6a9a436ac720fac5e3 = L.marker(
[42.9999008, -117.8010025],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_c09f18b447c74edebd41675f9a7a4185 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_7c3478f2e3e74c6a9a436ac720fac5e3.setIcon(icon_c09f18b447c74edebd41675f9a7a4185);
var popup_e19618c09b4d46ec9449e2b41642f339 = L.popup({maxWidth: '300'
});
var html_0f2b5c3971894c12a0e2feb346d941a0 = $('<div id="html_0f2b5c3971894c12a0e2feb346d941a0" style="width: 100.0%; height: 100.0%;">1700.0</div>')[0];
popup_e19618c09b4d46ec9449e2b41642f339.setContent(html_0f2b5c3971894c12a0e2feb346d941a0);
marker_7c3478f2e3e74c6a9a436ac720fac5e3.bindPopup(popup_e19618c09b4d46ec9449e2b41642f339)
;
var marker_5210e116d9b24f0ca5f73fbcd7d90f48 = L.marker(
[43.419899, -113.5009995],
{
icon: new L.Icon.Default()
}
).addTo(feature_group_55f972fd98724e12b2db46303f5b8e21);
var icon_d4ff6d0c70474b03ae5afeb9fcc32986 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'green',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5210e116d9b24f0ca5f73fbcd7d90f48.setIcon(icon_d4ff6d0c70474b03ae5afeb9fcc32986);