-
Notifications
You must be signed in to change notification settings - Fork 0
/
trails_map.html
1752 lines (894 loc) · 142 KB
/
trails_map.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>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.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://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_b7af4bbfc3f0fb75ed77d64799a6711b {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_b7af4bbfc3f0fb75ed77d64799a6711b" ></div>
</body>
<script>
var map_b7af4bbfc3f0fb75ed77d64799a6711b = L.map(
"map_b7af4bbfc3f0fb75ed77d64799a6711b",
{
center: [40.014984, -105.270546],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_55873c37c875ca608342e476e2eb34a7 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_55873c37c875ca608342e476e2eb34a7.addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_28cb4e7ed0712de7764b3508f2878d5f = L.marker(
[39.9935708, -105.3081339],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_ed001ebae2e885b473a333a05a4ecd01 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_28cb4e7ed0712de7764b3508f2878d5f.setIcon(icon_ed001ebae2e885b473a333a05a4ecd01);
var popup_b3e46e3b646efd9c483f6b45a7d42b39 = L.popup({"maxWidth": "100%"});
var html_d4182c8b5b6ed995586445c36a50a659 = $(`<div id="html_d4182c8b5b6ed995586445c36a50a659" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_b3e46e3b646efd9c483f6b45a7d42b39.setContent(html_d4182c8b5b6ed995586445c36a50a659);
marker_28cb4e7ed0712de7764b3508f2878d5f.bindPopup(popup_b3e46e3b646efd9c483f6b45a7d42b39)
;
var marker_20ad6341112f49c4c7bfb612142bf028 = L.marker(
[39.9828283, -105.3039041],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_d738cca89a63902171e16d77eefdea00 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_20ad6341112f49c4c7bfb612142bf028.setIcon(icon_d738cca89a63902171e16d77eefdea00);
var popup_389532e8715bbadd529e05b4f5998965 = L.popup({"maxWidth": "100%"});
var html_2fb40b87a9f23ccca09fe4dbd9501b1c = $(`<div id="html_2fb40b87a9f23ccca09fe4dbd9501b1c" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_389532e8715bbadd529e05b4f5998965.setContent(html_2fb40b87a9f23ccca09fe4dbd9501b1c);
marker_20ad6341112f49c4c7bfb612142bf028.bindPopup(popup_389532e8715bbadd529e05b4f5998965)
;
var poly_line_a8d739cb3acef9fff77c0337ad5c26a1 = L.polyline(
[[39.9935708, -105.3081339], [39.9935211, -105.3080418], [39.9933642, -105.308022], [39.9932273, -105.3079392], [39.9930041, -105.3077233], [39.9927547, -105.3073537], [39.992491, -105.307094], [39.9923217, -105.3067785], [39.9918131, -105.3063044], [39.9917691, -105.3060796], [39.9916999, -105.3059692], [39.9914894, -105.3058654], [39.9910843, -105.3053727], [39.9909411, -105.3052607], [39.9907418, -105.3052061], [39.9905486, -105.3051943], [39.9903629, -105.3051706], [39.9901102, -105.3051883], [39.9901102, -105.3051883], [39.9897611, -105.3054407], [39.989937, -105.3057449], [39.9900505, -105.3062103], [39.9903129, -105.3063151], [39.9903214, -105.3063894], [39.9902018, -105.3065386], [39.9901276, -105.3067442], [39.9899294, -105.3068531], [39.989677, -105.3069466], [39.9895485, -105.3070727], [39.989423, -105.3070927], [39.9892832, -105.3070556], [39.9891877, -105.3069453], [39.9884199, -105.3068832], [39.9879532, -105.3066445], [39.987716, -105.3062223], [39.9875996, -105.3057747], [39.9876686, -105.3056489], [39.9874551, -105.3055424], [39.9874664, -105.3053479], [39.987364, -105.305241], [39.9872367, -105.3052432], [39.9872061, -105.3050748], [39.9869802, -105.3051033], [39.9869808, -105.304963], [39.9867655, -105.3047479], [39.9865272, -105.3046875], [39.9862403, -105.304493], [39.986166, -105.304395], [39.9861976, -105.3043726], [39.9860498, -105.3042187], [39.985684, -105.3040547], [39.9854908, -105.3040615], [39.9854324, -105.303976], [39.9853483, -105.3040003], [39.9851257, -105.30386], [39.9848318, -105.3037699], [39.9847525, -105.3037041], [39.9848337, -105.3036432], [39.9848531, -105.3035423], [39.9847657, -105.3034489], [39.9843703, -105.3034796], [39.9844473, -105.3033063], [39.9843467, -105.3033021], [39.9844117, -105.3030886], [39.9844022, -105.3029503], [39.9843781, -105.3026113], [39.9843154, -105.3025446], [39.9842541, -105.3026966], [39.9841661, -105.3029394], [39.9839866, -105.3031567], [39.9838787, -105.3032257], [39.9836076, -105.3032176], [39.9832759, -105.3034315], [39.9830329, -105.3036944], [39.9829492, -105.3037826], [39.9828283, -105.3039041]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_339c20adf6ebb62035c1fff2b1d5b78f = L.marker(
[39.9972788, -105.2801988],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_c6c09f522a54a0550b8d68d62612fa50 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_339c20adf6ebb62035c1fff2b1d5b78f.setIcon(icon_c6c09f522a54a0550b8d68d62612fa50);
var popup_ebdbbdccc8066e0e68878d22c2ae97e1 = L.popup({"maxWidth": "100%"});
var html_8a1131f5dfeb4f415b72cccec5fdeb33 = $(`<div id="html_8a1131f5dfeb4f415b72cccec5fdeb33" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_ebdbbdccc8066e0e68878d22c2ae97e1.setContent(html_8a1131f5dfeb4f415b72cccec5fdeb33);
marker_339c20adf6ebb62035c1fff2b1d5b78f.bindPopup(popup_ebdbbdccc8066e0e68878d22c2ae97e1)
;
var marker_522a37114e9b2615a7f691fd375b24d5 = L.marker(
[39.9897489, -105.2850094],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_053fa514d154673b5cfe08b81759b2ad = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_522a37114e9b2615a7f691fd375b24d5.setIcon(icon_053fa514d154673b5cfe08b81759b2ad);
var popup_cc7c224b319790012be7e2c65f43e5b4 = L.popup({"maxWidth": "100%"});
var html_b17cabaf54a9ea483238c348f13d198e = $(`<div id="html_b17cabaf54a9ea483238c348f13d198e" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_cc7c224b319790012be7e2c65f43e5b4.setContent(html_b17cabaf54a9ea483238c348f13d198e);
marker_522a37114e9b2615a7f691fd375b24d5.bindPopup(popup_cc7c224b319790012be7e2c65f43e5b4)
;
var poly_line_7b7c118c4f813cad49cde5937fded41b = L.polyline(
[[39.9972788, -105.2801988], [39.9971888, -105.2801228], [39.9971319, -105.28014], [39.9969655, -105.2802749], [39.9967215, -105.2803532], [39.9966522, -105.2803374], [39.9965507, -105.2801949], [39.9965507, -105.2801949], [39.9964875, -105.2802179], [39.9964173, -105.2802408], [39.996355, -105.280293], [39.996283, -105.2803594], [39.9961851, -105.2804159], [39.9960399, -105.280508], [39.9957939, -105.2806459], [39.995585, -105.2808521], [39.9954084, -105.2811248], [39.9953085, -105.2812848], [39.9950104, -105.2815101], [39.9949574, -105.2815462], [39.9949574, -105.2815462], [39.9949123, -105.2815742], [39.9947327, -105.2816659], [39.9941009, -105.2817974], [39.9934318, -105.2821653], [39.9930506, -105.282171], [39.9928774, -105.2822742], [39.9928774, -105.2822742], [39.992767, -105.2824842], [39.9925765, -105.2826615], [39.9923933, -105.2830564], [39.9922831, -105.2831844], [39.9922108, -105.2834166], [39.9920441, -105.2836393], [39.9914496, -105.2841096], [39.9911546, -105.2845442], [39.9909135, -105.2847894], [39.9908134, -105.285028], [39.9907501, -105.2854442], [39.9906564, -105.2858395], [39.9903053, -105.2859355], [39.990305, -105.2861942], [39.9902841, -105.2862419], [39.9902841, -105.2862419], [39.9901794, -105.2861368], [39.9900957, -105.2860104], [39.9899708, -105.2857567], [39.98995, -105.2853439], [39.9899283, -105.2852134], [39.9899229, -105.2851487], [39.989885, -105.2850913], [39.9898206, -105.2850425], [39.9897489, -105.2850094]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_73bdbebd0d7c74b100256a6ee2e63ade = L.marker(
[39.9935708, -105.3081339],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_956006fcd439a033bcd1e4742da006b5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_73bdbebd0d7c74b100256a6ee2e63ade.setIcon(icon_956006fcd439a033bcd1e4742da006b5);
var popup_7aa54f9e7f7c8b78cf00e81870073ced = L.popup({"maxWidth": "100%"});
var html_ea9686d27c6600081362a87281a40e44 = $(`<div id="html_ea9686d27c6600081362a87281a40e44" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_7aa54f9e7f7c8b78cf00e81870073ced.setContent(html_ea9686d27c6600081362a87281a40e44);
marker_73bdbebd0d7c74b100256a6ee2e63ade.bindPopup(popup_7aa54f9e7f7c8b78cf00e81870073ced)
;
var marker_bbd89827b67306a0f2a79b3456ec0aba = L.marker(
[39.9864364, -105.3199552],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_3f6aacf94d26d31fd8596f20b6b00bb0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_bbd89827b67306a0f2a79b3456ec0aba.setIcon(icon_3f6aacf94d26d31fd8596f20b6b00bb0);
var popup_cdd8ec20ea9f1ef36aed3157ac930eea = L.popup({"maxWidth": "100%"});
var html_18aeee769700ee31e5d337953ed5ef8a = $(`<div id="html_18aeee769700ee31e5d337953ed5ef8a" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_cdd8ec20ea9f1ef36aed3157ac930eea.setContent(html_18aeee769700ee31e5d337953ed5ef8a);
marker_bbd89827b67306a0f2a79b3456ec0aba.bindPopup(popup_cdd8ec20ea9f1ef36aed3157ac930eea)
;
var poly_line_dfcb77525484e43f903fbcdf5f31e10a = L.polyline(
[[39.9935708, -105.3081339], [39.9934949, -105.3082912], [39.9934478, -105.3084653], [39.9932912, -105.3086076], [39.9933162, -105.308736], [39.9930983, -105.3089891], [39.9928258, -105.3096253], [39.992482, -105.3100125], [39.9922182, -105.310272], [39.9921212, -105.3103062], [39.9920939, -105.3103473], [39.9921506, -105.3104354], [39.9918022, -105.3105016], [39.9914209, -105.3103884], [39.991305, -105.3104485], [39.9911591, -105.3106113], [39.9908715, -105.3108075], [39.990693, -105.3111738], [39.9904387, -105.3113815], [39.9902944, -105.311587], [39.9901649, -105.3117257], [39.9899216, -105.3118583], [39.9898462, -105.3118344], [39.9896395, -105.3119726], [39.9889134, -105.3120417], [39.9888151, -105.3121168], [39.9885882, -105.3124795], [39.9882418, -105.3127163], [39.9879989, -105.3128885], [39.9879187, -105.3130069], [39.9878246, -105.3136428], [39.9878683, -105.3137172], [39.9882233, -105.3133112], [39.9883744, -105.3132409], [39.9885202, -105.3132411], [39.9887288, -105.3134115], [39.9888553, -105.3134551], [39.9890954, -105.3131941], [39.989165, -105.3133458], [39.9891019, -105.313552], [39.9890437, -105.313755], [39.988901, -105.3137897], [39.988658, -105.3137146], [39.9885306, -105.313713], [39.9884105, -105.3138037], [39.9883462, -105.3140758], [39.9883175, -105.3142342], [39.98821, -105.3143352], [39.9880729, -105.3143802], [39.9879674, -105.3145695], [39.9879813, -105.3147452], [39.9881466, -105.3146355], [39.9883331, -105.314542], [39.9884484, -105.3144479], [39.9885163, -105.3142931], [39.988666, -105.3141975], [39.988806, -105.3142387], [39.9889136, -105.3142997], [39.9890855, -105.3143191], [39.9892868, -105.3142334], [39.9894879, -105.3141135], [39.9896224, -105.313999], [39.9897561, -105.3139693], [39.9898623, -105.3141153], [39.9898582, -105.3143084], [39.9898484, -105.3144697], [39.9897504, -105.3145879], [39.9897505, -105.3146783], [39.9898993, -105.3148465], [39.9898596, -105.3150016], [39.9896691, -105.3150219], [39.9893479, -105.3148873], [39.9891495, -105.3149073], [39.9889786, -105.3150058], [39.9888094, -105.3151634], [39.988598, -105.315596], [39.9886281, -105.3161763], [39.9885882, -105.3164703], [39.9885159, -105.3167075], [39.9883744, -105.3167975], [39.9882248, -105.3167848], [39.9880248, -105.3167175], [39.9877435, -105.3166921], [39.9876017, -105.3168458], [39.9874491, -105.3169719], [39.9874313, -105.3171208], [39.9873264, -105.3172267], [39.9872569, -105.3173519], [39.9872499, -105.3174911], [39.9870263, -105.3176558], [39.9868997, -105.3178422], [39.9867901, -105.3179988], [39.9866552, -105.3181594], [39.9866262, -105.318816], [39.9864278, -105.3192046], [39.9863151, -105.3193871], [39.9863663, -105.3197963], [39.9864364, -105.3199552]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_b2ddf69df7d96d3df965d900b6b18e17 = L.marker(
[39.9978726, -105.2776488],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_2269484a3dc32409fcc811968c493e83 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_b2ddf69df7d96d3df965d900b6b18e17.setIcon(icon_2269484a3dc32409fcc811968c493e83);
var popup_0cf8cfe366c26bbc8e23d9fe68331a7c = L.popup({"maxWidth": "100%"});
var html_bf91817333a8f91b7b7c35102ca73da6 = $(`<div id="html_bf91817333a8f91b7b7c35102ca73da6" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_0cf8cfe366c26bbc8e23d9fe68331a7c.setContent(html_bf91817333a8f91b7b7c35102ca73da6);
marker_b2ddf69df7d96d3df965d900b6b18e17.bindPopup(popup_0cf8cfe366c26bbc8e23d9fe68331a7c)
;
var marker_8eaafa2aaa7f4e52f4d7c539f630d4c4 = L.marker(
[39.9902841, -105.2862419],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_06e0d8b68c551bb6a7df3e7c20bb857a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_8eaafa2aaa7f4e52f4d7c539f630d4c4.setIcon(icon_06e0d8b68c551bb6a7df3e7c20bb857a);
var popup_8be2984265821c4b358789b151d9b99b = L.popup({"maxWidth": "100%"});
var html_235a31635536233ff23612806e1886c8 = $(`<div id="html_235a31635536233ff23612806e1886c8" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_8be2984265821c4b358789b151d9b99b.setContent(html_235a31635536233ff23612806e1886c8);
marker_8eaafa2aaa7f4e52f4d7c539f630d4c4.bindPopup(popup_8be2984265821c4b358789b151d9b99b)
;
var poly_line_52065fb4b467eff8b9dfb8eef7045746 = L.polyline(
[[39.9978726, -105.2776488], [39.9978593, -105.2777662], [39.9978702, -105.2788129], [39.9976444, -105.2789707], [39.9975442, -105.2791772], [39.9972391, -105.2795083], [39.9971263, -105.2795328], [39.9968848, -105.2797834], [39.9968459, -105.2798835], [39.9967317, -105.2799115], [39.9965507, -105.2801949], [39.9965507, -105.2801949], [39.9964875, -105.2802179], [39.9964173, -105.2802408], [39.996355, -105.280293], [39.996283, -105.2803594], [39.9961851, -105.2804159], [39.9960399, -105.280508], [39.9957939, -105.2806459], [39.995585, -105.2808521], [39.9954084, -105.2811248], [39.9953085, -105.2812848], [39.9950104, -105.2815101], [39.9949574, -105.2815462], [39.9949574, -105.2815462], [39.9949123, -105.2815742], [39.9947327, -105.2816659], [39.9941009, -105.2817974], [39.9934318, -105.2821653], [39.9930506, -105.282171], [39.9928774, -105.2822742], [39.9928774, -105.2822742], [39.992767, -105.2824842], [39.9925765, -105.2826615], [39.9923933, -105.2830564], [39.9922831, -105.2831844], [39.9922108, -105.2834166], [39.9920441, -105.2836393], [39.9914496, -105.2841096], [39.9911546, -105.2845442], [39.9909135, -105.2847894], [39.9908134, -105.285028], [39.9907501, -105.2854442], [39.9906564, -105.2858395], [39.9903053, -105.2859355], [39.990305, -105.2861942], [39.9902841, -105.2862419]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_80e8981610804c987d9953c377099d19 = L.marker(
[39.9974359, -105.2925786],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_03c14758bfcf10cdd773d358c67990b5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_80e8981610804c987d9953c377099d19.setIcon(icon_03c14758bfcf10cdd773d358c67990b5);
var popup_f7a45dd4e76628b57e5c7cb63b2a4684 = L.popup({"maxWidth": "100%"});
var html_0c4752f626825eff272d20fa20c1e5a6 = $(`<div id="html_0c4752f626825eff272d20fa20c1e5a6" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_f7a45dd4e76628b57e5c7cb63b2a4684.setContent(html_0c4752f626825eff272d20fa20c1e5a6);
marker_80e8981610804c987d9953c377099d19.bindPopup(popup_f7a45dd4e76628b57e5c7cb63b2a4684)
;
var marker_068e095434561f46425debfbb319eea5 = L.marker(
[39.9895607, -105.3007923],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_8fdca86bd47fafc69bce7765a205bc8f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_068e095434561f46425debfbb319eea5.setIcon(icon_8fdca86bd47fafc69bce7765a205bc8f);
var popup_c4c6c0d612069f7e3da3d39c8d620a11 = L.popup({"maxWidth": "100%"});
var html_0c291d858e28fd02e113142bdbdfd967 = $(`<div id="html_0c291d858e28fd02e113142bdbdfd967" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_c4c6c0d612069f7e3da3d39c8d620a11.setContent(html_0c291d858e28fd02e113142bdbdfd967);
marker_068e095434561f46425debfbb319eea5.bindPopup(popup_c4c6c0d612069f7e3da3d39c8d620a11)
;
var poly_line_3d12c851cd9d3b3c353ac85325ab451c = L.polyline(
[[39.9974359, -105.2925786], [39.9973396, -105.2922918], [39.9973396, -105.2922918], [39.9973081, -105.2921933], [39.9972078, -105.2921009], [39.9969586, -105.292033], [39.9964814, -105.2917168], [39.9960962, -105.2916314], [39.995918, -105.2916761], [39.995918, -105.2916761], [39.9959585, -105.2917452], [39.9963563, -105.2921549], [39.9964848, -105.2925052], [39.9963563, -105.2926713], [39.9962276, -105.2930455], [39.9961671, -105.2929328], [39.9961004, -105.2931611], [39.9960443, -105.2930164], [39.9959966, -105.2930149], [39.9960115, -105.2931923], [39.9959254, -105.29335], [39.9958539, -105.2932927], [39.9958149, -105.2931438], [39.9956807, -105.29329], [39.9955866, -105.2932595], [39.9955007, -105.2933177], [39.9954508, -105.2931746], [39.9953695, -105.2932478], [39.9952645, -105.2930899], [39.9952645, -105.2930899], [39.9950954, -105.2933888], [39.9949015, -105.2935643], [39.9947078, -105.293862], [39.994624, -105.2942129], [39.9943627, -105.2944992], [39.9942703, -105.2948288], [39.9942978, -105.2951685], [39.9943134, -105.2953351], [39.9942604, -105.2954409], [39.9941311, -105.2956085], [39.9941311, -105.2956085], [39.9939768, -105.2957683], [39.9938996, -105.295722], [39.9938279, -105.2955779], [39.993672, -105.2956735], [39.9935459, -105.2956505], [39.9934644, -105.2957154], [39.9934058, -105.2961376], [39.9934281, -105.2963838], [39.9933757, -105.2964411], [39.9932531, -105.2964503], [39.993085, -105.296468], [39.9928219, -105.2965105], [39.9927758, -105.2965176], [39.9926973, -105.2965202], [39.9925905, -105.2965631], [39.9924569, -105.2966195], [39.9923069, -105.2966221], [39.9922021, -105.2966168], [39.992161, -105.2965899], [39.9921651, -105.2964853], [39.992163, -105.2963861], [39.9919534, -105.2965444], [39.9918075, -105.296657], [39.9915712, -105.2968233], [39.9913123, -105.2968501], [39.9912139, -105.2968535], [39.9910904, -105.2968689], [39.9909342, -105.2968769], [39.9908581, -105.2969681], [39.9908417, -105.2968421], [39.9907903, -105.2969735], [39.9907718, -105.2971318], [39.9907081, -105.2973061], [39.9907225, -105.2974268], [39.9906526, -105.2975555], [39.9907114, -105.2977383], [39.990781, -105.2978621], [39.9909125, -105.2979055], [39.990991, -105.2980819], [39.991589, -105.2988009], [39.9915112, -105.2988477], [39.9915675, -105.2988806], [39.9915483, -105.2990894], [39.9914974, -105.2991913], [39.9911523, -105.2990665], [39.9910865, -105.299122], [39.9908322, -105.2991272], [39.9907565, -105.2991926], [39.9905619, -105.2991664], [39.9905031, -105.299312], [39.9903437, -105.2995008], [39.9902518, -105.2995586], [39.9900911, -105.299661], [39.9899258, -105.2998674], [39.9897936, -105.3001601], [39.9896685, -105.3006408], [39.9895607, -105.3007923]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_0f8417a60213eb951fa780c931812c31 = L.marker(
[39.9974359, -105.2925786],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_3065709e60fe249d1e3198b872c64fe4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_0f8417a60213eb951fa780c931812c31.setIcon(icon_3065709e60fe249d1e3198b872c64fe4);
var popup_af17f24d502915c62488884662e68cea = L.popup({"maxWidth": "100%"});
var html_75ec964fbb77c5b6bf8ef438caf8f426 = $(`<div id="html_75ec964fbb77c5b6bf8ef438caf8f426" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_af17f24d502915c62488884662e68cea.setContent(html_75ec964fbb77c5b6bf8ef438caf8f426);
marker_0f8417a60213eb951fa780c931812c31.bindPopup(popup_af17f24d502915c62488884662e68cea)
;
var marker_fb345ff98cbbb1272b402c3ef38e5903 = L.marker(
[39.9895607, -105.3007923],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_55a742e15675a6cf49ed51105a8d9158 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_fb345ff98cbbb1272b402c3ef38e5903.setIcon(icon_55a742e15675a6cf49ed51105a8d9158);
var popup_17c8c3769d102cefc13cc872e38a1e94 = L.popup({"maxWidth": "100%"});
var html_26a79f70a7218fe79c70dbb72a96cbd3 = $(`<div id="html_26a79f70a7218fe79c70dbb72a96cbd3" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_17c8c3769d102cefc13cc872e38a1e94.setContent(html_26a79f70a7218fe79c70dbb72a96cbd3);
marker_fb345ff98cbbb1272b402c3ef38e5903.bindPopup(popup_17c8c3769d102cefc13cc872e38a1e94)
;
var poly_line_f977ebf45336eeb6d53ef5eb97fcd516 = L.polyline(
[[39.9974359, -105.2925786], [39.9973396, -105.2922918], [39.9973396, -105.2922918], [39.9973081, -105.2921933], [39.9972078, -105.2921009], [39.9969586, -105.292033], [39.9964814, -105.2917168], [39.9960962, -105.2916314], [39.995918, -105.2916761], [39.995918, -105.2916761], [39.9957329, -105.2917604], [39.9956543, -105.2918524], [39.9956082, -105.2919551], [39.9955974, -105.2920754], [39.9956272, -105.2922417], [39.9956051, -105.2923155], [39.9955969, -105.2924241], [39.9955784, -105.2925649], [39.9955168, -105.292636], [39.9955135, -105.2927191], [39.9955161, -105.2928372], [39.9954575, -105.2928982], [39.9953579, -105.2928794], [39.9953193, -105.2929518], [39.9952726, -105.2929854], [39.9952645, -105.2930899], [39.9952645, -105.2930899], [39.9950954, -105.2933888], [39.9949015, -105.2935643], [39.9947078, -105.293862], [39.994624, -105.2942129], [39.9943627, -105.2944992], [39.9942703, -105.2948288], [39.9942978, -105.2951685], [39.9943134, -105.2953351], [39.9942604, -105.2954409], [39.9941311, -105.2956085], [39.9941311, -105.2956085], [39.9939768, -105.2957683], [39.9938996, -105.295722], [39.9938279, -105.2955779], [39.993672, -105.2956735], [39.9935459, -105.2956505], [39.9934644, -105.2957154], [39.9934058, -105.2961376], [39.9934281, -105.2963838], [39.9933757, -105.2964411], [39.9932531, -105.2964503], [39.993085, -105.296468], [39.9928219, -105.2965105], [39.9927758, -105.2965176], [39.9926973, -105.2965202], [39.9925905, -105.2965631], [39.9924569, -105.2966195], [39.9923069, -105.2966221], [39.9922021, -105.2966168], [39.992161, -105.2965899], [39.9921651, -105.2964853], [39.992163, -105.2963861], [39.9919534, -105.2965444], [39.9918075, -105.296657], [39.9915712, -105.2968233], [39.9913123, -105.2968501], [39.9912139, -105.2968535], [39.9910904, -105.2968689], [39.9909342, -105.2968769], [39.9908581, -105.2969681], [39.9908417, -105.2968421], [39.9907903, -105.2969735], [39.9907718, -105.2971318], [39.9907081, -105.2973061], [39.9907225, -105.2974268], [39.9906526, -105.2975555], [39.9907114, -105.2977383], [39.990781, -105.2978621], [39.9909125, -105.2979055], [39.990991, -105.2980819], [39.991589, -105.2988009], [39.9915112, -105.2988477], [39.9915675, -105.2988806], [39.9915483, -105.2990894], [39.9914974, -105.2991913], [39.9911523, -105.2990665], [39.9910865, -105.299122], [39.9908322, -105.2991272], [39.9907565, -105.2991926], [39.9905619, -105.2991664], [39.9905031, -105.299312], [39.9903437, -105.2995008], [39.9902518, -105.2995586], [39.9900911, -105.299661], [39.9899258, -105.2998674], [39.9897936, -105.3001601], [39.9896685, -105.3006408], [39.9895607, -105.3007923]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_50af50d67944bd90c16857b2e00abd0e = L.marker(
[39.9856735, -105.2777543],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_cd1a5f3a273d5ba0a42e409d0823f551 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_50af50d67944bd90c16857b2e00abd0e.setIcon(icon_cd1a5f3a273d5ba0a42e409d0823f551);
var popup_f5d7ec00a2a0f2cf9445377fc79139ae = L.popup({"maxWidth": "100%"});
var html_be9b0ee128f1c0255241c7460462c115 = $(`<div id="html_be9b0ee128f1c0255241c7460462c115" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_f5d7ec00a2a0f2cf9445377fc79139ae.setContent(html_be9b0ee128f1c0255241c7460462c115);
marker_50af50d67944bd90c16857b2e00abd0e.bindPopup(popup_f5d7ec00a2a0f2cf9445377fc79139ae)
;
var marker_d69bd6d88196391c6736177857864cc9 = L.marker(
[39.9796464, -105.2845093],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_9a49521f64a355955e453ed818bf9ab3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_d69bd6d88196391c6736177857864cc9.setIcon(icon_9a49521f64a355955e453ed818bf9ab3);
var popup_8d686477c3f530af11217c630dcbc33e = L.popup({"maxWidth": "100%"});
var html_0f594989ec0d9a236993e8ab962c1e1a = $(`<div id="html_0f594989ec0d9a236993e8ab962c1e1a" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_8d686477c3f530af11217c630dcbc33e.setContent(html_0f594989ec0d9a236993e8ab962c1e1a);
marker_d69bd6d88196391c6736177857864cc9.bindPopup(popup_8d686477c3f530af11217c630dcbc33e)
;
var poly_line_d485dda8783bee91d5521b777a8de445 = L.polyline(
[[39.9856735, -105.2777543], [39.985892, -105.277635], [39.986008, -105.277594], [39.986084, -105.277535], [39.9861572, -105.2773614], [39.9861572, -105.2773614], [39.985999, -105.277791], [39.98598, -105.278088], [39.98596, -105.278194], [39.985871, -105.278408], [39.985851, -105.278482], [39.9858132, -105.2786078], [39.9858087, -105.278693], [39.9858177, -105.2787397], [39.9858364, -105.2787455], [39.9858579, -105.2787035], [39.9858883, -105.2786276], [39.985937, -105.278564], [39.986097, -105.278292], [39.9862086, -105.278045], [39.986306, -105.277879], [39.9864143, -105.2777497], [39.986493, -105.2776189], [39.9865476, -105.27748], [39.9865744, -105.2774753], [39.9865664, -105.2775384], [39.9865467, -105.2776212], [39.986519, -105.2777053], [39.9864787, -105.2778186], [39.986447, -105.277943], [39.986435, -105.278034], [39.986255, -105.278602], [39.986222, -105.278948], [39.986234, -105.279093], [39.986267, -105.279169], [39.986366, -105.279316], [39.9864133, -105.2794928], [39.9864411, -105.2796229], [39.9864445, -105.2797113], [39.9864249, -105.2797918], [39.986359, -105.279851], [39.9862452, -105.2798936], [39.9862452, -105.2798936], [39.986175, -105.279923], [39.986091, -105.279959], [39.985994, -105.280058], [39.985954, -105.280135], [39.985908, -105.280275], [39.985819, -105.280677], [39.98575, -105.280867], [39.985699, -105.281185], [39.985638, -105.281403], [39.985521, -105.281701], [39.985487, -105.281831], [39.985469, -105.282174], [39.9853658, -105.2824625], [39.985295, -105.282748], [39.985249, -105.28286], [39.9851602, -105.2829758], [39.9850647, -105.2831508], [39.984921, -105.283328], [39.9848864, -105.2834044], [39.9848822, -105.2834661], [39.9848997, -105.2834969], [39.9849295, -105.2834902], [39.9849603, -105.2834661], [39.9849963, -105.2834366], [39.9850096, -105.2834423], [39.985023, -105.2834584], [39.9850229, -105.2834817], [39.9850045, -105.2835331], [39.985009, -105.283588], [39.985005, -105.28368], [39.9849958, -105.2837664], [39.984966, -105.283836], [39.9848726, -105.2839546], [39.984842, -105.284034], [39.9846739, -105.2846428], [39.9845913, -105.2849559], [39.9845368, -105.2851002], [39.9845424, -105.2851357], [39.9845689, -105.2851317], [39.9846723, -105.2849945], [39.9847938, -105.2848176], [39.9848187, -105.2848095], [39.984828, -105.2848217], [39.984753, -105.285037], [39.984642, -105.285448], [39.984606, -105.28571], [39.984572, -105.286338], [39.984528, -105.286549], [39.984492, -105.286639], [39.984414, -105.286704], [39.984359, -105.286676], [39.984183, -105.286402], [39.984123, -105.286359], [39.984033, -105.286355], [39.983995, -105.286374], [39.983844, -105.286532], [39.983689, -105.286721], [39.983467, -105.286917], [39.983328, -105.287015], [39.9832657, -105.2870649], [39.9832017, -105.2870451], [39.983154, -105.286974], [39.983111, -105.2869], [39.983055, -105.286743], [39.982911, -105.285994], [39.982856, -105.285599], [39.982803, -105.285429], [39.982757, -105.285365], [39.982694, -105.285336], [39.982463, -105.285339], [39.9823501, -105.2852862], [39.982294, -105.285329], [39.982294, -105.285329], [39.982189, -105.285245], [39.981942, -105.285123], [39.9818228, -105.2850331], [39.9816513, -105.2848944], [39.981517, -105.2848057], [39.9813596, -105.2847106], [39.9811607, -105.2845811], [39.980984, -105.2844329], [39.9808177, -105.2842899], [39.9807387, -105.284184], [39.9806003, -105.2840608], [39.9804729, -105.2839651], [39.9802858, -105.2838693], [39.9801063, -105.2839097], [39.9798907, -105.2840563], [39.979777, -105.2841448], [39.9797269, -105.2842901], [39.9796464, -105.2845093]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_f62d848ece2dbdc281cf2f5db29a0dda = L.marker(
[39.9901857, -105.2870146],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_aec493c69dd3eecde7dd21e6e50cc188 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_f62d848ece2dbdc281cf2f5db29a0dda.setIcon(icon_aec493c69dd3eecde7dd21e6e50cc188);
var popup_7b676003b2041e48abd0c109f498dd29 = L.popup({"maxWidth": "100%"});
var html_5334cfa763985173f6b18ce971c25ed2 = $(`<div id="html_5334cfa763985173f6b18ce971c25ed2" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_7b676003b2041e48abd0c109f498dd29.setContent(html_5334cfa763985173f6b18ce971c25ed2);
marker_f62d848ece2dbdc281cf2f5db29a0dda.bindPopup(popup_7b676003b2041e48abd0c109f498dd29)
;
var marker_bf537519f267ead671391432994a3324 = L.marker(
[39.9853857, -105.2882209],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_1e7b65453d836572f965c37b1d3c3bc2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_bf537519f267ead671391432994a3324.setIcon(icon_1e7b65453d836572f965c37b1d3c3bc2);
var popup_1fbe63a721e6642df095a19e06e87c31 = L.popup({"maxWidth": "100%"});
var html_aa13e62924170db26cab4ba0484ebba2 = $(`<div id="html_aa13e62924170db26cab4ba0484ebba2" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_1fbe63a721e6642df095a19e06e87c31.setContent(html_aa13e62924170db26cab4ba0484ebba2);
marker_bf537519f267ead671391432994a3324.bindPopup(popup_1fbe63a721e6642df095a19e06e87c31)
;
var poly_line_24e93d7436074fa3524404e04ff89bf5 = L.polyline(
[[39.9901857, -105.2870146], [39.9902201, -105.2870606], [39.9901857, -105.2870146], [39.9903098, -105.2867964], [39.9903684, -105.286693], [39.9903901, -105.2865313], [39.9902841, -105.2862419], [39.9902841, -105.2862419], [39.9901794, -105.2861368], [39.9900957, -105.2860104], [39.9899708, -105.2857567], [39.98995, -105.2853439], [39.9899283, -105.2852134], [39.9899229, -105.2851487], [39.989885, -105.2850913], [39.9898206, -105.2850425], [39.9897489, -105.2850094], [39.9897489, -105.2850094], [39.9893642, -105.285085], [39.9892327, -105.285197], [39.9890542, -105.2851901], [39.9889535, -105.2852053], [39.9888746, -105.2852415], [39.9885918, -105.2853239], [39.9882252, -105.2853445], [39.9879096, -105.285391], [39.9876245, -105.2855447], [39.9875626, -105.2856349], [39.9875626, -105.2856349], [39.9874925, -105.2857984], [39.9874925, -105.2857984], [39.9875187, -105.2859109], [39.9875957, -105.286165], [39.9873966, -105.287108], [39.9874601, -105.2873749], [39.987458, -105.2875074], [39.9871461, -105.2877379], [39.9869934, -105.2878028], [39.9868327, -105.2878368], [39.986332, -105.2879221], [39.98612, -105.2879387], [39.9858446, -105.2879933], [39.9856782, -105.2880523], [39.985556, -105.2881384], [39.9853857, -105.2882209]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_fc1164cd0277433ff2c08ba1d115f17a = L.marker(
[39.9901857, -105.2870146],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_b5965ad502cef5e2ad07600dbb8b8f42 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_fc1164cd0277433ff2c08ba1d115f17a.setIcon(icon_b5965ad502cef5e2ad07600dbb8b8f42);
var popup_48639f059e8b8b8b2c43f1866d466c93 = L.popup({"maxWidth": "100%"});
var html_3b8497ec16fb47edd4678613d2b6e1e8 = $(`<div id="html_3b8497ec16fb47edd4678613d2b6e1e8" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_48639f059e8b8b8b2c43f1866d466c93.setContent(html_3b8497ec16fb47edd4678613d2b6e1e8);
marker_fc1164cd0277433ff2c08ba1d115f17a.bindPopup(popup_48639f059e8b8b8b2c43f1866d466c93)
;
var marker_6866264fdb502562402ce52c3e392064 = L.marker(
[39.9822414, -105.289278],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_6a228274d83b8fcb0d6ea9f7c4b45c76 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_6866264fdb502562402ce52c3e392064.setIcon(icon_6a228274d83b8fcb0d6ea9f7c4b45c76);
var popup_167cf3682498a866bb973ed924dbed91 = L.popup({"maxWidth": "100%"});
var html_b8e02b6e2473a9daecf7f09d59a191f6 = $(`<div id="html_b8e02b6e2473a9daecf7f09d59a191f6" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_167cf3682498a866bb973ed924dbed91.setContent(html_b8e02b6e2473a9daecf7f09d59a191f6);
marker_6866264fdb502562402ce52c3e392064.bindPopup(popup_167cf3682498a866bb973ed924dbed91)
;
var poly_line_e29c130a80b8925804db643c46cb70ef = L.polyline(
[[39.9901857, -105.2870146], [39.9902201, -105.2870606], [39.9901857, -105.2870146], [39.9903098, -105.2867964], [39.9903684, -105.286693], [39.9903901, -105.2865313], [39.9902841, -105.2862419], [39.9902841, -105.2862419], [39.9901794, -105.2861368], [39.9900957, -105.2860104], [39.9899708, -105.2857567], [39.98995, -105.2853439], [39.9899283, -105.2852134], [39.9899229, -105.2851487], [39.989885, -105.2850913], [39.9898206, -105.2850425], [39.9897489, -105.2850094], [39.9897489, -105.2850094], [39.9893642, -105.285085], [39.9892327, -105.285197], [39.9890542, -105.2851901], [39.9889535, -105.2852053], [39.9888746, -105.2852415], [39.9885918, -105.2853239], [39.9882252, -105.2853445], [39.9879096, -105.285391], [39.9876245, -105.2855447], [39.9875626, -105.2856349], [39.9875626, -105.2856349], [39.9874925, -105.2857984], [39.9874925, -105.2857984], [39.9873506, -105.2860562], [39.9870759, -105.2860974], [39.9867474, -105.2861674], [39.9864439, -105.2861657], [39.9859839, -105.285889], [39.9856963, -105.285871], [39.9855816, -105.2858874], [39.9855816, -105.2858874], [39.9854553, -105.2859534], [39.9854553, -105.2859534], [39.98521, -105.286457], [39.985161, -105.286706], [39.985101, -105.286825], [39.984996, -105.286977], [39.984864, -105.287233], [39.984809, -105.287394], [39.984655, -105.287529], [39.984517, -105.287713], [39.984322, -105.287899], [39.984258, -105.287928], [39.984197, -105.287885], [39.984105, -105.28767], [39.983956, -105.287478], [39.983896, -105.287433], [39.9838112, -105.2874245], [39.9838112, -105.2874245], [39.9837221, -105.2874692], [39.9836287, -105.2875353], [39.9834852, -105.2876036], [39.9832779, -105.2876993], [39.9831412, -105.2878041], [39.9830501, -105.2878747], [39.9829567, -105.2879408], [39.9828086, -105.2880182], [39.982722, -105.2881002], [39.9826355, -105.2881936], [39.9825876, -105.2882643], [39.9825808, -105.2883508], [39.9826195, -105.2884829], [39.9825717, -105.2885991], [39.9825626, -105.2887882], [39.9824942, -105.2888406], [39.9824578, -105.2889158], [39.9823553, -105.2889363], [39.9822983, -105.2890319], [39.9822391, -105.2891868], [39.9822414, -105.289278]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_baa57a927de7b8aa09a7533a51200d08 = L.marker(
[39.9901857, -105.2870146],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_493c39c2a6343ca60b34626c33b285fb = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_baa57a927de7b8aa09a7533a51200d08.setIcon(icon_493c39c2a6343ca60b34626c33b285fb);
var popup_aa289a14ba440827b70c38aa023fd864 = L.popup({"maxWidth": "100%"});
var html_594177f906f42c8a0b0e804b236683a8 = $(`<div id="html_594177f906f42c8a0b0e804b236683a8" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_aa289a14ba440827b70c38aa023fd864.setContent(html_594177f906f42c8a0b0e804b236683a8);
marker_baa57a927de7b8aa09a7533a51200d08.bindPopup(popup_aa289a14ba440827b70c38aa023fd864)
;
var marker_e04f46a59a0326c709675b3af71b6eb6 = L.marker(
[39.9894918, -105.2906023],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_f68df335d5e63320c67d172fac820ecf = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_e04f46a59a0326c709675b3af71b6eb6.setIcon(icon_f68df335d5e63320c67d172fac820ecf);
var popup_8ff6a111d8a31f60d44c050a3096d4ae = L.popup({"maxWidth": "100%"});
var html_cb6986006d9322997341ade0cb3c2d23 = $(`<div id="html_cb6986006d9322997341ade0cb3c2d23" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_8ff6a111d8a31f60d44c050a3096d4ae.setContent(html_cb6986006d9322997341ade0cb3c2d23);
marker_e04f46a59a0326c709675b3af71b6eb6.bindPopup(popup_8ff6a111d8a31f60d44c050a3096d4ae)
;
var poly_line_c849d3a695af401306a0c9b910acbb0d = L.polyline(
[[39.9901857, -105.2870146], [39.9902201, -105.2870606], [39.9902201, -105.2870606], [39.9903485, -105.2870181], [39.9905355, -105.2869028], [39.9909181, -105.2865497], [39.9910944, -105.2863475], [39.9911816, -105.2862082], [39.9912346, -105.2859998], [39.9914524, -105.2855197], [39.9916027, -105.2854212], [39.9916604, -105.2854363], [39.9916604, -105.2854363], [39.991597, -105.285552], [39.991577, -105.285656], [39.991591, -105.28575], [39.991606, -105.285781], [39.99162, -105.285811], [39.9917624, -105.2859955], [39.9917624, -105.2859955], [39.9917832, -105.286085], [39.9917836, -105.2861848], [39.9917729, -105.2862702], [39.9917511, -105.2863492], [39.9917261, -105.2863995], [39.9916734, -105.2864589], [39.9916031, -105.2865055], [39.9915479, -105.2865363], [39.9914683, -105.2865777], [39.991375, -105.2866285], [39.9912745, -105.2866813], [39.9911996, -105.2867221], [39.9911302, -105.286763], [39.9910613, -105.2868792], [39.9909887, -105.2870281], [39.99093, -105.2871077], [39.9908959, -105.2871929], [39.9908991, -105.2872888], [39.9909259, -105.2873613], [39.9909437, -105.2874096], [39.9909622, -105.2874408], [39.9909766, -105.2874603], [39.9909979, -105.2874685], [39.9910704, -105.287453], [39.9910704, -105.287453], [39.9910827, -105.2874737], [39.9910951, -105.2875048], [39.9911081, -105.2876033], [39.9911379, -105.2877036], [39.9911658, -105.2877854], [39.9911806, -105.2879193], [39.9911806, -105.2879193], [39.9911546, -105.2879992], [39.991097, -105.2880419], [39.9910134, -105.2880475], [39.9908925, -105.2880345], [39.9907566, -105.2880617], [39.9906822, -105.2881071], [39.9906527, -105.2881275], [39.9906044, -105.2882966], [39.9905263, -105.2884063], [39.9904557, -105.2884416], [39.9903646, -105.2884435], [39.9902847, -105.2884416], [39.9901193, -105.2884283], [39.9899605, -105.2884523], [39.989859, -105.2884249], [39.989781, -105.2884639], [39.989675, -105.2884732], [39.9895821, -105.2884843], [39.9894817, -105.2885178], [39.9893646, -105.2885234], [39.9892847, -105.2885866], [39.9892553, -105.2885921], [39.9892553, -105.2885921], [39.9892429, -105.2886162], [39.989241, -105.2886335], [39.989241, -105.2886335], [39.9893588, -105.2886692], [39.9895211, -105.288763], [39.9898363, -105.2889414], [39.9900371, -105.2891471], [39.9901095, -105.2893207], [39.9900715, -105.2894458], [39.9900385, -105.2893939], [39.9900029, -105.2893684], [39.9899498, -105.2894598], [39.9896203, -105.289714], [39.9895592, -105.2898567], [39.9895034, -105.2900153], [39.9895137, -105.2901283], [39.9895123, -105.2901726], [39.989563, -105.2902884], [39.9895523, -105.2903768], [39.9895211, -105.2903793], [39.9895066, -105.2903955], [39.9895002, -105.2904463], [39.9894802, -105.290514], [39.9894918, -105.2906023]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_0590e6d4318e6b457b09be9af98d433b = L.marker(
[39.9901857, -105.2870146],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_9213830e42f5d6b9a87784c0e0d32d91 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_0590e6d4318e6b457b09be9af98d433b.setIcon(icon_9213830e42f5d6b9a87784c0e0d32d91);
var popup_9cf0a739f6e4bb755c9a1c3a59a3a57d = L.popup({"maxWidth": "100%"});
var html_3e053bb86f936383878dca2db75401d3 = $(`<div id="html_3e053bb86f936383878dca2db75401d3" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_9cf0a739f6e4bb755c9a1c3a59a3a57d.setContent(html_3e053bb86f936383878dca2db75401d3);
marker_0590e6d4318e6b457b09be9af98d433b.bindPopup(popup_9cf0a739f6e4bb755c9a1c3a59a3a57d)
;
var marker_146720ff261fcda6f593d9a2ae82a91a = L.marker(
[39.9894918, -105.2906023],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_be1dca310a55d1fb87f36238983ba2d5 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_146720ff261fcda6f593d9a2ae82a91a.setIcon(icon_be1dca310a55d1fb87f36238983ba2d5);
var popup_c487028fcccecd99729da085ff0cae6e = L.popup({"maxWidth": "100%"});
var html_839f28e86de48ff6bfbe80812137a650 = $(`<div id="html_839f28e86de48ff6bfbe80812137a650" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_c487028fcccecd99729da085ff0cae6e.setContent(html_839f28e86de48ff6bfbe80812137a650);
marker_146720ff261fcda6f593d9a2ae82a91a.bindPopup(popup_c487028fcccecd99729da085ff0cae6e)
;
var poly_line_dcc7aa8f499282b0fd4991ea51ad34f4 = L.polyline(
[[39.9901857, -105.2870146], [39.9902201, -105.2870606], [39.9902201, -105.2870606], [39.9903485, -105.2870181], [39.9905355, -105.2869028], [39.9909181, -105.2865497], [39.9910944, -105.2863475], [39.9911816, -105.2862082], [39.9912346, -105.2859998], [39.9914524, -105.2855197], [39.9916027, -105.2854212], [39.9916604, -105.2854363], [39.9916604, -105.2854363], [39.991597, -105.285552], [39.991577, -105.285656], [39.991591, -105.28575], [39.991606, -105.285781], [39.99162, -105.285811], [39.9917624, -105.2859955], [39.9917624, -105.2859955], [39.9917832, -105.286085], [39.9917836, -105.2861848], [39.9917729, -105.2862702], [39.9917511, -105.2863492], [39.9917261, -105.2863995], [39.9916734, -105.2864589], [39.9916031, -105.2865055], [39.9915479, -105.2865363], [39.9914683, -105.2865777], [39.991375, -105.2866285], [39.9912745, -105.2866813], [39.9911996, -105.2867221], [39.9911302, -105.286763], [39.9910613, -105.2868792], [39.9909887, -105.2870281], [39.99093, -105.2871077], [39.9908959, -105.2871929], [39.9908991, -105.2872888], [39.9909259, -105.2873613], [39.9909437, -105.2874096], [39.9909622, -105.2874408], [39.9909766, -105.2874603], [39.9909979, -105.2874685], [39.9910704, -105.287453], [39.9910704, -105.287453], [39.9910827, -105.2874737], [39.9910951, -105.2875048], [39.9911081, -105.2876033], [39.9911379, -105.2877036], [39.9911658, -105.2877854], [39.9911806, -105.2879193], [39.9911806, -105.2879193], [39.9911546, -105.2879992], [39.991097, -105.2880419], [39.9910134, -105.2880475], [39.9908925, -105.2880345], [39.9907566, -105.2880617], [39.9906822, -105.2881071], [39.9906527, -105.2881275], [39.9906044, -105.2882966], [39.9905263, -105.2884063], [39.9904557, -105.2884416], [39.9903646, -105.2884435], [39.9902847, -105.2884416], [39.9901193, -105.2884283], [39.9899605, -105.2884523], [39.989859, -105.2884249], [39.989781, -105.2884639], [39.989675, -105.2884732], [39.9895821, -105.2884843], [39.9894817, -105.2885178], [39.9893646, -105.2885234], [39.9892847, -105.2885866], [39.9892553, -105.2885921], [39.989241, -105.2886335], [39.9893588, -105.2886692], [39.9895211, -105.288763], [39.9898363, -105.2889414], [39.9900371, -105.2891471], [39.9901095, -105.2893207], [39.9900715, -105.2894458], [39.9900385, -105.2893939], [39.9900029, -105.2893684], [39.9899498, -105.2894598], [39.9896203, -105.289714], [39.9895592, -105.2898567], [39.9895034, -105.2900153], [39.9895137, -105.2901283], [39.9895123, -105.2901726], [39.989563, -105.2902884], [39.9895523, -105.2903768], [39.9895211, -105.2903793], [39.9895066, -105.2903955], [39.9895002, -105.2904463], [39.9894802, -105.290514], [39.9894918, -105.2906023]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_211ad41ded92e733230e848c5c1d731a = L.marker(
[39.9415312, -105.260856],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_cfa54f6e11d020b61537f7bb9be9456c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_211ad41ded92e733230e848c5c1d731a.setIcon(icon_cfa54f6e11d020b61537f7bb9be9456c);
var popup_3dc82c9b887f31cbd6b80958d9fc168b = L.popup({"maxWidth": "100%"});
var html_38fb27224146e15bc978d4705a2b1177 = $(`<div id="html_38fb27224146e15bc978d4705a2b1177" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_3dc82c9b887f31cbd6b80958d9fc168b.setContent(html_38fb27224146e15bc978d4705a2b1177);
marker_211ad41ded92e733230e848c5c1d731a.bindPopup(popup_3dc82c9b887f31cbd6b80958d9fc168b)
;
var marker_4605c8aa6eb42cb0fe620dedf580bae8 = L.marker(
[39.9446424, -105.2746277],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_67e1405233e404b7911ec4549ca41d06 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_4605c8aa6eb42cb0fe620dedf580bae8.setIcon(icon_67e1405233e404b7911ec4549ca41d06);
var popup_9f12439af820bebe9e4a033b2b2bcbeb = L.popup({"maxWidth": "100%"});
var html_22bc052d1e9242a2ca4ff8be41bb1fc8 = $(`<div id="html_22bc052d1e9242a2ca4ff8be41bb1fc8" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_9f12439af820bebe9e4a033b2b2bcbeb.setContent(html_22bc052d1e9242a2ca4ff8be41bb1fc8);
marker_4605c8aa6eb42cb0fe620dedf580bae8.bindPopup(popup_9f12439af820bebe9e4a033b2b2bcbeb)
;
var poly_line_188cbd762b0686812455007d2195c7ae = L.polyline(
[[39.9415312, -105.260856], [39.9415076, -105.2609864], [39.9414887, -105.2610604], [39.9414958, -105.2611189], [39.9414675, -105.2611713], [39.9414486, -105.2612298], [39.9414911, -105.2613438], [39.9415029, -105.2614301], [39.9414698, -105.261578], [39.9413943, -105.2617505], [39.9413328, -105.26192], [39.9413754, -105.2619939], [39.9413895, -105.2620648], [39.9413565, -105.2622774], [39.9413376, -105.2624653], [39.9414533, -105.2626132], [39.9414344, -105.2627857], [39.9413583, -105.2628987], [39.9412608, -105.2629522], [39.941044, -105.2630371], [39.9408829, -105.2630255], [39.940586, -105.263008], [39.9403414, -105.2631118], [39.9399145, -105.2638511], [39.9398228, -105.2641269], [39.939716, -105.2648412], [39.9396763, -105.2654961], [39.9394467, -105.2658554], [39.9394171, -105.26614], [39.9394643, -105.2662276], [39.9395198, -105.266106], [39.939674, -105.2660033], [39.9399751, -105.265653], [39.9400391, -105.2655127], [39.9403627, -105.2656608], [39.9405157, -105.2656514], [39.9406514, -105.2655924], [39.9409342, -105.2653255], [39.9408617, -105.2657258], [39.9409376, -105.2659558], [39.9409431, -105.2661172], [39.9410582, -105.2661943], [39.9411261, -105.2663466], [39.9412959, -105.2665083], [39.9415249, -105.2669428], [39.941482, -105.2672387], [39.9414944, -105.2679288], [39.9414224, -105.268394], [39.9415273, -105.2691288], [39.9414807, -105.2694686], [39.9416188, -105.2697294], [39.9417058, -105.2700269], [39.9417887, -105.2704412], [39.9417773, -105.270748], [39.9421701, -105.271377], [39.9423393, -105.2717519], [39.9424753, -105.2718058], [39.9427189, -105.2722963], [39.9428111, -105.2727596], [39.942988, -105.2732294], [39.9431278, -105.2732757], [39.9433302, -105.2734496], [39.9435406, -105.2739951], [39.9435224, -105.2744112], [39.9433696, -105.2754696], [39.9433924, -105.2756674], [39.9436318, -105.2758828], [39.9437045, -105.2760328], [39.9437222, -105.2762282], [39.9440018, -105.2761037], [39.9443639, -105.2753496], [39.944493, -105.2752946], [39.9446541, -105.2753506], [39.944721, -105.2752523], [39.9447394, -105.2749715], [39.9447016, -105.2748029], [39.9446127, -105.2746648], [39.9446424, -105.2746277]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_b65ffdb84f74ed4d8a45a792f340297a = L.marker(
[39.973329, -105.306876],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_5bd69f0de684079ef7ecac8053e62f6d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_b65ffdb84f74ed4d8a45a792f340297a.setIcon(icon_5bd69f0de684079ef7ecac8053e62f6d);
var popup_62cb1806b1beeefc7348555aeb38f92a = L.popup({"maxWidth": "100%"});
var html_69428d314e432b469d55e05e43039f72 = $(`<div id="html_69428d314e432b469d55e05e43039f72" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_62cb1806b1beeefc7348555aeb38f92a.setContent(html_69428d314e432b469d55e05e43039f72);
marker_b65ffdb84f74ed4d8a45a792f340297a.bindPopup(popup_62cb1806b1beeefc7348555aeb38f92a)
;
var marker_00d292b2a7f35567ec28f5e3d6ab31b9 = L.marker(
[39.9825737, -105.3087609],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_4982fc160096fe55021c070bd4d9c2a6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_00d292b2a7f35567ec28f5e3d6ab31b9.setIcon(icon_4982fc160096fe55021c070bd4d9c2a6);
var popup_645d2b1bcd9374d0c05971a2043ea177 = L.popup({"maxWidth": "100%"});
var html_2c3048ca62bd7127b0bfd357807f54b0 = $(`<div id="html_2c3048ca62bd7127b0bfd357807f54b0" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_645d2b1bcd9374d0c05971a2043ea177.setContent(html_2c3048ca62bd7127b0bfd357807f54b0);
marker_00d292b2a7f35567ec28f5e3d6ab31b9.bindPopup(popup_645d2b1bcd9374d0c05971a2043ea177)
;
var poly_line_10959f1e3736e54c4631e0ffdbfefba1 = L.polyline(
[[39.973329, -105.306876], [39.9733587, -105.3069229], [39.9733587, -105.3069229], [39.9734638, -105.3070899], [39.973463, -105.3069136], [39.9737615, -105.3066543], [39.9738583, -105.3065079], [39.9738865, -105.3063566], [39.9738718, -105.3059338], [39.9738317, -105.305748], [39.9737805, -105.3056643], [39.973756, -105.3055187], [39.9738278, -105.3056244], [39.9739312, -105.3057757], [39.9740717, -105.3062538], [39.9741065, -105.3066035], [39.9740798, -105.3069519], [39.974204, -105.3070973], [39.97437, -105.3071316], [39.9745689, -105.3072004], [39.9747036, -105.3073371], [39.9748232, -105.3073903], [39.9749868, -105.3075979], [39.9750069, -105.3075802], [39.9750007, -105.3074931], [39.9751436, -105.3075904], [39.9751418, -105.3075437], [39.9750419, -105.3074477], [39.9751623, -105.3074383], [39.9752468, -105.3074502], [39.9753148, -105.3074379], [39.975362, -105.3074006], [39.9754138, -105.307272], [39.975556, -105.3069815], [39.9758388, -105.3068015], [39.9759666, -105.3067925], [39.9762957, -105.3067713], [39.9765405, -105.3066698], [39.9768169, -105.3066222], [39.976964, -105.306537], [39.9770823, -105.3064499], [39.9773015, -105.3063438], [39.9773236, -105.3063841], [39.9772418, -105.3066619], [39.9772171, -105.3069889], [39.9771169, -105.3070711], [39.9769922, -105.3072728], [39.9767907, -105.3075118], [39.9766627, -105.307598], [39.9766312, -105.307741], [39.9765199, -105.3078809], [39.976445, -105.3079768], [39.9764827, -105.3080152], [39.9765312, -105.3080094], [39.9766397, -105.307974], [39.9767083, -105.307896], [39.9768204, -105.3078169], [39.9769408, -105.307755], [39.9770276, -105.3079022], [39.9770384, -105.3080591], [39.9771112, -105.3081509], [39.9773497, -105.3082835], [39.9774631, -105.3082595], [39.9774858, -105.3083531], [39.9774464, -105.3085039], [39.977456, -105.3086699], [39.9775848, -105.3088027], [39.9775848, -105.3088027], [39.9778691, -105.3087601], [39.9779096, -105.308654], [39.977849, -105.3084716], [39.9778525, -105.3083034], [39.977861, -105.3080961], [39.9777287, -105.3080947], [39.9776146, -105.307738], [39.977682, -105.3075438], [39.9778238, -105.3073802], [39.9778697, -105.3072647], [39.9777924, -105.3070079], [39.9778721, -105.3069485], [39.9780191, -105.3071791], [39.9780417, -105.3074258], [39.9781279, -105.3075965], [39.9782339, -105.307702], [39.9783011, -105.3078991], [39.9785037, -105.3081044], [39.9786635, -105.3080829], [39.9788253, -105.3079495], [39.9789584, -105.3074446], [39.9794017, -105.3068987], [39.979797, -105.3067204], [39.9802224, -105.3063932], [39.9806346, -105.3061752], [39.980617, -105.3065166], [39.9807268, -105.3068969], [39.9806246, -105.3070708], [39.9805657, -105.3072732], [39.9805397, -105.3074197], [39.9803722, -105.3076497], [39.9803193, -105.3078389], [39.9802417, -105.3078843], [39.9802539, -105.3079662], [39.9803084, -105.3080053], [39.9805842, -105.3080153], [39.9810715, -105.3079296], [39.9812971, -105.3078424], [39.98162, -105.3077826], [39.9818997, -105.3077856], [39.981962, -105.3078264], [39.9821087, -105.3080416], [39.9822304, -105.3083485], [39.9822985, -105.3084602], [39.9824001, -105.3085463], [39.982448, -105.3086481], [39.9825737, -105.3087609]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_f8e905a7f7dfa1566998c9f50b60a053 = L.marker(
[39.9311071, -105.2824558],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_93408ba37fb01ce789fef3986de4975e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_f8e905a7f7dfa1566998c9f50b60a053.setIcon(icon_93408ba37fb01ce789fef3986de4975e);
var popup_5813619ed4786c85f75c8e433796cf81 = L.popup({"maxWidth": "100%"});
var html_69c515105bb89ee669d99e2c596384a7 = $(`<div id="html_69c515105bb89ee669d99e2c596384a7" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_5813619ed4786c85f75c8e433796cf81.setContent(html_69c515105bb89ee669d99e2c596384a7);
marker_f8e905a7f7dfa1566998c9f50b60a053.bindPopup(popup_5813619ed4786c85f75c8e433796cf81)
;
var marker_15b2442c96e9dc18e2d98b5ffbbd8056 = L.marker(
[39.9341287, -105.2899154],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_475369c90226056d00070a1be42f513d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_15b2442c96e9dc18e2d98b5ffbbd8056.setIcon(icon_475369c90226056d00070a1be42f513d);
var popup_1e530ed8d92309d1884847325a20e074 = L.popup({"maxWidth": "100%"});
var html_33735fa6f6b59b71f34c867eb1f03b56 = $(`<div id="html_33735fa6f6b59b71f34c867eb1f03b56" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_1e530ed8d92309d1884847325a20e074.setContent(html_33735fa6f6b59b71f34c867eb1f03b56);
marker_15b2442c96e9dc18e2d98b5ffbbd8056.bindPopup(popup_1e530ed8d92309d1884847325a20e074)
;
var poly_line_a66f4d1b0e1ac882c13b65ea5decc518 = L.polyline(
[[39.9311071, -105.2824558], [39.9312502, -105.2828226], [39.9312502, -105.2828226], [39.9311845, -105.2830054], [39.9310497, -105.2832347], [39.931023, -105.2833892], [39.9310093, -105.2834248], [39.9309882, -105.2834767], [39.9309782, -105.2835207], [39.9309992, -105.2835852], [39.9309254, -105.2837062], [39.9308634, -105.2836602], [39.9307474, -105.2838172], [39.9307231, -105.2839385], [39.9307305, -105.2839736], [39.9307756, -105.2840681], [39.9307551, -105.2841222], [39.9307134, -105.2842103], [39.9307116, -105.2842646], [39.930727, -105.2842868], [39.9307268, -105.2843223], [39.9307346, -105.2843604], [39.9307484, -105.2844122], [39.9307534, -105.2844962], [39.9307977, -105.2844916], [39.9308234, -105.2844547], [39.9308499, -105.2844625], [39.9308474, -105.2846352], [39.9308004, -105.2847222], [39.9307694, -105.2850532], [39.9307694, -105.2850532], [39.9307334, -105.2851612], [39.9306814, -105.2852192], [39.9306157, -105.2853164], [39.9305714, -105.2854282], [39.9304904, -105.2854852], [39.9304674, -105.2855692], [39.9304654, -105.2857152], [39.9304414, -105.2857812], [39.9303804, -105.2858232], [39.9302937, -105.286131], [39.9303239, -105.2862933], [39.930352, -105.286343], [39.9303751, -105.286403], [39.9303879, -105.2864664], [39.9304005, -105.2865245], [39.9304005, -105.2865245], [39.9304208, -105.2866159], [39.9304285, -105.28674], [39.930432, -105.28686], [39.9304632, -105.2868059], [39.9304994, -105.2868322], [39.9305114, -105.2869672], [39.9305793, -105.2870195], [39.9305903, -105.2871087], [39.9306387, -105.2871204], [39.9307014, -105.2870852], [39.9306992, -105.2873824], [39.9307709, -105.2872815], [39.9308246, -105.2872728], [39.930846, -105.2873575], [39.9309364, -105.2873462], [39.9309324, -105.2874372], [39.9309953, -105.2874206], [39.9309587, -105.2875044], [39.9309248, -105.2876441], [39.9310014, -105.2875862], [39.9310547, -105.2875188], [39.9311281, -105.2876317], [39.9312044, -105.2877682], [39.9312684, -105.2878592], [39.9313524, -105.2878672], [39.9313794, -105.2879402], [39.9314514, -105.2879612], [39.9316654, -105.2882082], [39.9316864, -105.2882922], [39.9317894, -105.2883912], [39.9318244, -105.2885152], [39.9319089, -105.2886029], [39.931934, -105.288559], [39.9319656, -105.288666], [39.9320153, -105.288539], [39.9320264, -105.2886534], [39.9320589, -105.2885984], [39.9320775, -105.2886372], [39.9321557, -105.2886797], [39.9322455, -105.288785], [39.9322563, -105.2889068], [39.9322868, -105.2888763], [39.932306, -105.2889393], [39.9323269, -105.2888904], [39.9323636, -105.2889427], [39.9323929, -105.2888853], [39.9324705, -105.2890267], [39.9325676, -105.2890246], [39.9326489, -105.2890339], [39.9327009, -105.2890363], [39.9327735, -105.2890283], [39.9328308, -105.2890407], [39.9328714, -105.2890872], [39.9329621, -105.2890952], [39.9331346, -105.2892385], [39.9331824, -105.2893367], [39.9333143, -105.2894438], [39.9332914, -105.2893323], [39.9333193, -105.2893374], [39.9333383, -105.2892966], [39.9334058, -105.2893978], [39.9334281, -105.2892827], [39.9334809, -105.2893394], [39.9335201, -105.2893505], [39.9337461, -105.2897481], [39.9338382, -105.2898132], [39.9338821, -105.2897929], [39.9339718, -105.2897897], [39.9340263, -105.2898165], [39.9341287, -105.2899154]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_dd6b31810d1bdccf3b99b5fcf423d0bd = L.marker(
[39.9999788, -105.2865881],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_0a30e6a9531c73a837e9f5e6869edd50 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_dd6b31810d1bdccf3b99b5fcf423d0bd.setIcon(icon_0a30e6a9531c73a837e9f5e6869edd50);
var popup_64752992ee2619eff96aa5549e6420c3 = L.popup({"maxWidth": "100%"});
var html_e80e6ee4ce9ef89bd96108197fc6c7da = $(`<div id="html_e80e6ee4ce9ef89bd96108197fc6c7da" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_64752992ee2619eff96aa5549e6420c3.setContent(html_e80e6ee4ce9ef89bd96108197fc6c7da);
marker_dd6b31810d1bdccf3b99b5fcf423d0bd.bindPopup(popup_64752992ee2619eff96aa5549e6420c3)
;
var marker_eb63f8e34bbee0989a49cb97edaa1290 = L.marker(
[39.9934908, -105.2878373],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_21f5154073034a7ce168492de114d2e1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "stop", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_eb63f8e34bbee0989a49cb97edaa1290.setIcon(icon_21f5154073034a7ce168492de114d2e1);
var popup_11a2c1237cbf2bf6c9e22ce2dbf8ce54 = L.popup({"maxWidth": "100%"});
var html_84363bdf3d40fa56a4c911e4d8688ee1 = $(`<div id="html_84363bdf3d40fa56a4c911e4d8688ee1" style="width: 100.0%; height: 100.0%;">End</div>`)[0];
popup_11a2c1237cbf2bf6c9e22ce2dbf8ce54.setContent(html_84363bdf3d40fa56a4c911e4d8688ee1);
marker_eb63f8e34bbee0989a49cb97edaa1290.bindPopup(popup_11a2c1237cbf2bf6c9e22ce2dbf8ce54)
;
var poly_line_780d6f5f95ee242d9b97b2e69decf07c = L.polyline(
[[39.9999788, -105.2865881], [39.9998668, -105.2864782], [39.9997829, -105.2862318], [39.9997369, -105.2860958], [39.9996803, -105.2859845], [39.9996803, -105.2859845], [39.9997356, -105.2858988], [39.9997949, -105.2857976], [39.9998085, -105.285602], [39.9997952, -105.285298], [39.9997952, -105.285286], [39.9997921, -105.2845117], [39.9998044, -105.2843347], [39.999794, -105.2842955], [39.9997654, -105.2841876], [39.9997372, -105.2836677], [39.9997311, -105.283585], [39.9997282, -105.2835328], [39.9997284, -105.2834805], [39.9997357, -105.2833737], [39.9997424, -105.2833011], [39.9997424, -105.2833011], [39.9997425, -105.2832336], [39.9997397, -105.2831745], [39.9997355, -105.2831163], [39.9997274, -105.2830752], [39.9997145, -105.2830354], [39.9997145, -105.2830354], [39.9996879, -105.283035], [39.9996722, -105.2830325], [39.9996424, -105.2830247], [39.9995486, -105.2829891], [39.9995314, -105.2829824], [39.9995021, -105.2829711], [39.9994609, -105.2829562], [39.9994413, -105.282952], [39.999403, -105.2829464], [39.9993607, -105.2829431], [39.9992472, -105.2829395], [39.9989833, -105.2829173], [39.9988305, -105.2829077], [39.9988011, -105.2829053], [39.9988011, -105.2829053], [39.9988082, -105.2830325], [39.9987501, -105.2832292], [39.9987164, -105.283422], [39.9986941, -105.2835013], [39.9986613, -105.2836285], [39.99861, -105.2837555], [39.9985159, -105.283828], [39.9984579, -105.2839076], [39.9983005, -105.2841716], [39.9983005, -105.2841716], [39.9982037, -105.284355], [39.998127, -105.2844751], [39.998044, -105.2845332], [39.997968, -105.2845677], [39.9979126, -105.2845925], [39.9978733, -105.2846384], [39.9978676, -105.2847427], [39.9978394, -105.2848751], [39.9978132, -105.2850271], [39.9978125, -105.2852097], [39.9978218, -105.285387], [39.9977978, -105.2854974], [39.9977541, -105.2855895], [39.9977111, -105.2856747], [39.9976259, -105.2857818], [39.9975036, -105.2858599], [39.9974352, -105.2858771], [39.9973359, -105.2858551], [39.9972975, -105.2857179], [39.9972422, -105.28561], [39.9971866, -105.2855882], [39.997139, -105.2855503], [39.9970412, -105.2855009], [39.9969092, -105.2854767], [39.9968182, -105.2855007], [39.9967363, -105.2855208], [39.9966747, -105.2855263], [39.9965779, -105.285544], [39.9964894, -105.2855622], [39.9964208, -105.2855947], [39.9963689, -105.2856368], [39.9963185, -105.2857034], [39.9962494, -105.2857808], [39.9961928, -105.2858879], [39.9961152, -105.2860024], [39.9959899, -105.286193], [39.9958498, -105.286242], [39.9958498, -105.286242], [39.9957968, -105.2862614], [39.9957633, -105.2862675], [39.9956202, -105.286295], [39.995594, -105.2863039], [39.9955461, -105.2863345], [39.9955041, -105.2863643], [39.9954703, -105.2863914], [39.9954195, -105.2864385], [39.995378, -105.2865], [39.9953527, -105.2865845], [39.9953319, -105.2866655], [39.995279, -105.2867455], [39.9951197, -105.2869091], [39.9949492, -105.2870151], [39.9947016, -105.2870633], [39.9944683, -105.2871371], [39.9943317, -105.2872135], [39.9940193, -105.2873289], [39.9939341, -105.2873892], [39.9938313, -105.287522], [39.9935647, -105.2877756], [39.9934908, -105.2878373]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 2.5}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var marker_5655f72f7966eaf212a0c2604c8348db = L.marker(
[39.9999788, -105.2865881],
{}
).addTo(map_b7af4bbfc3f0fb75ed77d64799a6711b);
var icon_794598ea8e64ee286c58c0f2a16fdc37 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "play", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon"}
);
marker_5655f72f7966eaf212a0c2604c8348db.setIcon(icon_794598ea8e64ee286c58c0f2a16fdc37);
var popup_74301d7d4b7d00b2e50d7892865ac62b = L.popup({"maxWidth": "100%"});
var html_47c1be369849fcac78289faf59bcc4e8 = $(`<div id="html_47c1be369849fcac78289faf59bcc4e8" style="width: 100.0%; height: 100.0%;">Start</div>`)[0];
popup_74301d7d4b7d00b2e50d7892865ac62b.setContent(html_47c1be369849fcac78289faf59bcc4e8);
marker_5655f72f7966eaf212a0c2604c8348db.bindPopup(popup_74301d7d4b7d00b2e50d7892865ac62b)
;
var marker_528fccdac65736b05cc06e3ee27e4b5a = L.marker(
[39.9917624, -105.2859955],