- published: 22 Dec 2022
- views: 78760
'+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; })); }); -->
Coordinates: 37°32′44″N 77°26′20″W / 37.54556°N 77.43889°W / 37.54556; -77.43889
Downtown Richmond, Virginia, is central urban area of that city. It is generally defined as being bound by Belvidere Street to the west, I-95 to the north and east, and the James River to the south. The Fan district borders it to the west, Highland Park to the north, Church Hill to the east, and Manchester to the south.
Richmond is now widely considered Virginia's "tallest" city because of many tall buildings in what is Richmond's central business district, surrounding the Virginia State Capitol and many government office buildings (many dating to the New Deal). The James Monroe Building and SunTrust Plaza tower over 449 ft, and 400 ft, respectively, making them Richmond's tallest buildings, and the state's second and third tallest in the behind the Westin Virginia Beach Town Center at 508 ft. Other towering skyscrapers include the Federal Reserve Bank of Richmond, Bank of America Plaza, the James Center, Richmond City Hall, the Riverfront Plaza twin towers, the James Madison Building, Dominion Resources headquarters building, Main Street Center, the Central National Bank, and VCU Medical Center (which includes several hospitals, most over 200 feet, and the new School of Medicine under construction will be 12 storeys). Other important buildings Downtown include the Richmond Coliseum and the Greater Richmond Convention Center (which includes a tourist information office). Shockoe Bottom and Shockoe Slip also have nightclubs, bars, condo towers and lofts in various architectural styles.
Richmond (/ˈrɪtʃmənd/ RICH-mənd) is the capital of the Commonwealth of Virginia, in the United States. It is the center of the Richmond Metropolitan Statistical Area (MSA) and the Greater Richmond Region. While it was incorporated in 1742, Richmond has been an independent city since 1871.
As of the 2010 census, the population was 204,214; in 2014, the population was estimated to be 217,853, the fourth-most populous city in Virginia. The Richmond Metropolitan Area has a population of 1,260,029, the third-most populous metro in the state.
Richmond is located at the fall line of the James River, 44 miles (71 km) west of Williamsburg, 66 miles (106 km) east of Charlottesville, and 98 miles (158 km) south of Washington, D.C. Surrounded by Henrico and Chesterfield counties, the city is located at the intersections of Interstate 95 and Interstate 64, and encircled by Interstate 295 and Virginia State Route 288. Major suburbs include Midlothian to the southwest, Glen Allen to the north and west, Short Pump to the west and Mechanicsville to the northeast.
Richmond Station may refer to:
Virginia (i/vərˈdʒɪnjə/ vər-JIN-yə, UK /vərˈdʒɪniə/ vər-JIN-ee-ə), officially the Commonwealth of Virginia, is a state located in the South Atlantic region of the United States. Virginia is nicknamed the "Old Dominion" due to its status as the first colonial possession established in mainland British America, and "Mother of Presidents" because eight U.S. presidents were born there, more than any other state. The geography and climate of the Commonwealth are shaped by the Blue Ridge Mountains and the Chesapeake Bay, which provide habitat for much of its flora and fauna. The capital of the Commonwealth is Richmond; Virginia Beach is the most populous city, and Fairfax County is the most populous political subdivision. The Commonwealth's estimated population as of 2014 is over 8.3 million.
The area's history begins with several indigenous groups, including the Powhatan. In 1607 the London Company established the Colony of Virginia as the first permanent New World English colony. Slave labor and the land acquired from displaced Native American tribes each played a significant role in the colony's early politics and plantation economy. Virginia was one of the 13 Colonies in the American Revolution and joined the Confederacy in the American Civil War, during which Richmond was made the Confederate capital and Virginia's northwestern counties seceded to form the state of West Virginia. Although the Commonwealth was under one-party rule for nearly a century following Reconstruction, both major national parties are competitive in modern Virginia.
Virginia is a 1941 American drama film directed by Edward H. Griffith. It featured the onscreen debut of Sterling Hayden.
Virginia (1913) is a novel by Ellen Glasgow about a wife and mother who in vain seeks happiness by serving her family. This novel, her eleventh, marked a clear departure from Glasgow's previous work—she had written a series of bestsellers before publishing Virginia—in that it attacked, in a subtle yet unmistakable way, the very layer of society that constituted her readership. Also, as its heroine, though virtuous and god-fearing, is denied the happiness she is craving, its plot did not live up to readers' expectations as far as poetic justice is concerned and was bound to upset some of them. Today, Virginia is seen by many as an outstanding achievement in Glasgow's career, exactly because the author defied literary convention by questioning the foundations of American society around the dawn of the 20th century, be it capitalism, religion or racism.
Born in 1864 to a clergyman and his dutiful wife, Virginia grows up as a Southern belle in the town of Dinwiddie, Virginia. Her education is strictly limited to the bare minimum, with anything that might disturb her quiet and comfortable existence vigorously avoided. Thus prepared for life, Virginia falls for the first handsome young man who crosses her path—Oliver Treadwell, the black sheep of a family of capitalist entrepreneurs who, during the time of Reconstruction, brought industry and the railroad to the South. Oliver, who has been abroad and has only recently arrived in Dinwiddie, is a dreamer and an intellectual. An aspiring playwright, his literary ambitions are more important to him than money, and he refuses his uncle's offer to work in his bank. However, when Virginia falls in love with him he realizes that he must be able to support a family, and eventually accepts his uncle's offer to work for the railroad.
Richmond, Virginia is a fascinating city. As the capital of Virginia and the former capital of the Confederacy, the city has a lot of interesting history and is unique today. I have visited the city a couple times over the past few years and have really enjoyed my experiences there. In this series I cover a city's history, population, skyline and a few things that make the city unique. Thanks for watching: Richmond Overview | An informative introduction to Richmond, Virginia. If you enjoy short geography overviews, here is a link to one of the primary books that inspired me to make this channel: https://amzn.to/4h5Qh6T (Amazon) Track: Oleg Mazur – Inspiring Corporate #citygeek #richmond
A day in my life in Richmond, VA traveling to parks, picnics, food + more!✨My Instagram: https://www.instagram.com/laurenzray Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic My Story: Moving to Richmond, VA: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray 🌱My Vegan Guide to Richmond, VA: https://www.laurenzray.com/rva-vegan-ebook Places Visited in Video: Monroe Park - https://maps.app.goo.gl/193nzRRzrJEVwDhA9 Befriend - https://www.instagram.com/befriend.movement Agecroft Hall & Gardens - https://maps.app.goo.gl/hZj3eVa72XAiuttYA Common House RVA - https://maps.app.goo.gl/o5F1XFdN7L2MwWSs6 ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear ►Video schedule: Every Sunday ►Also ...
Are you thinking about visiting Richmond Virginia and looking for some additional information on the city center of Richmond? Alright, look no further than this Richmond Virginia travel guide from Spring 2021. We take you around Main Street then head over to the James River where we then walk around the area around the civil war museum then head over towards the Virginia war memorial and then along to the Hollywood Hill Cemetery. #Richmond #Virginia #TravelGuide Island Hopper TV takes you around the world to the premiere travel destinations. Our virtual travel guides from across America to Asia, Europe and Australia have assisted many world travelers in educating themselves on their next destination to travel or even vacation.
Get exclusive discounts on your trip at the link below: https://bit.ly/bookrichmond In this video, you will learn about all the best things to do in Richmond, Virginia. There are many unique attractions and experiences for tourists and travelers to do in the city. ▬Contents of this video▬ 00:00 - Intro 00:24 - Attractions 03:37 - Museums 06:56 - Outdoor recreation 08:35 - Outro Like this content? Subscribe here: https://www.youtube.com/channel/UCxG8DXN7UCNFaVeWbBx18qA?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/channel/UCxG8DXN7UCNFaVeWbBx18qA/videos History buffs will enjoy the Virginia Museum of History and Culture for its exhaustive and expansive collection of more than 9 million items that tell the story of Virginia, starting with the Native Americans...
After living here for a few months, here are some of my cons of moving to Richmond, Virginia. ✨I'm on Instagram: https://www.instagram.com/laurenzray Mosquito Repellant: https://amzn.to/3R8SDWs Bug Bite Thing: https://amzn.to/3uSVAmO EZ Pass: https://www.ezpassva.com Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic Why I Quit Being a Digital Nomad: https://youtu.be/_Vxzl3i1XsA Subscribe for more here: https://www.youtube.com/laurenzray - - - - - - - ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear - - - - - - - - - ►Video schedule: Every Sunday ►Also find me here: My IG: http://www.instagram.com/laurenzray Lukas' IG: http://www.instagram.com/musicbylukas Portfolio: https://www.laurenzray.com/portfolio CONTACT: ...
Richmond, Virginia: The Best Things to Do in the City! From what I hear from fellow travelers, Richmond isn't high on many lists of places to see in the U.S., but we believe Richmond is highly underrated. DON'T CLICK THIS: http://bit.ly/3kMzZDs We drove 2 hours north to spend the day in Richmond, and see for ourselves just what great things this city had to offer. We tried to fit a lot of things to do in just one day. Check out a few the links here in the description to find out more about the locations. Richmond is quickly transforming into a cultural hotspot, and great restaurants are popping up every week! We dropped a pin to the location of the Pipeline Trial for anyone confused like we were. After walking down E. Canal St., we turned onto Virginia St. There is a small parking lot...
Come along as I take you to 5 Hidden Gems in Richmond, VA. ✨My Instagram: https://www.instagram.com/laurenzray Why I moved to Richmond, VA: https://youtu.be/prEiFHrm1Ic My Story: Moving to Richmond, VA: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray 🌱My Vegan Guide to Richmond, VA: https://www.laurenzray.com/rva-vegan-ebook Places Visited in Video: Hollywood Cemetery - https://maps.app.goo.gl/BgWymwaDfcjyDcjT6 Virginia Museum of Fine Arts - https://maps.app.goo.gl/ei5wuAibzkUyDCa78 Paix Coffee - https://maps.app.goo.gl/efkHuoT8dmLEeZ4i6 The Byrd Theatre - https://maps.app.goo.gl/Yhg74CVnfCAuPgNw5 Proper Pie Co - https://maps.app.goo.gl/bWTCGmG8L8EgPNLp9 ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzra...
My Hotel Recommendations in Richmond: https://expedia.com/affiliate/2JlR7UO My Tours and Activities Recommendations in Richmond: https://expedia.com/affiliate/gTPOe9D Check out cool Richmond, VA Stuff HERE: https://amzn.to/42n1717 Richmond Virginia is best known as the capital of the old confederacy during the Civil War. Richmond is filled with historic sites, and interestingly, acknowledges it’s confederate past while also exhibiting progressive ideas throughout the city. So what are the best things to do and see in Richmond today? In this video we will visit: The White House of the Confederacy Richmond Historic District John Marshall House Capitol Square Virginia State Capitol Building Richmond Canal Walk Canal Walk Murals American Civil War Museum Historic Tredegar Shockoe Slip Richm...
This is why I moved to Richmond, Virginia, and why I love it here! ✨I'm on Instagram: https://www.instagram.com/laurenzray My Story: Moving to Richmond, Virginia: https://youtu.be/vgjxvW6nrJ4 Subscribe for more here: https://www.youtube.com/laurenzray - - - - - - - ★My Film Gear: https://www.laurenzray.com/camera-gear ★My Travel Gear: https://www.laurenzray.com/travel-gear - - - - - - - - - ►Video schedule: Every Sunday ►Also find me here: My IG: http://www.instagram.com/laurenzray Portfolio: https://www.laurenzray.com/portfolio CONTACT: [email protected] Richmond, Virginia RVA Richmond Vlog Richmond Virginia
If you are thinking about moving to/living in Richmond VA this is the video for you! We will show you the 6 BEST areas to live in around Richmond Virginia. You will get to see all of the commercial "bubbles" surrounding these 6 best areas, and we will provide you with a ton of information about the housing and neighborhoods within them too. Short Pump, Glen Allen, Midlothian, Moseley, Mechanicsville and the city of Richmond are all covered in this single video. If you are unfamiliar with Richmond and the surrounding areas, we assure you that after watching this you will have a much better understanding and knowledge of the areas. We also highly recommend to watch our video titled "5 Steps To Take When Relocating To Richmond VA" as that one will give you steps to take to help you determin...
Coordinates: 37°32′44″N 77°26′20″W / 37.54556°N 77.43889°W / 37.54556; -77.43889
Downtown Richmond, Virginia, is central urban area of that city. It is generally defined as being bound by Belvidere Street to the west, I-95 to the north and east, and the James River to the south. The Fan district borders it to the west, Highland Park to the north, Church Hill to the east, and Manchester to the south.
Richmond is now widely considered Virginia's "tallest" city because of many tall buildings in what is Richmond's central business district, surrounding the Virginia State Capitol and many government office buildings (many dating to the New Deal). The James Monroe Building and SunTrust Plaza tower over 449 ft, and 400 ft, respectively, making them Richmond's tallest buildings, and the state's second and third tallest in the behind the Westin Virginia Beach Town Center at 508 ft. Other towering skyscrapers include the Federal Reserve Bank of Richmond, Bank of America Plaza, the James Center, Richmond City Hall, the Riverfront Plaza twin towers, the James Madison Building, Dominion Resources headquarters building, Main Street Center, the Central National Bank, and VCU Medical Center (which includes several hospitals, most over 200 feet, and the new School of Medicine under construction will be 12 storeys). Other important buildings Downtown include the Richmond Coliseum and the Greater Richmond Convention Center (which includes a tourist information office). Shockoe Bottom and Shockoe Slip also have nightclubs, bars, condo towers and lofts in various architectural styles.