- published: 03 Apr 2023
- views: 23519
'+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; })); }); -->
Kings Highway is a broad avenue that passes mostly through areas in the southern part of the New York City borough of Brooklyn. The west end is at Bay Parkway and 78th Street. East of Ocean Avenue the street becomes mostly residential, tending generally east, then northeast, then north through Brooklyn and reaching East 98th Street in central Brooklyn. At that point, it flows into Howard Avenue to provide seamless access to Eastern Parkway, another major road in Brooklyn with side medians and service roads.
A Business Improvement District serves stores, restaurants and businesses along part of the road.
Although not entirely built in 1704, "King's Highway" came into existence when many smaller established roads, cow paths, and Indian trails were finally linked that year. The Highway was named after the county, which was named in honor of King Charles II of England on November 1, 1683.
Originally, Kings Highway was much longer than it is now. It began at Brooklyn Ferry, now called Fulton Ferry, where Ferry Road, now called Old Fulton Street and Furman Street are now, and ran southeastward to the small Dutch town of New Amersfort, now known as Flatlands. It took a sharp westward turn at that point and swept into another of Brooklyn's original six towns, New Utrecht, and on into Yellow Hook (Bay Ridge), ending at Denyse's Ferry, operated by a colonial-era landowner, about where Shore Road and 86th Street meet today. In southwest Brooklyn, the thoroughfare had other names, including: "State Road," "Road from Fort Hamilton to New Utrecht," and "Road from New Utrecht to Denyse's Ferry."
Kings Highway is a local station on the BMT Sea Beach Line of the New York City Subway. Located at the intersection of Kings Highway and West Seventh Street, it is served by the N train at all times. It opened on June 22, 1915.
This open-cut station has four tracks and two side platforms. The two center express tracks are not normally used, but both tracks are available for rerouted trains. The platforms are carved within the Earth's crust on an open cut. The concrete walls are painted beige and the columns are blue.
This station has two entrances, both of which are beige station houses at street-level between West Seventh and West Eighth Streets above the tracks. Each one has a single staircase leading to each platform at either extreme ends. The main exit at the north end has a turnstile bank and token booth and leads to Kings Highway while the exit at the south end leads to Highlawn Avenue and is un-staffed, containing just HEET turnstiles and exit-only turnstiles.
Farm to Market Road 989 (FM 989, locally known as Kings Highway) is a farm-to-market road that exists completely within Bowie County, Texas. It is mostly located to the west of Texarkana. It travels approximately 11.84 miles (19.05 km) south to north.
FM 989 was originally designated on November 23, 1948 with a northern terminus at U.S. Route 82 (US 82) in Nash and a southern terminus at US 59, approximately 0.5 miles (0.80 km) southwest of the Loop, a total length of 4.2 miles (6.8 km). However, on October 28, 1953, it was extended to include a 5.4-mile (8.7 km) loop and connect with FM 559 northwest of Texarkana. On September 20, 1961, FM 989 was extended again, picking up an additional 3.1 miles (5.0 km) on the south end, to connect to FM 2516. In 1995, the entire route of FM 989 was transferred to Urban Road 989, but this is an internal designation used by TXDOT and the road is still signed as FM 989.
The entire route is in Bowie County.
State Route 3 is a primary state highway in the U.S. state of Virginia that extends from the town of Culpeper south and eastwardly to Gloucester in Virginia's Middle Peninsula region. For many years, a portion was named "Historyland Highway".
Route 3 begins as the John Clayton Memorial Highway in Gloucester, sharing the highway with State Route 14.
After entering Mathews County, Virginia, Route 3 takes a left onto Windsor Road and then a Right on Dutton Road. After that, it takes a left and crosses the Piankatank River.
After crossing the Piankatank River, goes through Hartfield and Greys Point, and then crosses the Rappahannock River on the Robert O. Norris Bridge.
Route 3 is called Mary Ball Road in Lancaster County, named after George Washington's mother Mary Ball Washington, who was born there. A section is the Lancaster Courthouse Historic District, including the "post village" which has long been the county seat.
Brooklyn is a given name that has increased in popularity for girls in the United States and Canada in recent years. It has occasionally been used as a name in honor of Brooklyn, the New York City borough, but is usually regarded as simply a combination of the names Brook or Brooke, a name derived from an English surname meaning "one who lives near a brook" and the suffix -lyn, which is an element in other popular contemporary names in the United States such as Kaitlyn.
The name was the 26th most popular name for baby girls in the United States in 2014 and was the 16th most popular name for baby girls born in British Columbia, Canada in 2006. Spelling variants include, but are not limited to, Brook Lynn, Brooke Lynn, Brookelynn, Brookelynne, Brooklynn and Brooklynne.
The son of football player David Beckham and his wife Victoria, AKA "Posh Spice", was also given the name Brooklyn.
U District Station (formerly known by the temporary working name Brooklyn Station) will be an underground light rail station on the Northgate Link Extension of Sound Transit in the University District neighborhood in Seattle. It is scheduled to open along with the rest of the North Link project in 2021. Sound Transit estimates that there will be 12,000 daily boardings at the station in 2030.
The U District Station will be deep underground underneath Brooklyn Ave NE between NE 45th and NE 43rd Streets. It will have two entrances, one in the plaza at the base of the UW Tower at the southwest corner of 45th and Brooklyn, and the other at the northeast corner of 43rd and Brooklyn. It is one block west of The Ave, at the heart of the University District.
Brooklyn is a neighborhood of Jacksonville, Florida, considered part of Downtown. Originally a residential suburb, commercial uses became prominent during the 20th century, particularly along the St. Johns River and Riverside Avenue, and the area became included in Jacksonville's central business district. In the 21st century, it has become the site of mixed-use developments.
Brooklyn is located along the St. Johns River, south of Lavilla and the Downtown Core, and immediately north of Riverside. It is roughly bounded by McCoy's Creek and the CSX Railroad lines to the north, the river to the east, and Interstate 95 to the south and west. Brooklyn has come to be considered part of Jacksonville's greater downtown.
The area was first settled in 1801, when Phillip Dell started a large 800-acre plantation there known as Dell's Bluff. Dell's Bluff changed hands several times before the American Civil War. After the war it was acquired by Miles Price, who sold the southern half of the property to be developed as the suburb of Riverside. The northern section he retained and developed himself as Brooklyn.
Kings Highway is a major thoroughfare in Brooklyn that runs east-west through the borough. The section of Kings Highway from Homecrest to Bay Parkway is approximately 1.5 miles long, and is home to a diverse array of businesses and residences. Starting at Homecrest Avenue, Kings Highway is lined with several small businesses, including restaurants, shops, and offices. As I head west, the street becomes more residential, with a mix of attached and detached houses, apartment buildings, and co-ops. Google Maps Route: https://goo.gl/maps/KssJ78NR8magjRLo8 Recorded March 27, 2023 💲 Support Me 💲 💵 PayPal: https://paypal.me/actionkidyt?locale.x=en_US 💵 Cash App: $actionkid 💵 Patreon: https://www.patreon.com/actionkid 💵 Merchandise Store: https://the-actionkid-store.creator-spring.com 😀 Soci...
I take a walk on Kings Highway in the Gravesend neighborhood of Brooklyn. This street was originally an Indian trail, but is now home to many restaurants, businesses, and residences. It is named after the Brooklyn's county name of Kings, which was named in honor of Kings Charles II of England. Google Maps Route: https://goo.gl/maps/6WQ4qSbjW4pMuUAP9 Recorded June 30, 2021 💲 Support Me 💲 💵 PayPal: https://paypal.me/actionkidyt?locale.x=en_US 💵 Cash App: $actionkid 💵 Patreon: https://www.patreon.com/actionkid 💵 Merchandise Store: https://the-actionkid-store.creator-spring.com 😀 Social 😀 📸 My website: http://www.actionkidtv.com/ 📸 Follow me on Instagram: https://www.instagram.com/actionkidtv/ 📸 Follow me on Twitter: https://twitter.com/actionkidtv 📸 Discord Server : https://discord.gg/s...
New York City | 4K Driving in Kings Hwy, Brooklyn, NY Please Subscribe! https://www.youtube.com/channel/UCPcHKWpVr1-So5oAryaa6ZA Buy Me a Coffee https://www.buymeacoffee.com/nycdriver
Kings Highway is a broad avenue that curves about southern part of the Borough of Brooklyn in New York City. Its west end is at Bay Parkway and 78th Street. East of Ocean Avenue, the street is largely residential. It tracks eastward, then northeast, then north through Brooklyn and reaches East 98th Street in central Brooklyn. At that point, it flows into Howard Avenue to provide seamless access to Eastern Parkway, another major road in Brooklyn with side medians and service roads. A Business Improvement District has been established along part of the road to support stores, restaurants and businesses in that area.
Kings Highway is one of the major arteries in New York City. The mostly residential street curves about the southern part of the Borough of Brooklyn. Its west end is at Bay Parkway and 78th Street. East of Ocean Avenue. Over the centuries the road has served a lot of purposes, Carrying the local Algonquin peoples and the British Army during the Battle of Brooklyn. Quentin? Why everyone knows how that got it's name...
Originally an Indian trail known as "the ancient pathway", Kings Highway is now a broad avenue that curves about southern part of the Borough of Brooklyn in New York City. Its west end is at Bay Parkway and 78th Street. East of Ocean Avenue, the street is largely residential. A Business Improvement District has been established along part of the road to support stores, restaurants and businesses in that area.
Walking down Kings Highway from Ocean Ave to Coney Island Ave. A very interesting street in Brooklyn. Rich in culture, fun and colorful. Every corner of the world can be found here. https://www.patreon.com/walks4views
The streets are wet and Kings Highway is glowing in all its glory. https://www.patreon.com/walks4views
Kings Highway (BQ) This portion of Midwood is world famous, for the law offices of Jacoby & Meyers! Growing up, which tv-watching kid never heard of these guys? They're famous! Very busy neighborhood with lots of construction going on, check it out. I'll be back. Big Banana Shop Hot Bagels Bialys Law Offices of Jacoby & Meyers Kiev Bakery McDonald's Fast Food Restaurants Tiger International Martial Arts Radio Shack Robert's Digital Lab Eebee's Brand Names New York Commercial Bank Nature's Emporium HSBC Bank Chase Bank Petland Discounts Kingsway Liquors Value Depot Pavillion Jewelers Verizon Wireless Rainbow Department Stores MuniMeter.com: The entire NYC Subway System on film. Explore New York's five boroughs with us and let's make NYC a smaller, friendlier place. (March 2012) DIS...
Walking Kings Highway on 4/20/23. The walks starts in Gravesend Brooklyn, just on the edge of Bensonhurst and Bay Parkway. The walk will takes us into Midwood Brooklyn until we reach the end at Ocean Avenue and Ave P. Along the way we will pass McDonald Avenue and the Elevated tracks of the F Train, as well as the Elevated tracks of the Q and B Trains. We will also cross the big Ocean Parkway, and the busy Coney Island Avenue. Kings Highway is one of Brooklyn's oldest roads, and today is home to a busy food and retail district, with plenty of foot traffic and, with times of crowded sidewalks starting in the East 13th Street area. Street vendors on the sidewalk under the Kings Highway Q B Train station, and much more. Enjoy this busy walk, courtesy of me. Sit back and relax, or pull up ...
Kings Highway is a broad avenue that passes mostly through areas in the southern part of the New York City borough of Brooklyn. The west end is at Bay Parkway and 78th Street. East of Ocean Avenue the street becomes mostly residential, tending generally east, then northeast, then north through Brooklyn and reaching East 98th Street in central Brooklyn. At that point, it flows into Howard Avenue to provide seamless access to Eastern Parkway, another major road in Brooklyn with side medians and service roads.
A Business Improvement District serves stores, restaurants and businesses along part of the road.
Although not entirely built in 1704, "King's Highway" came into existence when many smaller established roads, cow paths, and Indian trails were finally linked that year. The Highway was named after the county, which was named in honor of King Charles II of England on November 1, 1683.
Originally, Kings Highway was much longer than it is now. It began at Brooklyn Ferry, now called Fulton Ferry, where Ferry Road, now called Old Fulton Street and Furman Street are now, and ran southeastward to the small Dutch town of New Amersfort, now known as Flatlands. It took a sharp westward turn at that point and swept into another of Brooklyn's original six towns, New Utrecht, and on into Yellow Hook (Bay Ridge), ending at Denyse's Ferry, operated by a colonial-era landowner, about where Shore Road and 86th Street meet today. In southwest Brooklyn, the thoroughfare had other names, including: "State Road," "Road from Fort Hamilton to New Utrecht," and "Road from New Utrecht to Denyse's Ferry."