'+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

U.S. Route 69 is a northsouth 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.

Route description

Texas

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 14

U.S. Route 14 (abbreviated U.S. 14 or US 14), an eastwest route, is one of the original United States highways of 1926. It currently has a length of 1,398 miles (2,250 km), but it had a peak length of 1,429 miles (2,300 km). For much of its length, it runs roughly parallel to Interstate 90.

As of 2004, the highway's eastern terminus is in Chicago, Illinois. Its western terminus is the east entrance of Yellowstone National Park in Wyoming, with the western terminus of U.S. Route 16 and the western terminus of the eastern segment of U.S. Route 20.

Route description

Wyoming

U.S. 14 begins at the east entrance to Yellowstone National Park, along with U.S. 16 and the eastern segment of U.S. 20. It travels through the Shoshone National Forest to Cody, where U.S. 14A splits off to the north. Both routes traverse the dry Bighorn Basin, followed by a steep ascent up the Big Horn Mountains and through the Bighorn National Forest, where they rejoin at Burgess Junction. The highway descends the eastern slope of the Bighorns between Burgess Junction and Dayton. U.S. 14 briefly follows I-90 south from Ranchester to Sheridan. The highway turns east and then south to again join I-90 near Gillette. It splits off for a short time to Carlile, then rejoins I-90 which it follows to the state line.

U.S. Route 66

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.

Vermont Route 116

Vermont Route 116 is a 40.759-mile (65.595 km) long state highway in Vermont. It travels north from U.S. Route 7 in Middlebury, where it almost immediately intersects Vermont Route 125, then runs concurrently with Vermont Route 17 through much of the town of Bristol. Route 116 then continues north through the towns of Starksboro and Hinesburg before passing through the eastern portion of Shelburne, and Williston before ending in South Burlington at an intersection with U.S. Route 2 (Williston Road).

Route description

VT 116 begins at an intersection with US 7 (Court Street) in the Addison County town of Middlebury. VT 116 runs northeast along Ossie Road, paralleling the Middlebury River as a two-lane road for three blocks before turning north on Church Street. Going one block north, the route reaches a junction with VT 125 (East Main Street), changing names to Case Street also immediately in East Middlebury. VT 116 winds north along Case Street, leaving East Middlebury and reaching Airport Road, which connects to Middlebury Airport. Continuing north through Middlebury, the route becomes a lot more rural, passing farms left and right as it bends northeast. The main northsouth road near the end of a ridge, VT 116 passes a small residential neighborhood at Lindale Circle, before reaching a quarry and some dense woods.

Virginia State Route 69

State Route 69 (SR 69) is a primary state highway in the U.S. state of Virginia. Known as Lead Mine Road, the state highway runs 3.59 miles (5.78 km) from SR 636 in Austinville east to U.S. Route 52 (US 52) in Poplar Camp. SR 69 is the last remnant of a much longer route. At its peak from 1940 to 1945, this route (then numbered State Route 81) ran from State Route 91 at Lodi east via St. Clair Bottom, Sugar Grove, Cedar Springs, Speedwell, Porters Crossroads, and Austinville to today's SR 69. However, it was never fully continuous; portions from Sugar Grove to Cedar Springs and west of Porters Crossroads to east of Austinville were secondary routes. The full length of this route as it existed and was planned is now part of SR 762, part of SR 660, all of SR 650, part of SR 16 (and SR 695, its former alignment at Sugar Grove), all of SR 614, part of SR 749, part of US 21, part of SR 690, a small piece of SR 642, part of SR 619, part of SR 636, and SR 69.

Route description

Podcasts:

  • U.S Route 14 - American Truck Simulator | Thrustmaster T300RS

    Update 1.45 of American Truck Simulator brings the city of Cody and the US-14 for Wyoming DLC owners and much more. In this video, we take the International 9900i along US-14, although a no entry for truckers, I thought I'd show the scenic route. For some extras and behind the scenes: www.instagram.com/xpertgamingtech_official/ PC Specification: (DESKTOP) Processor: AMD Ryzen 3900X Motherboard: ASUS TUF GAMING X570-PLUS GPU: Asus ROG Strix RTX 3080ti OC edition RAM: 32GB DDR4 Mods used (Use at your own risk): CAT C-15 MBN Sound & Engine Pack https://www.zeemods.com/p/cat-c15-mbn-sound-engine-pack/ Smooth Interior Camera v2.0 https://forum.scssoft.com/viewtopic.php?t=248870 Realistic Truck Physics Mod v8.2 (by Frkn64) https://steamcommunity.com/sharedfiles/filedetails/?id=225421308...

    published: 09 Jul 2022
  • Wyoming Bighorn Mountains - Scenic HWY 14 Byway

    Wyoming Bighorn Mountains - Scenic HWY 14 Byway Ride along as I travel thru the Scenic Bighorn Mountains across the northern Wyoming HWY 14 Scenic Byway. Support RVerTV Click Right Here: https://www.buymeacoffee.com/uPhJL3S89 RVerTV MERCHANDISE - https://teespring.com/stores/rvertv-apparel RVerTV AMAZON STORE...https://www.amazon.com/shop/rvertv RVerTV T-Shirts AVAILABLE !! : http://amzn.to/2rg05p9 SUPPORT RVerTV For Free! Click Here : http://amzn.to/1Qd5z80 Full-Time RV Living , RV Lifestyle, RV Life Van Life Van Travel Camera Equipment I Use - Daily Drone : https://amzn.to/2zZtiY6 Dashcam: https://amzn.to/34B3Kyn Scenery: https://amzn.to/2LHVN1F What Drone I use https://youtu.be/IMkTvR0xi7k LET'S CONNECT!: Facebook ... https://www.facebook.com/rvertv.tv Twitter... https://twitte...

    published: 18 Aug 2020
  • Washington State Route 14

    State Route 14 (SR 14) is a 180.66-mile-long (290.74 km) state highway in the U.S. state of Washington. The highway travels east-west on the north side of the Columbia River, opposite Interstate 84 (I-84) to the south in Oregon. SR 14 forms a section of the Lewis and Clark Trail Scenic Byway and begins at an interchange with I-5 in Vancouver. The highway travels east as a four-lane freeway through Camas and Washougal and intersects I-205. SR 14 continues east as a two-lane highway through Clark, Skamania, Klickitat, and Benton counties before it ends at an interchange with I-82 and U.S. Route 395 (US 395) near Plymouth.

    published: 10 Oct 2014
  • Route 66 Road Trip: 14 Days Driving the Main Street of America

    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 - ...

    published: 07 Mar 2020
  • US Route 14, near Carlile in Wyoming, Part 1.

    Heading east bound on US Route 14, here we are a short distance to the west from the Community of Carlile in Wyoming. Music: Midnight North (Jack"s Garage)

    published: 18 Nov 2020
  • IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoad

    **Best viewed in 1080p60 or 720p60 In the series finale of the NB IL Route 59 VirtualRoad series, we drive up the remaining miles of IL Route 59 north through western Lake County, IL through several smaller suburbs before reaching the final one of Antioch, IL just over one mile south of the Wisconsin State Line. I always love driving up through Lake County and it's beauty. It is a nice mix of hills, woods, prairies, lakes, and suburb. You'll notice that the road is mostly one lane in each direction with the exception of between Wauconda and Fox Lake when we are on the same road as U.S. Route 12. Western Lake County is largely rural with suburban areas in each of the suburbs we pass through. Many of the suburbs further north were historically more like "getaway" towns that people in the big...

    published: 16 Aug 2021
  • US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikes

    Losing elevation quickly on US-14A with slick metal cattle gaurds in middle of corners and cliffhanger switch-backs. No. 3

    published: 01 Aug 2006
  • Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhill

    Luv 2 Drivelapse? - http://www.facebook.com/takemytripdotcom "Like" for updates & great travel ideas This is part 2 of a series of 3 videos that take you from Interstate 205 in Portland, Oregon, across the Columbia River into Washington, and then east on WA 14, all the way to Interstate 82 near Pasco/Kennewick/Richland. This portion begins at Stevenson, Washington, and takes you through the most beautiful part of the gorge, all the way to the Stonehenge Memorial at Maryhill, Washington. Music Info: Artist: Chris Zabriskie Titles May Include: Oxygen Garden I Am a Man Who Will Fight for Your Honor Out of the Skies, Under the Earth The Life and Death of a Certain K. Zabriskie, Patriarch I Am Running Down the Long Hallway of Viewmont Elementary I Am Running with Temporary Success from...

    published: 05 Jul 2014
  • ⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury

    ⁴ᴷ Road Trip #1038 - I-89 South - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury We continue across Vermont and New Hampshire along Interstate 89, covering miles 87 to 63. Photo: Round Church by Redjar, Wikimedia Commons, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=326740 Interstate 89 (I-89) is a major highway in the New England region, running from Bow, New Hampshire, to the Canada–United States border between Highgate Springs, Vermont, and Saint-Armand, Quebec. Despite being marked as a north-south route, I-89 actually follows a northwest-southeast path. The highway serves as a key connection between Montreal, Canada, and Boston, U.S., with Quebec's Route 133 continuing northward into Canada. When Quebec completes Autoroute 35, there will be a nonstop free...

    published: 18 Oct 2024
  • Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4K

    Utah Scenic Byway drive through snowy Cedar Canyon on Utah Route 14 (Markagunt High Plateau Scenic Byway) in southwest Utah.We begin at nearly 10,000 feet in elevation close to Cedar Breaks National Monument and head west down into Cedar Canyon. This drive was filmed in March. Enjoy our work? You can support us by hitting the Subscribe button and liking and sharing our videos. We also accept donations through PayPal here: https://www.paypal.com/donate/?hosted_button_id=4AW8KGL5ZGRZ6 You can also support AdventureEveryDay on Patreon here: https://www.patreon.com/AdventureEveryDay Your support is greatly appreciated! Click here for the sunset version of this scenic byway drive: https://youtu.be/cBiZixMAcjs End Screen Music Credit: Fractal Man - The Glow of All Things https://fractalman.b...

    published: 01 Apr 2023
developed with YouTube
U.S Route 14  - American Truck Simulator | Thrustmaster T300RS
39:51

U.S Route 14 - American Truck Simulator | Thrustmaster T300RS

  • Order:
  • Duration: 39:51
  • Uploaded Date: 09 Jul 2022
  • views: 175603
Update 1.45 of American Truck Simulator brings the city of Cody and the US-14 for Wyoming DLC owners and much more. In this video, we take the International 9900i along US-14, although a no entry for truckers, I thought I'd show the scenic route. For some extras and behind the scenes: www.instagram.com/xpertgamingtech_official/ PC Specification: (DESKTOP) Processor: AMD Ryzen 3900X Motherboard: ASUS TUF GAMING X570-PLUS GPU: Asus ROG Strix RTX 3080ti OC edition RAM: 32GB DDR4 Mods used (Use at your own risk): CAT C-15 MBN Sound & Engine Pack https://www.zeemods.com/p/cat-c15-mbn-sound-engine-pack/ Smooth Interior Camera v2.0 https://forum.scssoft.com/viewtopic.php?t=248870 Realistic Truck Physics Mod v8.2 (by Frkn64) https://steamcommunity.com/sharedfiles/filedetails/?id=2254213086 HN Immersive Symbols Extreme https://steamcommunity.com/sharedfiles/filedetails/?id=1709842802 Music Used: Voyage - LEMMiNO https://www.youtube.com/watch?v=2D9ri6Ek
https://wn.com/U.S_Route_14_American_Truck_Simulator_|_Thrustmaster_T300Rs
Wyoming Bighorn Mountains - Scenic HWY 14 Byway
22:04

Wyoming Bighorn Mountains - Scenic HWY 14 Byway

  • Order:
  • Duration: 22:04
  • Uploaded Date: 18 Aug 2020
  • views: 86673
Wyoming Bighorn Mountains - Scenic HWY 14 Byway Ride along as I travel thru the Scenic Bighorn Mountains across the northern Wyoming HWY 14 Scenic Byway. Support RVerTV Click Right Here: https://www.buymeacoffee.com/uPhJL3S89 RVerTV MERCHANDISE - https://teespring.com/stores/rvertv-apparel RVerTV AMAZON STORE...https://www.amazon.com/shop/rvertv RVerTV T-Shirts AVAILABLE !! : http://amzn.to/2rg05p9 SUPPORT RVerTV For Free! Click Here : http://amzn.to/1Qd5z80 Full-Time RV Living , RV Lifestyle, RV Life Van Life Van Travel Camera Equipment I Use - Daily Drone : https://amzn.to/2zZtiY6 Dashcam: https://amzn.to/34B3Kyn Scenery: https://amzn.to/2LHVN1F What Drone I use https://youtu.be/IMkTvR0xi7k LET'S CONNECT!: Facebook ... https://www.facebook.com/rvertv.tv Twitter... https://twitter.com/rvertv FREE Pictures: "http://rvertv.tv/" RVerTV Website.... : http://rvertv.tv/ Music Provided From The YouTube Audio Library Maps Provided by Google Reusing Or Redistributing Videos From The "RVerTV" Channel Must Have Permission From RVerTV Productions. All videos and footage included Thanks for watching RVerTV….. Full Time RV Living and Video Photography… #rvlifestyle #vanlife#sprintervan#rvertv
https://wn.com/Wyoming_Bighorn_Mountains_Scenic_Hwy_14_Byway
Washington State Route 14
1:27

Washington State Route 14

  • Order:
  • Duration: 1:27
  • Uploaded Date: 10 Oct 2014
  • views: 2869
State Route 14 (SR 14) is a 180.66-mile-long (290.74 km) state highway in the U.S. state of Washington. The highway travels east-west on the north side of the Columbia River, opposite Interstate 84 (I-84) to the south in Oregon. SR 14 forms a section of the Lewis and Clark Trail Scenic Byway and begins at an interchange with I-5 in Vancouver. The highway travels east as a four-lane freeway through Camas and Washougal and intersects I-205. SR 14 continues east as a two-lane highway through Clark, Skamania, Klickitat, and Benton counties before it ends at an interchange with I-82 and U.S. Route 395 (US 395) near Plymouth.
https://wn.com/Washington_State_Route_14
Route 66 Road Trip: 14 Days Driving the Main Street of America
2:00:55

Route 66 Road Trip: 14 Days Driving the Main Street of America

  • Order:
  • Duration: 2:00:55
  • Uploaded Date: 07 Mar 2020
  • views: 15516705
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 - 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=r1u6sUBfqjA Also, I mention these videos I made as well in the video. Petrified Forest - https://www.youtube.com/watch?v=PPew7BuUego&t= Santa Fe - https://www.youtube.com/watch?v=mKd3qnoWYc8&t= Read about all of the days here https://www.throughmylens.com/arizona/route-66-road-trip/ Chapters: -- 0:00 - Intro 0:39 - California 18:16 - Arizona 37:40 - New Mexico 50:56 - Texas 1:00:23 - Oklahoma 1:20:34 - Kansas 1:23:29 - Missouri 1:42:57 - Illinois 2:00:00 - Outro -- 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 use here https://www.amazon.com/shop/californiathroughmylens Music: Epidemic Sound https://www.epidemicsound.com/referral/usqgdp/
https://wn.com/Route_66_Road_Trip_14_Days_Driving_The_Main_Street_Of_America
US Route 14, near Carlile in Wyoming, Part 1.
3:21

US Route 14, near Carlile in Wyoming, Part 1.

  • Order:
  • Duration: 3:21
  • Uploaded Date: 18 Nov 2020
  • views: 818
Heading east bound on US Route 14, here we are a short distance to the west from the Community of Carlile in Wyoming. Music: Midnight North (Jack"s Garage)
https://wn.com/US_Route_14,_Near_Carlile_In_Wyoming,_Part_1.
IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoad
38:52

IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoad

  • Order:
  • Duration: 38:52
  • Uploaded Date: 16 Aug 2021
  • views: 2006
**Best viewed in 1080p60 or 720p60 In the series finale of the NB IL Route 59 VirtualRoad series, we drive up the remaining miles of IL Route 59 north through western Lake County, IL through several smaller suburbs before reaching the final one of Antioch, IL just over one mile south of the Wisconsin State Line. I always love driving up through Lake County and it's beauty. It is a nice mix of hills, woods, prairies, lakes, and suburb. You'll notice that the road is mostly one lane in each direction with the exception of between Wauconda and Fox Lake when we are on the same road as U.S. Route 12. Western Lake County is largely rural with suburban areas in each of the suburbs we pass through. Many of the suburbs further north were historically more like "getaway" towns that people in the big city would go to get away and hang out on the water. You'll see lots of boat dealers in the back half of the ride since there are many lakes up there with houses that back up to them. Enjoy this last ride of this series through hills, woods, prairies, and by lakes up to the end of the road in the heart of Antioch, IL! Remember to hit the like button, subscribe, and hit the bell to keep this channel moving!
https://wn.com/Il_Route_59_Nb,_U.S._Route_14_(Barrington,_Il)_To_Il_Route_83_(Antioch,_Il)_|_Virtualroad
US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikes
4:29

US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikes

  • Order:
  • Duration: 4:29
  • Uploaded Date: 01 Aug 2006
  • views: 4360
Losing elevation quickly on US-14A with slick metal cattle gaurds in middle of corners and cliffhanger switch-backs. No. 3
https://wn.com/US_Route_14A_Down_Hill_Heading_To_Big_Horn_Basin,_Wyoming_On_Sport_Bikes
Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhill
13:30

Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhill

  • Order:
  • Duration: 13:30
  • Uploaded Date: 05 Jul 2014
  • views: 3761
Luv 2 Drivelapse? - http://www.facebook.com/takemytripdotcom "Like" for updates & great travel ideas This is part 2 of a series of 3 videos that take you from Interstate 205 in Portland, Oregon, across the Columbia River into Washington, and then east on WA 14, all the way to Interstate 82 near Pasco/Kennewick/Richland. This portion begins at Stevenson, Washington, and takes you through the most beautiful part of the gorge, all the way to the Stonehenge Memorial at Maryhill, Washington. Music Info: Artist: Chris Zabriskie Titles May Include: Oxygen Garden I Am a Man Who Will Fight for Your Honor Out of the Skies, Under the Earth The Life and Death of a Certain K. Zabriskie, Patriarch I Am Running Down the Long Hallway of Viewmont Elementary I Am Running with Temporary Success from a Monstrous Vacuum In Pursuit Divider Wonder Cycle Candlepower Air Hockey Saloon Mario Bava Sleeps In a Little Later Than He Expected To. You'll find the track title(s) at the end of the video. Check out Chris's music: http://chriszabriskie.com Yes, I do have written permission from Chris to use his music.
https://wn.com/Washington_Route_14_Time_Lapse_Dashcam_To_Stonehenge_At_Maryhill
⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury
10:54

⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury

  • Order:
  • Duration: 10:54
  • Uploaded Date: 18 Oct 2024
  • views: 267
⁴ᴷ Road Trip #1038 - I-89 South - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury We continue across Vermont and New Hampshire along Interstate 89, covering miles 87 to 63. Photo: Round Church by Redjar, Wikimedia Commons, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=326740 Interstate 89 (I-89) is a major highway in the New England region, running from Bow, New Hampshire, to the Canada–United States border between Highgate Springs, Vermont, and Saint-Armand, Quebec. Despite being marked as a north-south route, I-89 actually follows a northwest-southeast path. The highway serves as a key connection between Montreal, Canada, and Boston, U.S., with Quebec's Route 133 continuing northward into Canada. When Quebec completes Autoroute 35, there will be a nonstop freeway between these two cities. The largest cities directly served by I-89 include Concord in New Hampshire, and Montpelier and Burlington in Vermont. I-89 is one of three major Interstates located entirely in New England, along with I-91 and I-93. Unlike other highways, I-89 doesn’t intersect any east-west Interstates, but it parallels several U.S. routes like US Route 4, US Route 2, and US Route 7, overlapping with them in certain sections. In Vermont’s Chittenden County, I-89 has an auxiliary route, I-189, which connects South Burlington to downtown Burlington. Construction is underway to further link this route with the Champlain Parkway. In New Hampshire, I-89 spans about 61 miles, primarily serving the western part of the state. The highway begins at an interchange with I-93 near Concord, running northwest through rural towns like Hopkinton, Grantham, and Warner, before reaching Lebanon at the Vermont state line. Notable population centers along the route include Concord and Lebanon. The towns of Grantham and Enfield, which are less populated, were affected by the highway’s construction, and unique exit names like “Montcalm” and “Purmort” were selected by local officials to reflect the history of the area. Crossing into Vermont, I-89 continues its journey northwest. It intersects I-91 near White River Junction and continues through scenic areas such as the Green Mountains and Vermont’s capital, Montpelier. Important towns along the way include Barre, Waterbury, and St. Albans. The highway eventually reaches Burlington, where it transitions from the mountainous regions into the Champlain Valley. The busy exit 14 near Burlington connects to downtown, the University of Vermont, and retail areas. I-89’s northern stretch passes through small towns like Milton, Georgia, and Swanton before ending at the Canada-U.S. border in Highgate Springs. At the border, I-89 transitions into Quebec’s Route 133, though this route is not a freeway. Plans to complete Autoroute 35, connecting I-89 directly with Montreal, are expected to be finished by 2025. Historically, I-89 was part of the Federal-Aid Highway Act of 1956, originally planned to run from Norwalk, Connecticut, to the Canadian border. However, opposition led to a shift in its route, creating a connection between Boston and Montreal. The first sections opened in the early 1960s, with the highway being fully completed by 1982. Some parts of the original I-89 plan were built in Connecticut and Vermont and are now part of U.S. Route 7. Future developments on I-89 include several infrastructure projects, such as reconstructing the Vietnam Veterans Memorial Bridge between Vermont and New Hampshire and building Vermont’s first diverging diamond interchange at exit 16 in Colchester. Additionally, improvements are planned for exit 17 in Colchester to reduce traffic congestion. These projects are expected to be completed by 2026. Music licensed by https://Artlist.io 1 Peaks & Valleys - Take Me Back 2 T_Asco - Warm Winter - Instrumental Version 3 Maybird - Alice Listen to the Birds Sing - Instrumental Version We are jasonh300 and sippigrrrl! Click here to become a Supporting Channel Member! https://www.youtube.com/channel/UCKh7cJvWxiR-ckQVUcq5jOw/join Subscribe here: https://www.youtube.com/504roadtrips?sub_confirmation=1 Facts and information in our videos come from Wikipedia and other sources, and may or may not be factual.
https://wn.com/⁴ᴷ_Road_Trip_1038_I_89_S_Vermont_Mile_87_63_Williston_Richmond_Bolton_Waterbury
Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4K
46:33

Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4K

  • Order:
  • Duration: 46:33
  • Uploaded Date: 01 Apr 2023
  • views: 17368
Utah Scenic Byway drive through snowy Cedar Canyon on Utah Route 14 (Markagunt High Plateau Scenic Byway) in southwest Utah.We begin at nearly 10,000 feet in elevation close to Cedar Breaks National Monument and head west down into Cedar Canyon. This drive was filmed in March. Enjoy our work? You can support us by hitting the Subscribe button and liking and sharing our videos. We also accept donations through PayPal here: https://www.paypal.com/donate/?hosted_button_id=4AW8KGL5ZGRZ6 You can also support AdventureEveryDay on Patreon here: https://www.patreon.com/AdventureEveryDay Your support is greatly appreciated! Click here for the sunset version of this scenic byway drive: https://youtu.be/cBiZixMAcjs End Screen Music Credit: Fractal Man - The Glow of All Things https://fractalman.bandcamp.com/ https://soundcloud.com/fractalmanmusic/ © AdventureEveryDay - Any unauthorized reproduction or distribution of this work is illegal. AdventureEveryDay does not own or claim to own any of the music contained in this work.
https://wn.com/Utah_Scenic_Byway_Mountain_Drive_|_Highway_14_Through_Cedar_Canyon_4K
  • Route 66 Road Trip: 14 Days Driving the Main Street of America

    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 - ...

    published: 07 Mar 2020
  • The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)

    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...

    published: 14 Jul 2022
  • A Brief History of US Highway Route 66

    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...

    published: 04 Sep 2019
  • The BEST Stops On Route 66 | US Road Trip

    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

    published: 29 Oct 2022
  • Route 66 Road Trip: Everything To Do & See

    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...

    published: 08 Feb 2022
  • Road Trip Across Route 66 | New Mexico, Oklahoma & Texas

    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...

    published: 11 Apr 2023
  • Why Route 66 became America’s most famous road

    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...

    published: 16 Aug 2019
  • Route 66: 20 Great Stops on the Road Trip

    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 ...

    published: 27 Sep 2019
  • Driving Route 66, America's Main Street

    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....

    published: 24 Dec 2023
  • Route 66 Road Trip Stops in Arizona

    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...

    published: 18 Jan 2020
developed with YouTube
Route 66 Road Trip: 14 Days Driving the Main Street of America
2:00:55

Route 66 Road Trip: 14 Days Driving the Main Street of America

  • Order:
  • Duration: 2:00:55
  • Uploaded Date: 07 Mar 2020
  • views: 15516705
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 - 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=r1u6sUBfqjA Also, I mention these videos I made as well in the video. Petrified Forest - https://www.youtube.com/watch?v=PPew7BuUego&t= Santa Fe - https://www.youtube.com/watch?v=mKd3qnoWYc8&t= Read about all of the days here https://www.throughmylens.com/arizona/route-66-road-trip/ Chapters: -- 0:00 - Intro 0:39 - California 18:16 - Arizona 37:40 - New Mexico 50:56 - Texas 1:00:23 - Oklahoma 1:20:34 - Kansas 1:23:29 - Missouri 1:42:57 - Illinois 2:00:00 - Outro -- 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 use here https://www.amazon.com/shop/californiathroughmylens Music: Epidemic Sound https://www.epidemicsound.com/referral/usqgdp/
https://wn.com/Route_66_Road_Trip_14_Days_Driving_The_Main_Street_Of_America
The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)
20:11

The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)

  • Order:
  • Duration: 20:11
  • Uploaded Date: 14 Jul 2022
  • views: 910976
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 and Museum. Support the Channel by becoming a member 👉 https://youtube.com/channel/UCzIZ8HrzDgc-pNQDUG6avBA/join Chapters: 00:00 Why Route 66 starts in Chicago and ends in Los Angeles 00:43 Before Route 66 pioneers traveled dirt roads 01:35 Railroads eventually were built alongside the dusty trails 02:09 The boom of the automobile 03:29 The nation’s first all-weather highway 04:59 Cyrus Avery is credited with creating Route 66 06:55 Why Route 66 was almost named Route 60 08:03 Route 66 Gas stations, motels, and other facilities 11:56 John Steinbeck wrote frequently about Route 66 12:11 Terrible effects of the Dust Bowl 13:30 The best sights along Route 66 16:06 Route 66 presence in American Cinema 16:59 Route 66 decommissioned as a major American highway IT’S HISTORY - Weekly tales of American Urban Decay as presented by your host Ryan Socash. https://www.youtube.com/playlist?list=PL2NN2rktA4yMZ4vmNaA3KpsS5KXLj3xVN » Subscribe: https://youtube.com/@ITSHISTORY?sub_confirmation=1 » Listen podcasts: https://ffm.bio/itshistory » CONTACT For brands, agencies, and sponsorships: itshistory@thoughtleaders.io » CREDIT Scriptwriter - Camrin Dekis, Editor - Milada Canowiecka Host - Ryan Socash Sponsor - Bespoke Post » SOURCES https://www.facebook.com/groups/itshistory/ » NOTICE Some images may be used for illustrative purposes only - always reflecting the accurate time frame and content. Events of factual error / mispronounced word/spelling mistakes - retractions will be published in this section.
https://wn.com/The_Rise_And_Fall_Of_Route_66_(Why_America's_Greatest_Road_Fell_Into_Oblivion)
A Brief History of US Highway Route 66
8:00

A Brief History of US Highway Route 66

  • Order:
  • Duration: 8:00
  • Uploaded Date: 04 Sep 2019
  • views: 123453
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/ Gear I use: http://letsgoroadtrippin.com/gear/ Support us on Patreon: http://www.patreon.com/LetsGoRoadTrippin Shop for Merchandise: https://teespring.com/stores/lets-go-road-trippin-gear http://letsgoroadtrippin.spreadshirt.com/ #JustExploreIt #LetsGoRoadTrippin #nosmallcreator
https://wn.com/A_Brief_History_Of_US_Highway_Route_66
The BEST Stops On Route 66 | US Road Trip
9:11

The BEST Stops On Route 66 | US Road Trip

  • Order:
  • Duration: 9:11
  • Uploaded Date: 29 Oct 2022
  • views: 157627
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
https://wn.com/The_Best_Stops_On_Route_66_|_US_Road_Trip
Route 66 Road Trip: Everything To Do & See
1:07:21

Route 66 Road Trip: Everything To Do & See

  • Order:
  • Duration: 1:07:21
  • Uploaded Date: 08 Feb 2022
  • views: 1104408
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 Resources: These 3 books were absolutely critical for our trip and I highly recommended them! (affiliate links) -Route 66 Road Trip Travel Guide: https://amzn.to/3cIYpdU -Route 66: EZ66 GUIDE For Travelers: https://amzn.to/3FKYNFd -Route 66 Adventure Handbook: https://amzn.to/3E0UgOx ━━━━━━━━━▲━━━━━━━━━ You've stumbled upon Curiosityness where I Showcase Unique Places, Quirky History, & Remarkable People! Join me, Travis DeRose, as I interview guests like the Inventor of the Waterbed, a Star Wars visual Effects artist, the Apollo 13 flight controller, & even a woman who taught her dog to talk, just to name a few. Plus, I visit and tour a ton of places like the World's Oldest McDonald's, California's 1st Coffee Farm, & Forrest Gump Point. It's a lot but if you're curious about our world, you'll love it & I encourage you to subscribe! ━━━━━━━━━▼━━━━━━━━━ Check out the Curiosityness podcast! Available on Apple Podcasts, Spotify, Google Podcasts, or wherever you listen to your podcasts at https://www.curiosityness.com/ Connect with Curiosityness... Instagram: https://www.instagram.com/curiositynesspodcast Facebook: https://www.facebook.com/curiosityness Twitter: https://twitter.com/curiositynesstv And find me, the host of Curiosityness on Instagram: https://www.instagram.com/travderose/ Or send me an email to travis@curiosityness.com Claim your FREE Curiosityness sticker at https://www.curiosityness.com/freesticker/ Microphone I use for my Podcast interviews: https://amzn.to/2YzugHG
https://wn.com/Route_66_Road_Trip_Everything_To_Do_See
Road Trip Across Route 66 | New Mexico, Oklahoma & Texas
2:32

Road Trip Across Route 66 | New Mexico, Oklahoma & Texas

  • Order:
  • Duration: 2:32
  • Uploaded Date: 11 Apr 2023
  • views: 14878857
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 explore all the exciting travel possibilities in the United States. Watch our videos and discover it, all within your reach.
https://wn.com/Road_Trip_Across_Route_66_|_New_Mexico,_Oklahoma_Texas
Why Route 66 became America’s most famous road
17:42

Why Route 66 became America’s most famous road

  • Order:
  • Duration: 17:42
  • Uploaded Date: 16 Aug 2019
  • views: 2061672
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 unexpected ways. When Cyrus Avery helped found Route 66 in the 1920s, he strived to create a road that would connect the Midwest to the West, and he resorted to promotional tricks and wheeling and dealing to get it done. The road quickly became a key route for migrants escaping the dust bowl and depression, forming its early reputation as “the Mother Road.” That’s because it’s a road that’s more than a strip of concrete (or gravel, or dirt). It’s a historical document of everyone who’s traveled on it — as the many contributions from Vox’s YouTube subscribers show, that keeps it going even as the interstates run alongside it. The number of Route 66 resources out there is huge, but we found these particularly helpful. Check out Ron's site! https://www.route66news.com/ The Curt Teich Archives https://www.newberry.org/curt-teich-p... You won't find essays here, but you will find a treasure trove of postcards that we used in this piece, including tons of Route 66 arcana. Route 66: The Highway and Its People https://www.amazon.com/gp/product/080... I got to speak with Quinta Scott about her gorgeous photographs of Route 66, as well as the interviews she recorded with coauthor Susan Kelly. This book is a pleasure to look at and is packed full of information and interviews that you just can’t get any more. The Route 66 Road Ahead Partnership http://route66roadahead.com/ If you’re curious about Route 66 preservation and revitalization, this group is one of the strongest interstate partnerships searching for new ways to promote and improve the road. Our video about the Green Book, a critical resource for black Americans wanting to travel across the country on Route 66 and beyond in the mid-1900s. https://www.youtube.com/watch?v=b33PN2NB2Do Subscribe to our channel! http://goo.gl/0bsAjO Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com. Watch our full video catalog: http://goo.gl/IZONyE Follow Vox on Facebook: http://goo.gl/U2g06o Or Twitter: http://goo.gl/XFrZ5H
https://wn.com/Why_Route_66_Became_America’S_Most_Famous_Road
Route 66: 20 Great Stops on the Road Trip
11:25

Route 66: 20 Great Stops on the Road Trip

  • Order:
  • Duration: 11:25
  • Uploaded Date: 27 Sep 2019
  • views: 842898
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 use here https://www.amazon.com/shop/californiathroughmylens
https://wn.com/Route_66_20_Great_Stops_On_The_Road_Trip
Driving Route 66, America's Main Street
7:10

Driving Route 66, America's Main Street

  • Order:
  • Duration: 7:10
  • Uploaded Date: 24 Dec 2023
  • views: 703
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.S. Route 66, stretches approximately 2,448 miles from Chicago, Illinois, to Santa Monica, California, passing through eight states along the way. Embarking on a road trip along Route 66 is like stepping back in time, as the route preserves the charm and character of a bygone era. The highway was established in 1926 and played a crucial role in connecting the East and West coasts of the United States, fostering economic growth and cultural exchange. Today, driving Route 66 is not just a road trip; it's an immersive experience that allows travelers to witness the evolution of American culture. The journey begins in Chicago, where Route 66 starts its westward course. As you traverse the route, you'll encounter a fascinating array of landmarks, roadside attractions, and small towns that capture the essence of American history. The iconic architecture of the Wigwam Motel in Holbrook, Arizona, or the Cadillac Ranch in Amarillo, Texas, are just a couple of examples of the quirky and distinctive sites that dot the landscape. Each state along Route 66 boasts its own unique flavor, from the vast plains of Oklahoma to the stunning desert landscapes of Arizona and California. The route takes you through the Ozarks, the Texas Panhandle, and the picturesque landscapes of New Mexico, offering a diverse tapestry of scenery that changes with every mile. One of the charms of Route 66 is the opportunity to interact with locals in the small towns that line the highway. These communities have preserved the spirit of the Mother Road, and travelers can enjoy authentic diners, museums, and shops that pay homage to the route's history. The people you meet along the way will share their stories, adding a personal touch to your journey. As you approach the end of the route in Santa Monica, California, the sense of accomplishment is palpable. The journey along Route 66 is not just about reaching the destination but embracing the adventure and discovery along the way. Driving America's Main Street is a nostalgic and unforgettable experience, weaving together the threads of history, culture, and the open road into a tapestry of the American dream. #What_are_the_best_landmarks_on_Driving_Route_66 #How_long_does_it_take_to_drive_the_entire_Route_66 #Which_states_does_Route_66_cross #Are_there_any_ghost_towns_along_Route_66 #What_is_the_best_time_to_drive_Route_66 #Where_can_I_find_iconic_diners_on_Route_66 #How_much_does_it_cost_to_drive_Route_66 #Which_season_is_the_most_scenic_on_Route_66 #What_are_the_top_museums_on_America's_Main_Street #How_to_plan_a_budget-friendly_trip_on_Route_66 #Where_to_find_Route_66_travel_guides #Are_there_any_free_campsites_along_Route_66 #What_is_the_best_way_to_navigate_Route_66 #How_to_avoid_traffic_on_America's_Main_Street #What_are_the_most_photogenic_spots_on_Route_66 #Which_hotels_are_recommended_on_the_Mother_Road #How_to_rent_a_classic_car_for_Route_66 #What_are_the_best_Route_66_photography_tips #Are_there_any_special_events_on_Route_66 #How_to_prepare_for_driving_Route_66_in_winter #What_are_the_safety_tips_for_Route_66_travelers #Where_to_find_Route_66_travel_packages #How_to_plan_a_family-friendly_trip_on_America's_Main_Street #What_are_the_most_popular_Route_66_souvenirs #Are_there_any_Route_66_tours_for_seniors #How_to_avoid_speed_traps_on_Route_66 #What_are_the_best_mobile_apps_for_Route_66_travelers #Where_to_find_Route_66_trip_planning_services #How_to_locate_gas_stations_on_America's_Main_Street #What_are_the_most_common_Route_66_travel_mistakes #Are_there_any_Route_66_travel_agencies #How_to_avoid_road_closures_on_Driving_Route_66 #What_are_the_best_Route_66_travel_books #Where_to_find_Route_66_weather_forecasts #How_to_stay_connected_while_driving_America's_Main_Street #What_are_the_most_scenic_stretches_on_Route_66 #Are_there_any_Route_66_travel_forums #How_to_avoid_toll_booths_on_Driving_Route_66 #What_are_the_best_Route_66_travel_podcasts #Where_to_find_Route_66_safety_recommendations #How_to_adapt_to_time_zone_changes_on_America's_Main_Street #What_are_the_best_Route_66_travel_blogs #Are_there_any_Route_66_travel_apps #How_to_plan_a_pet-friendly_trip_on_Route_66
https://wn.com/Driving_Route_66,_America's_Main_Street
Route 66 Road Trip Stops in Arizona
20:22

Route 66 Road Trip Stops in Arizona

  • Order:
  • Duration: 20:22
  • Uploaded Date: 18 Jan 2020
  • views: 825072
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=r1u6sUBfqjA Read about each day on the journey at https://www.throughmylens.com/arizona/route-66-road-trip/ 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 use here https://www.amazon.com/shop/californiathroughmylens Music: Epidemic Sound https://www.epidemicsound.com/referral/usqgdp/
https://wn.com/Route_66_Road_Trip_Stops_In_Arizona
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • U.S Route 14  - American Truck Simulator | Thrustmaster T300RS
    39:51
    U.S Route 14 - American Truck Simulator | Thrustmaster T300RSremove from playlist
  • Wyoming Bighorn Mountains - Scenic HWY 14 Byway
    22:04
    Wyoming Bighorn Mountains - Scenic HWY 14 Bywayremove from playlist
  • Washington State Route 14
    1:27
    Washington State Route 14remove from playlist
  • Route 66 Road Trip: 14 Days Driving the Main Street of America
    2:00:55
    Route 66 Road Trip: 14 Days Driving the Main Street of Americaremove from playlist
  • US Route 14, near Carlile in Wyoming, Part 1.
    3:21
    US Route 14, near Carlile in Wyoming, Part 1.remove from playlist
  • IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoad
    38:52
    IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoadremove from playlist
  • US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikes
    4:29
    US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikesremove from playlist
  • Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhill
    13:30
    Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhillremove from playlist
  • ⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury
    10:54
    ⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterburyremove from playlist
  • Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4K
    46:33
    Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4Kremove from playlist
developed with YouTube
PLAYLIST TIME:

U.S Route 14 - American Truck Simulator | Thrustmaster T300RS

Update 1.45 of American Truck Simulator brings the city of Cody and the US-14 for Wyoming DLC owners and much more. In this video, we take the International 9900i along US-14, although a no entry for truckers, I thought I'd show the scenic route. For some extras and behind the scenes: www.instagram.com/xpertgamingtech_official/ PC Specification: (DESKTOP) Processor: AMD Ryzen 3900X Motherboard: ASUS TUF GAMING X570-PLUS GPU: Asus ROG Strix RTX 3080ti OC edition RAM: 32GB DDR4 Mods used (Use at your own risk): CAT C-15 MBN Sound & Engine Pack https://www.zeemods.com/p/cat-c15-mbn-sound-engine-pack/ Smooth Interior Camera v2.0 https://forum.scssoft.com/viewtopic.php?t=248870 Realistic Truck Physics Mod v8.2 (by Frkn64) https://steamcommunity.com/sharedfiles/filedetails/?id=2254213086 HN Immersive Symbols Extreme https://steamcommunity.com/sharedfiles/filedetails/?id=1709842802 Music Used: Voyage - LEMMiNO https://www.youtube.com/watch?v=2D9ri6Ek
39:51
U.S Route 14 - American Truck Simulator | Thrustmaster T300RS
Update 1.45 of American Truck Simulator brings the city of Cody and the US-14 for Wyoming ...
published: 09 Jul 2022
Play in Full Screen
22:04
Wyoming Bighorn Mountains - Scenic HWY 14 Byway
Wyoming Bighorn Mountains - Scenic HWY 14 Byway Ride along as I travel thru the Scenic Big...
published: 18 Aug 2020
Play in Full Screen
1:27
Washington State Route 14
State Route 14 (SR 14) is a 180.66-mile-long (290.74 km) state highway in the U.S. state o...
published: 10 Oct 2014
Play in Full Screen
2:00:55
Route 66 Road Trip: 14 Days Driving the Main Street of America
Route 66 is the United State's historic highway that was established in 1926, It is over 2...
published: 07 Mar 2020
Play in Full Screen
3:21
US Route 14, near Carlile in Wyoming, Part 1.
Heading east bound on US Route 14, here we are a short distance to the west from the Commu...
published: 18 Nov 2020
Play in Full Screen
38:52
IL Route 59 NB, U.S. Route 14 (Barrington, IL) to IL Route 83 (Antioch, IL) | VirtualRoad
**Best viewed in 1080p60 or 720p60 In the series finale of the NB IL Route 59 VirtualRoad ...
published: 16 Aug 2021
Play in Full Screen
4:29
US Route 14A Down Hill Heading to Big Horn Basin, Wyoming on Sport Bikes
Losing elevation quickly on US-14A with slick metal cattle gaurds in middle of corners and...
published: 01 Aug 2006
Play in Full Screen
13:30
Washington Route 14 Time Lapse Dashcam: to Stonehenge at Maryhill
Luv 2 Drivelapse? - http://www.facebook.com/takemytripdotcom "Like" for updates & great tr...
published: 05 Jul 2014
Play in Full Screen
10:54
⁴ᴷ Road Trip #1038 - I-89 S - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury
⁴ᴷ Road Trip #1038 - I-89 South - Vermont Mile 87-63 - Williston/Richmond/Bolton/Waterbury...
published: 18 Oct 2024
Play in Full Screen
46:33
Utah Scenic Byway Mountain Drive | Highway 14 Through Cedar Canyon 4K
Utah Scenic Byway drive through snowy Cedar Canyon on Utah Route 14 (Markagunt High Platea...
published: 01 Apr 2023
Play in Full Screen

U.S. Route 69

U.S. Route 69 is a northsouth 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.

Route description

Texas

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.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Route 66 Road Trip: 14 Days Driving the Main Street of America
    2:00:55
    Route 66 Road Trip: 14 Days Driving the Main Street of Americaremove from playlist
  • The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)
    20:11
    The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)remove from playlist
  • A Brief History of US Highway Route 66
    8:00
    A Brief History of US Highway Route 66remove from playlist
  • The BEST Stops On Route 66 | US Road Trip
    9:11
    The BEST Stops On Route 66 | US Road Tripremove from playlist
  • Route 66 Road Trip: Everything To Do & See
    1:07:21
    Route 66 Road Trip: Everything To Do & Seeremove from playlist
  • Road Trip Across Route 66 | New Mexico, Oklahoma & Texas
    2:32
    Road Trip Across Route 66 | New Mexico, Oklahoma & Texasremove from playlist
  • Why Route 66 became America’s most famous road
    17:42
    Why Route 66 became America’s most famous roadremove from playlist
  • Route 66: 20 Great Stops on the Road Trip
    11:25
    Route 66: 20 Great Stops on the Road Tripremove from playlist
  • Driving Route 66, America's Main Street
    7:10
    Driving Route 66, America's Main Streetremove from playlist
  • Route 66 Road Trip Stops in Arizona
    20:22
    Route 66 Road Trip Stops in Arizonaremove from playlist
developed with YouTube
PLAYLIST TIME:

Route 66 Road Trip: 14 Days Driving the Main Street of America

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 - 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=r1u6sUBfqjA Also, I mention these videos I made as well in the video. Petrified Forest - https://www.youtube.com/watch?v=PPew7BuUego&t= Santa Fe - https://www.youtube.com/watch?v=mKd3qnoWYc8&t= Read about all of the days here https://www.throughmylens.com/arizona/route-66-road-trip/ Chapters: -- 0:00 - Intro 0:39 - California 18:16 - Arizona 37:40 - New Mexico 50:56 - Texas 1:00:23 - Oklahoma 1:20:34 - Kansas 1:23:29 - Missouri 1:42:57 - Illinois 2:00:00 - Outro -- 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 use here https://www.amazon.com/shop/californiathroughmylens Music: Epidemic Sound https://www.epidemicsound.com/referral/usqgdp/
2:00:55
Route 66 Road Trip: 14 Days Driving the Main Street of America
Route 66 is the United State's historic highway that was established in 1926, It is over 2...
published: 07 Mar 2020
Play in Full Screen
20:11
The Rise and Fall of Route 66 (Why America's Greatest Road Fell into Oblivion)
Thanks to Bespoke Post for sponsoring this video! Head to https://bespokepost.com/itshisto...
published: 14 Jul 2022
Play in Full Screen
8:00
A Brief History of US Highway Route 66
I have been wanting to create a video about the history of US Highway Route 66 for quite s...
published: 04 Sep 2019
Play in Full Screen
9:11
The BEST Stops On Route 66 | US Road Trip
In this video, you will see the best stops when driving Route 66. Route 66, dubbed "the M...
published: 29 Oct 2022
Play in Full Screen
1:07:21
Route 66 Road Trip: Everything To Do & See
We did it! — Route 66 from Chicago to LA. 28 Days. 4 Adults, 1 dog, 1 cat, all in a Winneb...
published: 08 Feb 2022
Play in Full Screen
2:32
Road Trip Across Route 66 | New Mexico, Oklahoma & Texas
Follow best friends Ines and Imene as they travel across the states on iconic Route 66. Ex...
published: 11 Apr 2023
Play in Full Screen
17:42
Why Route 66 became America’s most famous road
Route 66 is iconic. Why? Help us make more ambitious videos by joining the Vox Video Lab....
published: 16 Aug 2019
Play in Full Screen
11:25
Route 66: 20 Great Stops on the Road Trip
Route 66 is one of the most famous drives in the world. I got a chance to drive it with my...
published: 27 Sep 2019
Play in Full Screen
7:10
Driving Route 66, America's Main Street
Subscribe to : https://www.youtube.com/channel/UCe5JdtBHlCMVJ8jG-QVdU6g Chapters 0:00 Dri...
published: 24 Dec 2023
Play in Full Screen
20:22
Route 66 Road Trip Stops in Arizona
Route 66 in Arizona has a lot of fun and historic attractions. This video is from my dad a...
published: 18 Jan 2020
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: u.s. route 116

Edit

Randle triumphant vs ex-team Knicks

The Philippine Star 18 Jan 2025
Julius Randle marked his return to Madison Square Garden with a quiet game. But his impact was felt in the Minnesota Timberwolves’ 116-99 rout of his former team, the New York Knicks, on Friday night (Saturday Manila time) ....
Edit

Bristol house fire halts traffic on Route 116 on Wednesday evening

Addison County Independent 16 Jan 2025
BRISTOL — Crews from seven local fire departments helped put out a house fire on Bristol’s East Street on Wednesday evening, Jan. 15. Route 116 was shut down in the area of 58 East St. for a time while firefighters battled the blaze ... ....
Edit

About safety: Wayne about to declare war on distracted driving crashes involving youth

The Daily Record - Wooster 16 Jan 2025
In Holmes and Wayne counties, roads with the highest number of crashes involving youth in the past five years, according to the patrol, are.State Route 83 with 116 crashesState Route 39 with 115 ...
Edit

No. 24 Wisconsin looks to continue climb against Ohio State

Atlantic News Telegraph 14 Jan 2025
Resurgent Wisconsin, which rejoined the AP rankings at No ... The injured guard's status for Tuesday was uncertain ... 15 Oregon on Thursday, 73-71 ... Earlier this month, they hit a school and Big Ten record 21 3-pointers in a 116-85 rout of Iowa ... .
Edit

A small road in Savoy is posing big challenges for drivers using it as a detour

The Berkshire Eagle 13 Jan 2025
Since November, drivers of cars and light trucks have been instructed to use half-mile Old Main Road No. 2, which cuts a corner between Route 116 and Route 8A. But the detour is proving tricky to navigate for some drivers ....
Edit

Police urge people to lock cars after 3 vehicles stolen in South Hadley, Granby

Daily Hampshire Gazette 13 Jan 2025
GRANBY/SOUTH HADLEY — Police are warning residents to keep their cars locked after three unlocked vehicles were stolen on Saturday night in neighborhoods off Route 116 that runs through Granby and South Hadley ... .
Edit

Obituary: Cecile J. Auger, 1928-2025

Seven Days 13 Jan 2025
Avid seamstress relied deeply on her Catholic faith and found comfort through prayer. Cecile J ... She was the oldest of seven children ... She was an avid seamstress, knitter and reader ... Jude Catholic Church, 10759 Route 116, Hinesburg, VT.
Edit

Delivery driver was speeding, on drugs when he caused fatal 13-car pileup in central Pa.: police

Penn Live 09 Jan 2025
The man said he passed Kravitz at Route 30 and Route 116 and noticed Kravitz’s head was bobbing up and down as if he was “on something” and asleep, according to court documents ... the Route 74 on-ramp.
Edit

Bristol Police Log: Woman cited on in-state arrest warrant

Addison County Independent 09 Jan 2025
BRISTOLBristol police on Dec ... Between Dec ... In other activity last month, Bristol police. On Dec. 1 received a shoulder bag found on Main Street. On Dec ... Investigation is ongoing. On Dec ... 6 assisted Homeland Security investigators on Route 116 North ... ....
Edit

After ugly loss, Iowa out to rebound vs. surging Nebraska

Marietta Daily Journal 07 Jan 2025
One would be hard-pressed to believe that Iowa's defense has improved from last season when looking at Friday night's game at Wisconsin, where the Badgers splashed a school-record 21 3-pointers in a 116-85 Big Ten Conference rout ... .
Edit

Hawks bucked by Badgers

Globe Gazette 07 Jan 2025
MADISON, Wis.Wisconsin routed Iowa 116-85 in Big Ten men’s basketball action on Friday night in the Kohl Center in Madison, Wisconsin ... .
Edit

NMMT Records Higher Ridership After Bus Fare Reduction on Mumbai-Navi Mumbai Atal Setu Route

The Times of India 04 Jan 2025
route 116 (Nerul-Mantralaya) now costs Rs 95, reduced from Rs 230, whilst route 117 (Kharghar-Mantralaya) has decreased to Rs 120 from Rs 270 ... These routes, introduced in September last year, operate ...
Edit

Wisconsin uses 3-point barrage in 116-85 men’s basketball demolition of Hawkeyes

The Gazette Cedar Rapids 04 Jan 2025
— Sophomore guard John Blackwell scored a career-high 32 points and led a 3-point onslaught for Wisconsin in its 116-85 men’s basketball rout of Iowa Friday night.
Edit

Mumbai-Navi Mumbai travel via Atal Setu gets cheaper as NMMT cuts fare by over 50%

Hindustan Times 02 Jan 2025
For route 116, passengers have increased from around 20 to 60, and for route 117, the count has surged from 20–25 to approximately 70,” said an NMMT official ... Two routes, 116 and 117, were ... Route 116..
Edit

Top 10: Once-in-a-lifetime eclipse wows county

Addison County Independent 02 Jan 2025
The vast majority of our top 10 stories typically involve issues with a weeks-long buildup and/or fallout ... on April 8 ... Traffic on Routes 116, 7, 22A, 30 and other major thoroughfares plodded southbound as visiting eclipse viewers excited the county ... .

Most Viewed

×