-
Notifications
You must be signed in to change notification settings - Fork 0
/
intersections_map.html
4020 lines (1746 loc) · 144 KB
/
intersections_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_dc1867f2e442e7c3d15ef1ae5e478532 {
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_dc1867f2e442e7c3d15ef1ae5e478532" ></div>
</body>
<script>
var map_dc1867f2e442e7c3d15ef1ae5e478532 = L.map(
"map_dc1867f2e442e7c3d15ef1ae5e478532",
{
center: [39.9787108, -105.2754759],
crs: L.CRS.EPSG3857,
zoom: 15,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_1408d4211e97ae362d43a16705da9582 = 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_1408d4211e97ae362d43a16705da9582.addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var marker_0684af25b4a96548c335e4093c1e697b = L.marker(
[39.9644395, -105.279347],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_272a1b6d541016c7e31d4591b7b27b41 = L.popup({"maxWidth": "100%"});
var html_0082f132ed8b4f38a43a91154ba622cc = $(`<div id="html_0082f132ed8b4f38a43a91154ba622cc" style="width: 100.0%; height: 100.0%;">Intersection [39.9644395, -105.279347]</div>`)[0];
popup_272a1b6d541016c7e31d4591b7b27b41.setContent(html_0082f132ed8b4f38a43a91154ba622cc);
marker_0684af25b4a96548c335e4093c1e697b.bindPopup(popup_272a1b6d541016c7e31d4591b7b27b41)
;
var marker_e01cfdf321019b7729420ada195381f7 = L.marker(
[39.9922537, -105.2731849],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_b7cac014d1c292ab8dcaf9cbb7f93d66 = L.popup({"maxWidth": "100%"});
var html_0ea35a6715c4fa8392c255f5a525fbd6 = $(`<div id="html_0ea35a6715c4fa8392c255f5a525fbd6" style="width: 100.0%; height: 100.0%;">Intersection [39.9922537, -105.2731849]</div>`)[0];
popup_b7cac014d1c292ab8dcaf9cbb7f93d66.setContent(html_0ea35a6715c4fa8392c255f5a525fbd6);
marker_e01cfdf321019b7729420ada195381f7.bindPopup(popup_b7cac014d1c292ab8dcaf9cbb7f93d66)
;
var marker_c4ffb8c16649f0b30f1ac8faa746ef08 = L.marker(
[39.9902277, -105.270586],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_2e5141295094c61b6e50c6f15ce16001 = L.popup({"maxWidth": "100%"});
var html_03bdc1651b2fe25f45cca832d1d085f5 = $(`<div id="html_03bdc1651b2fe25f45cca832d1d085f5" style="width: 100.0%; height: 100.0%;">Intersection [39.9902277, -105.270586]</div>`)[0];
popup_2e5141295094c61b6e50c6f15ce16001.setContent(html_03bdc1651b2fe25f45cca832d1d085f5);
marker_c4ffb8c16649f0b30f1ac8faa746ef08.bindPopup(popup_2e5141295094c61b6e50c6f15ce16001)
;
var marker_116fa9922c3bd16346a2673c9febe856 = L.marker(
[39.9955391, -105.2800253],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_d8fef72a9cf912f7568a6fc2c606afe3 = L.popup({"maxWidth": "100%"});
var html_79271018449d475d274d2af44f8215d9 = $(`<div id="html_79271018449d475d274d2af44f8215d9" style="width: 100.0%; height: 100.0%;">Intersection [39.9955391, -105.2800253]</div>`)[0];
popup_d8fef72a9cf912f7568a6fc2c606afe3.setContent(html_79271018449d475d274d2af44f8215d9);
marker_116fa9922c3bd16346a2673c9febe856.bindPopup(popup_d8fef72a9cf912f7568a6fc2c606afe3)
;
var marker_18d7a9d3cbe0efc40c7884c1297c7874 = L.marker(
[39.9762669, -105.2717106],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_10cff9812bc362c98c2fb425ec7c9a8d = L.popup({"maxWidth": "100%"});
var html_96876f7508a57764579099c3f1738796 = $(`<div id="html_96876f7508a57764579099c3f1738796" style="width: 100.0%; height: 100.0%;">Intersection [39.9762669, -105.2717106]</div>`)[0];
popup_10cff9812bc362c98c2fb425ec7c9a8d.setContent(html_96876f7508a57764579099c3f1738796);
marker_18d7a9d3cbe0efc40c7884c1297c7874.bindPopup(popup_10cff9812bc362c98c2fb425ec7c9a8d)
;
var marker_8aa36f3738a80e8968cf050d16ef444f = L.marker(
[39.9949574, -105.2815462],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_71c6f0084a485341e06ce82efa098570 = L.popup({"maxWidth": "100%"});
var html_4b113b7a2e29e4eef9548238888906bf = $(`<div id="html_4b113b7a2e29e4eef9548238888906bf" style="width: 100.0%; height: 100.0%;">Intersection [39.9949574, -105.2815462]</div>`)[0];
popup_71c6f0084a485341e06ce82efa098570.setContent(html_4b113b7a2e29e4eef9548238888906bf);
marker_8aa36f3738a80e8968cf050d16ef444f.bindPopup(popup_71c6f0084a485341e06ce82efa098570)
;
var marker_304f4eb2ae9273b85b4e5593c5fbe30e = L.marker(
[39.9351125, -105.2901255],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_d30b4020a7588964d21dfacd99347f6b = L.popup({"maxWidth": "100%"});
var html_61bf0cae893706949b351028ff484e76 = $(`<div id="html_61bf0cae893706949b351028ff484e76" style="width: 100.0%; height: 100.0%;">Intersection [39.9351125, -105.2901255]</div>`)[0];
popup_d30b4020a7588964d21dfacd99347f6b.setContent(html_61bf0cae893706949b351028ff484e76);
marker_304f4eb2ae9273b85b4e5593c5fbe30e.bindPopup(popup_d30b4020a7588964d21dfacd99347f6b)
;
var marker_746d77644600b3481d80ec9cb7d18d7d = L.marker(
[39.9843517, -105.2912491],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_4acbf71d3300f08a2101c41aee5ecf0e = L.popup({"maxWidth": "100%"});
var html_fb8b3d0d4f4dea2959856f0985f049e2 = $(`<div id="html_fb8b3d0d4f4dea2959856f0985f049e2" style="width: 100.0%; height: 100.0%;">Intersection [39.9843517, -105.2912491]</div>`)[0];
popup_4acbf71d3300f08a2101c41aee5ecf0e.setContent(html_fb8b3d0d4f4dea2959856f0985f049e2);
marker_746d77644600b3481d80ec9cb7d18d7d.bindPopup(popup_4acbf71d3300f08a2101c41aee5ecf0e)
;
var marker_9e4fadb82043d7ff515db4a519637e80 = L.marker(
[39.9775848, -105.3088027],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_bf05a2809ca24692d2ade86022124b30 = L.popup({"maxWidth": "100%"});
var html_9d440ca883c2ff347a563c50ee83fd87 = $(`<div id="html_9d440ca883c2ff347a563c50ee83fd87" style="width: 100.0%; height: 100.0%;">Intersection [39.9775848, -105.3088027]</div>`)[0];
popup_bf05a2809ca24692d2ade86022124b30.setContent(html_9d440ca883c2ff347a563c50ee83fd87);
marker_9e4fadb82043d7ff515db4a519637e80.bindPopup(popup_bf05a2809ca24692d2ade86022124b30)
;
var marker_0c61ee63abe0a7faa92a599de8957753 = L.marker(
[39.9821448, -105.3026935],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_3b73965528b2aba3e2c3d9f0ef138680 = L.popup({"maxWidth": "100%"});
var html_9079e8d169fc5f9dbbbab77574271ff2 = $(`<div id="html_9079e8d169fc5f9dbbbab77574271ff2" style="width: 100.0%; height: 100.0%;">Intersection [39.9821448, -105.3026935]</div>`)[0];
popup_3b73965528b2aba3e2c3d9f0ef138680.setContent(html_9079e8d169fc5f9dbbbab77574271ff2);
marker_0c61ee63abe0a7faa92a599de8957753.bindPopup(popup_3b73965528b2aba3e2c3d9f0ef138680)
;
var marker_8d1e49d539c095eddda4155e56e5b71b = L.marker(
[39.9856735, -105.2777543],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_e86a184af32df6482b8bd024966fbb99 = L.popup({"maxWidth": "100%"});
var html_8d9194fe18855807cc72919ab121e2d9 = $(`<div id="html_8d9194fe18855807cc72919ab121e2d9" style="width: 100.0%; height: 100.0%;">Intersection [39.9856735, -105.2777543]</div>`)[0];
popup_e86a184af32df6482b8bd024966fbb99.setContent(html_8d9194fe18855807cc72919ab121e2d9);
marker_8d1e49d539c095eddda4155e56e5b71b.bindPopup(popup_e86a184af32df6482b8bd024966fbb99)
;
var marker_3dec44533ac907dc3d1bbe13ca5e74fd = L.marker(
[39.9874897, -105.2802188],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_56c95493e7266d4ec74a5f8c88f4427a = L.popup({"maxWidth": "100%"});
var html_0f052ada52bc21793551443a217279e0 = $(`<div id="html_0f052ada52bc21793551443a217279e0" style="width: 100.0%; height: 100.0%;">Intersection [39.9874897, -105.2802188]</div>`)[0];
popup_56c95493e7266d4ec74a5f8c88f4427a.setContent(html_0f052ada52bc21793551443a217279e0);
marker_3dec44533ac907dc3d1bbe13ca5e74fd.bindPopup(popup_56c95493e7266d4ec74a5f8c88f4427a)
;
var marker_d3b5b1ab00662158a62eea2cca5703d4 = L.marker(
[39.9566812, -105.297205],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_060bec79df7c834fdb14747c3d027448 = L.popup({"maxWidth": "100%"});
var html_65a4b54ea4691bbad9336c2bb6a66d10 = $(`<div id="html_65a4b54ea4691bbad9336c2bb6a66d10" style="width: 100.0%; height: 100.0%;">Intersection [39.9566812, -105.297205]</div>`)[0];
popup_060bec79df7c834fdb14747c3d027448.setContent(html_65a4b54ea4691bbad9336c2bb6a66d10);
marker_d3b5b1ab00662158a62eea2cca5703d4.bindPopup(popup_060bec79df7c834fdb14747c3d027448)
;
var marker_6530612872ca4dbefdc15ca3d81c0127 = L.marker(
[39.9914631, -105.2702531],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_1726efde007d894b6d26c37a01af9a48 = L.popup({"maxWidth": "100%"});
var html_58ce18f449956b0cd072831438c1bd6d = $(`<div id="html_58ce18f449956b0cd072831438c1bd6d" style="width: 100.0%; height: 100.0%;">Intersection [39.9914631, -105.2702531]</div>`)[0];
popup_1726efde007d894b6d26c37a01af9a48.setContent(html_58ce18f449956b0cd072831438c1bd6d);
marker_6530612872ca4dbefdc15ca3d81c0127.bindPopup(popup_1726efde007d894b6d26c37a01af9a48)
;
var marker_f2bd61511d56d8afb58a24aee092147d = L.marker(
[39.9889799, -105.2788103],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_b46ad53728c1319682e577c45ca3e840 = L.popup({"maxWidth": "100%"});
var html_9953ec76b757a2d67d6d765dc6ca4eea = $(`<div id="html_9953ec76b757a2d67d6d765dc6ca4eea" style="width: 100.0%; height: 100.0%;">Intersection [39.9889799, -105.2788103]</div>`)[0];
popup_b46ad53728c1319682e577c45ca3e840.setContent(html_9953ec76b757a2d67d6d765dc6ca4eea);
marker_f2bd61511d56d8afb58a24aee092147d.bindPopup(popup_b46ad53728c1319682e577c45ca3e840)
;
var marker_314a00322d057ea56b8ccf7bf7a1b06e = L.marker(
[39.9384768, -105.2951552],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_33fc40c5867cd078eeb7aedb02376d0c = L.popup({"maxWidth": "100%"});
var html_afc6791e21cedf4fb28a55e3b114b126 = $(`<div id="html_afc6791e21cedf4fb28a55e3b114b126" style="width: 100.0%; height: 100.0%;">Intersection [39.9384768, -105.2951552]</div>`)[0];
popup_33fc40c5867cd078eeb7aedb02376d0c.setContent(html_afc6791e21cedf4fb28a55e3b114b126);
marker_314a00322d057ea56b8ccf7bf7a1b06e.bindPopup(popup_33fc40c5867cd078eeb7aedb02376d0c)
;
var marker_e40682040a6cfb2043d3bb6d013a848f = L.marker(
[39.9498777, -105.3275733],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_4ea0e9be743462c19dc0b642c863cbb6 = L.popup({"maxWidth": "100%"});
var html_14c2d20ccb12a865e2c038f8e9cc4bd6 = $(`<div id="html_14c2d20ccb12a865e2c038f8e9cc4bd6" style="width: 100.0%; height: 100.0%;">Intersection [39.9498777, -105.3275733]</div>`)[0];
popup_4ea0e9be743462c19dc0b642c863cbb6.setContent(html_14c2d20ccb12a865e2c038f8e9cc4bd6);
marker_e40682040a6cfb2043d3bb6d013a848f.bindPopup(popup_4ea0e9be743462c19dc0b642c863cbb6)
;
var marker_d6e8a0c15a448b4a92f92941621cd1b9 = L.marker(
[39.9733203, -105.2704098],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_17a700d86230b3e8bb33f39feb68e6bb = L.popup({"maxWidth": "100%"});
var html_3cd65cb318a55e28eedc8a059bf5ed9e = $(`<div id="html_3cd65cb318a55e28eedc8a059bf5ed9e" style="width: 100.0%; height: 100.0%;">Intersection [39.9733203, -105.2704098]</div>`)[0];
popup_17a700d86230b3e8bb33f39feb68e6bb.setContent(html_3cd65cb318a55e28eedc8a059bf5ed9e);
marker_d6e8a0c15a448b4a92f92941621cd1b9.bindPopup(popup_17a700d86230b3e8bb33f39feb68e6bb)
;
var marker_17da5851b1905c2b02a97c3cd890bb7e = L.marker(
[39.9554577, -105.3224915],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_ae5cfc28b584f9df15df8d4112091f10 = L.popup({"maxWidth": "100%"});
var html_86d635a6865f01d8d06ecec780b985ab = $(`<div id="html_86d635a6865f01d8d06ecec780b985ab" style="width: 100.0%; height: 100.0%;">Intersection [39.9554577, -105.3224915]</div>`)[0];
popup_ae5cfc28b584f9df15df8d4112091f10.setContent(html_86d635a6865f01d8d06ecec780b985ab);
marker_17da5851b1905c2b02a97c3cd890bb7e.bindPopup(popup_ae5cfc28b584f9df15df8d4112091f10)
;
var marker_38107de0b6aaba706e6d76a0e06628a9 = L.marker(
[39.9892553, -105.2885921],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_6e8370fe3adefa233ada51c74b4978f8 = L.popup({"maxWidth": "100%"});
var html_49850c964700de29582e85aee4a996ed = $(`<div id="html_49850c964700de29582e85aee4a996ed" style="width: 100.0%; height: 100.0%;">Intersection [39.9892553, -105.2885921]</div>`)[0];
popup_6e8370fe3adefa233ada51c74b4978f8.setContent(html_49850c964700de29582e85aee4a996ed);
marker_38107de0b6aaba706e6d76a0e06628a9.bindPopup(popup_6e8370fe3adefa233ada51c74b4978f8)
;
var marker_74903dcec2b7ef6424ce1c2956420418 = L.marker(
[39.9917671, -105.2893225],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_756fd86e78f64fe9502a901b8866312e = L.popup({"maxWidth": "100%"});
var html_e5d73673357fff9e84a5e5093634b9c2 = $(`<div id="html_e5d73673357fff9e84a5e5093634b9c2" style="width: 100.0%; height: 100.0%;">Intersection [39.9917671, -105.2893225]</div>`)[0];
popup_756fd86e78f64fe9502a901b8866312e.setContent(html_e5d73673357fff9e84a5e5093634b9c2);
marker_74903dcec2b7ef6424ce1c2956420418.bindPopup(popup_756fd86e78f64fe9502a901b8866312e)
;
var marker_f6613e039da3a6fd717c8bfda0ac50f3 = L.marker(
[39.9909901, -105.3196606],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_a49012cd092adcd7e4b1772f1783d124 = L.popup({"maxWidth": "100%"});
var html_68d59b61a1c8bd598f4c447432ef15a7 = $(`<div id="html_68d59b61a1c8bd598f4c447432ef15a7" style="width: 100.0%; height: 100.0%;">Intersection [39.9909901, -105.3196606]</div>`)[0];
popup_a49012cd092adcd7e4b1772f1783d124.setContent(html_68d59b61a1c8bd598f4c447432ef15a7);
marker_f6613e039da3a6fd717c8bfda0ac50f3.bindPopup(popup_a49012cd092adcd7e4b1772f1783d124)
;
var marker_7aecf0137cce50cb2fb7339c3766ef6e = L.marker(
[39.9484431, -105.3306986],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_ca75d1f0192be5ff231b76f5cf4210f7 = L.popup({"maxWidth": "100%"});
var html_59b8d38f6cfcab8c20942cf6b0f4ab92 = $(`<div id="html_59b8d38f6cfcab8c20942cf6b0f4ab92" style="width: 100.0%; height: 100.0%;">Intersection [39.9484431, -105.3306986]</div>`)[0];
popup_ca75d1f0192be5ff231b76f5cf4210f7.setContent(html_59b8d38f6cfcab8c20942cf6b0f4ab92);
marker_7aecf0137cce50cb2fb7339c3766ef6e.bindPopup(popup_ca75d1f0192be5ff231b76f5cf4210f7)
;
var marker_c15624f3e3f17742eeee28c99a530029 = L.marker(
[39.9744908, -105.2890983],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_242fc93bb864165b438f6020e644c4b0 = L.popup({"maxWidth": "100%"});
var html_a78742615dd847f84bd5655dceccdf9b = $(`<div id="html_a78742615dd847f84bd5655dceccdf9b" style="width: 100.0%; height: 100.0%;">Intersection [39.9744908, -105.2890983]</div>`)[0];
popup_242fc93bb864165b438f6020e644c4b0.setContent(html_a78742615dd847f84bd5655dceccdf9b);
marker_c15624f3e3f17742eeee28c99a530029.bindPopup(popup_242fc93bb864165b438f6020e644c4b0)
;
var marker_fd064da88037cb4b93d0bc9b966ba6a2 = L.marker(
[39.9414779, -105.315608],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_90afb41b457d916153da0ffc3be5d6a4 = L.popup({"maxWidth": "100%"});
var html_5861cbb31fcdf1560ad0c16f66c1ff1d = $(`<div id="html_5861cbb31fcdf1560ad0c16f66c1ff1d" style="width: 100.0%; height: 100.0%;">Intersection [39.9414779, -105.315608]</div>`)[0];
popup_90afb41b457d916153da0ffc3be5d6a4.setContent(html_5861cbb31fcdf1560ad0c16f66c1ff1d);
marker_fd064da88037cb4b93d0bc9b966ba6a2.bindPopup(popup_90afb41b457d916153da0ffc3be5d6a4)
;
var marker_a5efd427160149d46de7105bef25a896 = L.marker(
[39.9825962, -105.3044081],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_f7c09f5d8ef3aa79646a26d501b6df52 = L.popup({"maxWidth": "100%"});
var html_510941a16acc48e22f3924925e493ec1 = $(`<div id="html_510941a16acc48e22f3924925e493ec1" style="width: 100.0%; height: 100.0%;">Intersection [39.9825962, -105.3044081]</div>`)[0];
popup_f7c09f5d8ef3aa79646a26d501b6df52.setContent(html_510941a16acc48e22f3924925e493ec1);
marker_a5efd427160149d46de7105bef25a896.bindPopup(popup_f7c09f5d8ef3aa79646a26d501b6df52)
;
var marker_6c420319e456bb68a50fe37da6625921 = L.marker(
[39.9279304, -105.278952],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_614c683f0f7fbb18db354268d1e50dd9 = L.popup({"maxWidth": "100%"});
var html_1d0d8a35838d05d958c03246ded3fa4e = $(`<div id="html_1d0d8a35838d05d958c03246ded3fa4e" style="width: 100.0%; height: 100.0%;">Intersection [39.9279304, -105.278952]</div>`)[0];
popup_614c683f0f7fbb18db354268d1e50dd9.setContent(html_1d0d8a35838d05d958c03246ded3fa4e);
marker_6c420319e456bb68a50fe37da6625921.bindPopup(popup_614c683f0f7fbb18db354268d1e50dd9)
;
var marker_ddf997cdf686b65565b49c4df94b72d1 = L.marker(
[39.9445406, -105.2766699],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_87c730828b9eb6ad4832eb7c94c39f6f = L.popup({"maxWidth": "100%"});
var html_bf087c4bcd47fcbb1316bcc4ebc2561f = $(`<div id="html_bf087c4bcd47fcbb1316bcc4ebc2561f" style="width: 100.0%; height: 100.0%;">Intersection [39.9445406, -105.2766699]</div>`)[0];
popup_87c730828b9eb6ad4832eb7c94c39f6f.setContent(html_bf087c4bcd47fcbb1316bcc4ebc2561f);
marker_ddf997cdf686b65565b49c4df94b72d1.bindPopup(popup_87c730828b9eb6ad4832eb7c94c39f6f)
;
var marker_cba715a056db80db9b2eaa823de2aedf = L.marker(
[39.9975044, -105.291989],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_a96d99694bdd7d5214cb2de5cc94e2c5 = L.popup({"maxWidth": "100%"});
var html_674be4897b1a9b96230f92dd4bafeb3d = $(`<div id="html_674be4897b1a9b96230f92dd4bafeb3d" style="width: 100.0%; height: 100.0%;">Intersection [39.9975044, -105.291989]</div>`)[0];
popup_a96d99694bdd7d5214cb2de5cc94e2c5.setContent(html_674be4897b1a9b96230f92dd4bafeb3d);
marker_cba715a056db80db9b2eaa823de2aedf.bindPopup(popup_a96d99694bdd7d5214cb2de5cc94e2c5)
;
var marker_09028aa0a91984bfd126ef9e8889858c = L.marker(
[39.9779897, -105.2737333],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_4bdcb37979373cc4413e18dca21f0d7f = L.popup({"maxWidth": "100%"});
var html_ba4f9776635ebf94d2ad33ee1ac3312d = $(`<div id="html_ba4f9776635ebf94d2ad33ee1ac3312d" style="width: 100.0%; height: 100.0%;">Intersection [39.9779897, -105.2737333]</div>`)[0];
popup_4bdcb37979373cc4413e18dca21f0d7f.setContent(html_ba4f9776635ebf94d2ad33ee1ac3312d);
marker_09028aa0a91984bfd126ef9e8889858c.bindPopup(popup_4bdcb37979373cc4413e18dca21f0d7f)
;
var marker_1a0cc42d9ac911968207661a7368f9f3 = L.marker(
[39.9694202, -105.2820145],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_4e8abc7a4473067f046945868b3c4ffd = L.popup({"maxWidth": "100%"});
var html_d2a6d5f0b29a650157418b2c9f905003 = $(`<div id="html_d2a6d5f0b29a650157418b2c9f905003" style="width: 100.0%; height: 100.0%;">Intersection [39.9694202, -105.2820145]</div>`)[0];
popup_4e8abc7a4473067f046945868b3c4ffd.setContent(html_d2a6d5f0b29a650157418b2c9f905003);
marker_1a0cc42d9ac911968207661a7368f9f3.bindPopup(popup_4e8abc7a4473067f046945868b3c4ffd)
;
var marker_eaffbf12aa049924ad68f405ba99346a = L.marker(
[39.9928762, -105.2707557],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_dfa124049f6495a432b256af1d469fb4 = L.popup({"maxWidth": "100%"});
var html_eda4b5fb8f696d3d3af402afc411d5d7 = $(`<div id="html_eda4b5fb8f696d3d3af402afc411d5d7" style="width: 100.0%; height: 100.0%;">Intersection [39.9928762, -105.2707557]</div>`)[0];
popup_dfa124049f6495a432b256af1d469fb4.setContent(html_eda4b5fb8f696d3d3af402afc411d5d7);
marker_eaffbf12aa049924ad68f405ba99346a.bindPopup(popup_dfa124049f6495a432b256af1d469fb4)
;
var marker_c2dab83756d415862cc23e4f248e20b7 = L.marker(
[39.9310538, -105.2861124],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_c4771ebdb7c30271dd10c80ed692f937 = L.popup({"maxWidth": "100%"});
var html_105943f8cede8e8c7738c9666051fd9d = $(`<div id="html_105943f8cede8e8c7738c9666051fd9d" style="width: 100.0%; height: 100.0%;">Intersection [39.9310538, -105.2861124]</div>`)[0];
popup_c4771ebdb7c30271dd10c80ed692f937.setContent(html_105943f8cede8e8c7738c9666051fd9d);
marker_c2dab83756d415862cc23e4f248e20b7.bindPopup(popup_c4771ebdb7c30271dd10c80ed692f937)
;
var marker_f16d693e9130006e5cd6dc51cfe89113 = L.marker(
[39.9974092, -105.2935718],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_6d09f1c46b4a8386ed927916eca8d57d = L.popup({"maxWidth": "100%"});
var html_4897b02855cf09d7defd0a608e7fb4eb = $(`<div id="html_4897b02855cf09d7defd0a608e7fb4eb" style="width: 100.0%; height: 100.0%;">Intersection [39.9974092, -105.2935718]</div>`)[0];
popup_6d09f1c46b4a8386ed927916eca8d57d.setContent(html_4897b02855cf09d7defd0a608e7fb4eb);
marker_f16d693e9130006e5cd6dc51cfe89113.bindPopup(popup_6d09f1c46b4a8386ed927916eca8d57d)
;
var marker_92057cfb1de970a3889dee87194d968e = L.marker(
[39.9862452, -105.2798936],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_6f7701cfdff05d5c0187e328cd317e42 = L.popup({"maxWidth": "100%"});
var html_fee48ca671a8194def433c34046567b0 = $(`<div id="html_fee48ca671a8194def433c34046567b0" style="width: 100.0%; height: 100.0%;">Intersection [39.9862452, -105.2798936]</div>`)[0];
popup_6f7701cfdff05d5c0187e328cd317e42.setContent(html_fee48ca671a8194def433c34046567b0);
marker_92057cfb1de970a3889dee87194d968e.bindPopup(popup_6f7701cfdff05d5c0187e328cd317e42)
;
var marker_35754256b1c8dcca279002404e5b8529 = L.marker(
[39.9901102, -105.3051883],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_dff495723ea773c4755dfbb9c27824c3 = L.popup({"maxWidth": "100%"});
var html_69d6efe14a4a1646f2a1615ca4045083 = $(`<div id="html_69d6efe14a4a1646f2a1615ca4045083" style="width: 100.0%; height: 100.0%;">Intersection [39.9901102, -105.3051883]</div>`)[0];
popup_dff495723ea773c4755dfbb9c27824c3.setContent(html_69d6efe14a4a1646f2a1615ca4045083);
marker_35754256b1c8dcca279002404e5b8529.bindPopup(popup_dff495723ea773c4755dfbb9c27824c3)
;
var marker_1d323720d3583abdb45f79a292f3ac46 = L.marker(
[39.974881, -105.2766058],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_d45f590ecfc2bb7ea41175ba4fb1c3b0 = L.popup({"maxWidth": "100%"});
var html_bc4f2781565eb473c23021e2b8d20e57 = $(`<div id="html_bc4f2781565eb473c23021e2b8d20e57" style="width: 100.0%; height: 100.0%;">Intersection [39.974881, -105.2766058]</div>`)[0];
popup_d45f590ecfc2bb7ea41175ba4fb1c3b0.setContent(html_bc4f2781565eb473c23021e2b8d20e57);
marker_1d323720d3583abdb45f79a292f3ac46.bindPopup(popup_d45f590ecfc2bb7ea41175ba4fb1c3b0)
;
var marker_2794fe51b07858182e5b0c9e1cc2af3a = L.marker(
[39.9756072, -105.2737117],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_a61702cb6c2fcba4b64bd5c4a286bf4f = L.popup({"maxWidth": "100%"});
var html_e5fb7a561fbe9d3165cac93224efe0db = $(`<div id="html_e5fb7a561fbe9d3165cac93224efe0db" style="width: 100.0%; height: 100.0%;">Intersection [39.9756072, -105.2737117]</div>`)[0];
popup_a61702cb6c2fcba4b64bd5c4a286bf4f.setContent(html_e5fb7a561fbe9d3165cac93224efe0db);
marker_2794fe51b07858182e5b0c9e1cc2af3a.bindPopup(popup_a61702cb6c2fcba4b64bd5c4a286bf4f)
;
var marker_b1e0efd34069e72ac540a65c2af67591 = L.marker(
[39.9899136, -105.2714714],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_753d83da1952fb194a50a09ed7c622d8 = L.popup({"maxWidth": "100%"});
var html_5f759a71312c410a67c20c8dc6d23987 = $(`<div id="html_5f759a71312c410a67c20c8dc6d23987" style="width: 100.0%; height: 100.0%;">Intersection [39.9899136, -105.2714714]</div>`)[0];
popup_753d83da1952fb194a50a09ed7c622d8.setContent(html_5f759a71312c410a67c20c8dc6d23987);
marker_b1e0efd34069e72ac540a65c2af67591.bindPopup(popup_753d83da1952fb194a50a09ed7c622d8)
;
var marker_f4fa962db3f4c456dc2b4a8c810f379a = L.marker(
[39.9343142, -105.2901729],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_7d9eeafb045f3d4536f3eebb7366fc33 = L.popup({"maxWidth": "100%"});
var html_f0b22b162d6c36d71aafa2c93e88383c = $(`<div id="html_f0b22b162d6c36d71aafa2c93e88383c" style="width: 100.0%; height: 100.0%;">Intersection [39.9343142, -105.2901729]</div>`)[0];
popup_7d9eeafb045f3d4536f3eebb7366fc33.setContent(html_f0b22b162d6c36d71aafa2c93e88383c);
marker_f4fa962db3f4c456dc2b4a8c810f379a.bindPopup(popup_7d9eeafb045f3d4536f3eebb7366fc33)
;
var marker_9edae9adc512268d58138fadbdf5b768 = L.marker(
[39.9870624, -105.2751329],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_49d707616cb17e811c880c3dc3086fa1 = L.popup({"maxWidth": "100%"});
var html_ff6877a04a9034d009e07d6053ac098c = $(`<div id="html_ff6877a04a9034d009e07d6053ac098c" style="width: 100.0%; height: 100.0%;">Intersection [39.9870624, -105.2751329]</div>`)[0];
popup_49d707616cb17e811c880c3dc3086fa1.setContent(html_ff6877a04a9034d009e07d6053ac098c);
marker_9edae9adc512268d58138fadbdf5b768.bindPopup(popup_49d707616cb17e811c880c3dc3086fa1)
;
var marker_a06dc589ba9d58c76be9cbb9a34699ee = L.marker(
[39.9631381, -105.2705567],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_7dba3527cf882b1fa4653db328f2b561 = L.popup({"maxWidth": "100%"});
var html_ad841ec4bf9542562cf30becbe8c29d3 = $(`<div id="html_ad841ec4bf9542562cf30becbe8c29d3" style="width: 100.0%; height: 100.0%;">Intersection [39.9631381, -105.2705567]</div>`)[0];
popup_7dba3527cf882b1fa4653db328f2b561.setContent(html_ad841ec4bf9542562cf30becbe8c29d3);
marker_a06dc589ba9d58c76be9cbb9a34699ee.bindPopup(popup_7dba3527cf882b1fa4653db328f2b561)
;
var marker_e826d4cb9a11b5c1412f21d28e0efb1c = L.marker(
[39.989221, -105.273849],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_36833fe5c7c92d7b66648bd80ec59b28 = L.popup({"maxWidth": "100%"});
var html_47191f19fdfae7ac118e67e5f5db29a7 = $(`<div id="html_47191f19fdfae7ac118e67e5f5db29a7" style="width: 100.0%; height: 100.0%;">Intersection [39.989221, -105.273849]</div>`)[0];
popup_36833fe5c7c92d7b66648bd80ec59b28.setContent(html_47191f19fdfae7ac118e67e5f5db29a7);
marker_e826d4cb9a11b5c1412f21d28e0efb1c.bindPopup(popup_36833fe5c7c92d7b66648bd80ec59b28)
;
var marker_0adcdc07f789a99a00468d06ddb7441a = L.marker(
[39.996383, -105.289357],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);
var popup_acc21dc1f9d5a1f8d5982b8b454c055d = L.popup({"maxWidth": "100%"});
var html_f86d59b1c7517a04fc0388bf0699dc6b = $(`<div id="html_f86d59b1c7517a04fc0388bf0699dc6b" style="width: 100.0%; height: 100.0%;">Intersection [39.996383, -105.289357]</div>`)[0];
popup_acc21dc1f9d5a1f8d5982b8b454c055d.setContent(html_f86d59b1c7517a04fc0388bf0699dc6b);
marker_0adcdc07f789a99a00468d06ddb7441a.bindPopup(popup_acc21dc1f9d5a1f8d5982b8b454c055d)
;
var marker_4427c754aa7dce7ed6371d7d2df9e000 = L.marker(
[39.973329, -105.306876],
{}
).addTo(map_dc1867f2e442e7c3d15ef1ae5e478532);