- published: 07 Mar 2020
- views: 15460856
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
U.S. Route 69 is a north–south United States highway. When it was first created, it was only 150 miles (241 km) long, but it has since been expanded into a Minnesota to Texas cross-country route. The highway's southern terminus (as well as those of US 287 and US 96) is in Port Arthur, Texas at an intersection with State Highway 87. Its northern terminus is in Albert Lea, Minnesota at Minnesota State Highway 13.
US 69 begins at its southern terminus with SH 87 in Port Arthur. This intersection is also the southern terminus for US 96 and US 287, which are concurrent with US 69. US 69, US 96, and US 287 continue in a northwest, then west, route until its intersection with Interstate 10 in southern Beaumont. At this intersection, US 69, US 96, and US 287 merge with I-10. I-10/US 69/US 96/US 287 continue in a northerly direction through Beaumont for several miles. Just after the intersection with US 90, I-10 splits from the multiplex and resumes its easterly course, leaving US 69, US 96, and US 287 heading northwest through Beaumont. US 69 north of I-10 is also known officially known as Eastex Freeway, and is an official evacuation route, just as Interstate 69/US 59 heading north from Houston is known as Eastex Freeway as well.
U.S. Route 66 (US 66 or Route 66), also known as the Will Rogers Highway and colloquially known as the Main Street of America or the Mother Road, was one of the original highways within the U.S. Highway System. Route 66 was established on November 11, 1926, with road signs erected the following year. The highway, which became one of the most famous roads in America, originally ran from Chicago, Illinois, through Missouri, Kansas, Oklahoma, Texas, New Mexico, and Arizona before ending at Santa Monica, California, covering a total of 2,448 miles (3,940 km). It was recognized in popular culture by both the hit song "(Get Your Kicks on) Route 66" and the Route 66 television show in the 1960s.
Route 66 served as a major path for those who migrated west, especially during the Dust Bowl of the 1930s, and it supported the economies of the communities through which the road passed. People doing business along the route became prosperous due to the growing popularity of the highway, and those same people later fought to keep the highway alive in the face of the growing threat of being bypassed by the new Interstate Highway System.
U.S. Route 160 is a 1,465 mile (2,358 km) long east–west United States highway in the Midwestern United States. The western terminus of the route is at US 89 five miles (8 km) west of Tuba City, Arizona. The eastern terminus is at US 67 and Missouri 158 southwest of Poplar Bluff, Missouri.
Its route, if not its number, was made famous in song in 1975, as the road from Wolf Creek Pass to Pagosa Springs, Colorado in C.W. McCall's country music song Wolf Creek Pass.
US 160 begins at US 89 near the western edge of Navajo Nation. Near Tuba City, it intersects State Route 264. It goes through Tonalea and Cow Springs before entering Kayenta, where it intersects U.S. Route 163. It continues northeast through Dennehotso, then has a brief overlap with U.S. Route 191 in Mexican Water. It goes east until Teec Nos Pos, where it intersects U.S. Route 64, then turns northeast to go to the Four Corners and enters New Mexico.
US 160 is one of the major routes crossing the Navajo Nation and in Arizona does not leave the Navajo Nation.
U.S. Route 17 (US 17) is a part of the U.S. Highway System that runs from Punta Gorda, Florida to Winchester, Virginia. In Virginia, the U.S. Highway runs 255.83 miles (411.72 km) from the North Carolina state line in Chesapeake north to its northern terminus at US 11, US 50, and US 522 in Winchester. US 17 is a major highway in the eastern half of Virginia. The U.S. Highway connects the Albemarle Region of North Carolina with the Hampton Roads metropolitan area. Within the urban area, US 17 passes through the South Hampton Roads cities of Chesapeake, Portsmouth, and Suffolk and the Virginia Peninsula city of Newport News. Between Yorktown and Fredericksburg, the U.S. Highway serves as the primary highway of the Middle Peninsula. At Fredericksburg, US 17 leaves the Atlantic coastal plain; the highway passes through the Piedmont town of Warrenton and crosses the Blue Ridge Mountains on its way to Winchester in the Shenandoah Valley.The route from Tappahannock to Winchester roughly follows the Confederate March during the Civil War to Gettysburg
Virginia is a 1941 American drama film directed by Edward H. Griffith. It featured the onscreen debut of Sterling Hayden.
Verginia, or Virginia (ca. 465 BC–449 BC), was the subject of a story of Ancient Rome, related in Livy's Ab Urbe Condita.
The people of Rome were already angry with the decemviri for not calling the proper elections, taking bribes, and other abuses. It seemed that they were returning to the rule of the Kings of Rome who had been overthrown only a few decades before. In 451 BC, Appius Claudius began to lust after Verginia, a beautiful plebeian girl and the daughter of Lucius Verginius, a respected centurion. Verginia was betrothed to Lucius Icilius, a former tribune of the plebs, and when she rejected Claudius, Claudius had one of his clients, Marcus Claudius, claim that she was actually his slave. Marcus Claudius then abducted her while she was on her way to school. The crowd in the Forum objected to this, as both Verginius and Icilius were well-respected men, and they forced Marcus Claudius to bring the case before the decemvirs, led by Appius Claudius himself. Verginius was recalled from the field to defend his daughter, and Icilius, after threats of violence, succeeded in having Verginia returned to her house while the court waited for her father to appear. Claudius tried to have his own supporters intercept the messengers sent to summon Verginius, but they arrived too late to delay Verginius' arrival.
Virginia is the name of several ships:
Route 66 is the United State's historic highway that was established in 1926, It is over 2,400 miles, and it goes from Santa Monica, California to Chicago, Illinois. The route was used by many who migrated west during the 1900s and it was popularized in songs, TV series and The Grapes of Wrath. My dad and I went on a full Route 66 road trip over 14 days in June of 2019 and made this video to share what the route looked like during that time period and to encourage others to drive this historic road. Watch this video to plan your Route 66 trip and to learn about cost and closed spots along the route - https://www.youtube.com/watch?v=7UXXUyGAspo Patreon - https://www.patreon.com/throughmylens If you just want to watch the states by themselves, you can click the links below. California - ...
Thanks to Bespoke Post for sponsoring this video! Head to https://bespokepost.com/itshistory20 and use code ITSHISTORY20 to learn more and get 20% off your first box.” U.S. Route 66, also known as the Will Rogers Highway, was one of the original highways constructed by the U.S. Highway System in 1926. Route 66 is over 90 years old and definitely, a road less traveled. There are plenty of weird attractions to be seen along this iconic road that starts in Chicago and ends in Los Angeles. While much of Route 66 has disappeared following its decommissioning as a major American highway in 1985, there remains plenty of evidence to be seen and cherished by historical and pop-cultural lovers. Large chunks of Route 66-related memorabilia have been preserved at the Route 66 Association Hall of Fame...
I have been wanting to create a video about the history of US Highway Route 66 for quite some time now. I have driven it many times while delivering motorhomes. It is not what it used to be, and I tell you how it all started, and why it is not as great as it once was. Links I used to research: https://en.wikipedia.org/wiki/U.S._Route_66 https://www.national66.org/history-of-route-66/ https://www.historic66.com/faq/ https://en.wikipedia.org/wiki/Trans-American_Footrace https://www.roadtripusa.com/route-66/ https://abcnews.go.com/Travel/wireStory/albuquerque-eyes-route-66-upgrades-forgotten-part-63577482 https://en.wikipedia.org/wiki/Auto_trail https://en.wikipedia.org/wiki/National_Old_Trails_Road https://en.wikipedia.org/wiki/Ozark_Trail_(auto_trail) https://www.wdl.org/en/item/11536...
In this video, you will see the best stops when driving Route 66. Route 66, dubbed "the Mother Road" by author John Steinbeck, is one of America's most iconic highways, passing through eight states and three time zones. Travelers on Route 66 will see a diverse range of scenery, from the towering woodlands of Missouri to the flat plains and ranch land of Oklahoma and Texas. Expect to see iconic neon signs, time-capsule towns, curb-side classic cars, and ribbons of tarmac vanish into the distance. So hop in the car and prepare to be dazzled as we explore the best stops along the legendary Route 66. Watch our video featuring the best road trips in the US: https://youtu.be/EMddl1WGMiU Check out our other videos: www.youtube.com/@travelthetop
We did it! — Route 66 from Chicago to LA. 28 Days. 4 Adults, 1 dog, 1 cat, all in a Winnebago. This video documents our trip along the Mother Road in the Fall of 2021 and shares some info & history that I hope you'll find entertaining and helpful if you're planning a Route 66 trip yourself. Check out https://curiosityness.com/route66/ for more Route 66 fun & info! -Tours of Iconic Route 66 stops and attractions, -Interviews with folks who are quintessential Route 66, -A Free Google Map with 100's of things to Do & See on Route 66! (This map was easily the most useful resource for our Route 66 road trip!) — Chapters — 00:00 Intro 00:43 Illinois 15:07 Missouri 23:16 Kansas 25:36 Oklahoma 37:02 Texas 43:11 New Mexico 52:24 Arizona 01:00:08 California 01:06:34 Outro My Top Route 66 Res...
Follow best friends Ines and Imene as they travel across the states on iconic Route 66. Explore Sundance Square and the National Cowgirl Museum in Fort Worth, Texas. Find great views at Reunion Tower and plenty of shops at Bishop Arts District in Dallas, Texas. Stay at the iconic Blue Swallow Motel in Tucumcari, New Mexico, and try hundreds of sodas at Pops 66 Soda Ranch in Acadia, Oklahoma. #Texas #Oklahoma #NewMexico #RoadTrip Connect on our social channels: ✈ Like Visit The USA: http://Facebook.com/VisitTheUSA ✈ Follow Visit The USA: https://www.tiktok.com/@visittheusa ✈ Follow Visit The USA: http://Instagram.com/VisitTheUSA Subscribe: https://www.youtube.com/VisitTheUSA Welcome to the official channel of United States tourism. Our goal is to inspire people from around the world to e...
Route 66 is iconic. Why? Help us make more ambitious videos by joining the Vox Video Lab. It brings you closer to our work and gets you exclusive perks, like livestream Q&As with all the Vox creators, a badge that levels up over time, and video extras bringing you closer to our work! Learn more at http://bit.ly/video-lab Route 66 has gained a reputation as the United States of America’s most famous road. How did that happen, and why does it still matter? In this episode of Vox Almanac, Vox’s Phil Edwards explores the history of the road and the textures of its present, from the road itself to the roadside attractions along the way, to the people who enjoy its diversions and those who help maintain them. It reveals a road that’s changed a lot over the decades but remains vital in unexpec...
Route 66 is one of the most famous drives in the world. I got a chance to drive it with my dad and we had a blast exploring all of the fun, weird and historic spots along the route. We spent 14 days driving from Santa Monica to Chicago and saw as much as we could on the drive. Here are a few of our favorite spots and let us know what your favorites are in the comments. Petrified Forest National Park Video - https://www.youtube.com/watch?v=PPew7BuUego Playlist of my Route 66 videos - https://www.youtube.com/playlist?list=PLO6_l08lsWOggzNbH57Mrlckm2tI0nAPZ Follow me: Facebook: http://www.facebook.com/throughmylensco Instagram: http://instagram.com/throughmylensco Pinterest: http://www.pinterest.com/throughmylensco Twitter: http://www.twitter.com/throughmylensco Gear: See all the gear I ...
Subscribe to : https://www.youtube.com/channel/UCe5JdtBHlCMVJ8jG-QVdU6g Chapters 0:00 Driving Route 66 America's Main Street 0:26 Journey Through Time 0:43 Birth Of Route 66 1:14 Diverse Landscape 1:31 Iconic Landmarks 1:48 Small Towns 2:23 Preserving Route 66 3:05 Road Trip Experience 3:27 Challenges And Changes 3:48 Spirit Of Adventure 4:10 Natural Wonders 4:25 Motels And Attractions 4:45 Ghost Towns 5:05 Community Resilience 5:27 Crossroad Of Cultures 5:48 Environmental Considerations 6:13 Route66 In Media Driving Route 66, often referred to as America's Main Street, is a nostalgic journey through the heart of the United States, offering travelers a glimpse into the nation's rich history, diverse landscapes, and the iconic American spirit. This historic highway, officially known as U....
Route 66 in Arizona has a lot of fun and historic attractions. This video is from my dad and I's 14 day journey on Route 66 from California to Illinois. I broke down each of the states into their own video so that you can see what the road trip looked like on Route 66 in June of 2019. You can click the links below to see each of the videos when they are posted. California - https://www.youtube.com/watch?v=G_lc8S3MIXI Arizona - https://www.youtube.com/watch?v=u-nsNedw5kY New Mexico - https://www.youtube.com/watch?v=YCUpaA-OYcg Texas - https://www.youtube.com/watch?v=ZRA73rwDwHY Oklahoma - https://www.youtube.com/watch?v=yX74CHItXWk Kansas - https://www.youtube.com/watch?v=z30LQkYdh5g Missouri - https://www.youtube.com/watch?v=OD-6LddSLVM Illinois - https://www.youtube.com/watch?v=r1u6sUBfq...
U.S. Route 69 is a north–south United States highway. When it was first created, it was only 150 miles (241 km) long, but it has since been expanded into a Minnesota to Texas cross-country route. The highway's southern terminus (as well as those of US 287 and US 96) is in Port Arthur, Texas at an intersection with State Highway 87. Its northern terminus is in Albert Lea, Minnesota at Minnesota State Highway 13.
US 69 begins at its southern terminus with SH 87 in Port Arthur. This intersection is also the southern terminus for US 96 and US 287, which are concurrent with US 69. US 69, US 96, and US 287 continue in a northwest, then west, route until its intersection with Interstate 10 in southern Beaumont. At this intersection, US 69, US 96, and US 287 merge with I-10. I-10/US 69/US 96/US 287 continue in a northerly direction through Beaumont for several miles. Just after the intersection with US 90, I-10 splits from the multiplex and resumes its easterly course, leaving US 69, US 96, and US 287 heading northwest through Beaumont. US 69 north of I-10 is also known officially known as Eastex Freeway, and is an official evacuation route, just as Interstate 69/US 59 heading north from Houston is known as Eastex Freeway as well.