'+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; })); }); -->

One Yonge Street

One Yonge Street, built in 1970, is a 25 storey building, and is home to Torstar and its flagship newspaper, the Toronto Star. It is 100 metres tall, and is built in the International style. It was built as a replacement to the Old Toronto Star Building, which was located at 80 King Street West. That building was torn down to make room for First Canadian Place.

It is located at 1 Yonge Street at Queens Quay, and marks the foot of what was Highway 11, known informally as "the longest street in the world".

The building also housed the printing presses for the Toronto Star newspaper, until 1992 when a new press centre was opened in Vaughan, Ontario. The finished newspaper content is sent electronically to the plant where the plates are burnt and the paper gets printed and distributed. Editorial content of the newspaper is produced by employees working on the fifth floor. It also has the headquarters of Torstar.

The office space at One Yonge Street is also leased out to a variety of other companies, including the Liquor Control Board of Ontario, a dental office and the new downtown Toronto campus of Collège Boréal.

North York

North York is a former municipality in the city of Toronto, Ontario, Canada. Geographically, it comprises the central part of the northern section of Toronto. As of the 2011 Census, it had a population of 655,913. The official 2001 census count was 608,288. Until 1998, it was the second-largest of six municipalities that comprised another larger municipality called Metropolitan Toronto. The previous year, the provincial Government of Ontario passed legislation to merge these municipalities into a single, new amalgamated City of Toronto. North York is one of the most diverse areas of Toronto, as it contains some of the most affluent areas of the city (The Bridle Path, Hogg's Hollow, York Mills, Willowdale, Bayview Village) and some of the poorest (Jane and Finch, Flemingdon Park, Lawrence Heights).

History

The Township of North York was formed on June 13, 1922 out of the rural part of the Township of York. The rapidly urbanizing parts of the township remained in that township. As North York became more urbanized, it became the Borough of North York in 1967, and then on February 14, 1979, the City of North York. To commemorate receiving its city charter on St. Valentine's Day, the city's corporate slogan was "The City with Heart". It now forms the largest part of the area served by the "North York Community Council", a committee of Toronto City Council.

1331 Yonge Street

1331 Yonge Street was the civic address of an office and studio complex in Toronto, Ontario, Canada, It is located on Yonge Street, three blocks south of St. Clair Avenue. The building previously served as the headquarters of CHUM Radio, a division of CTVglobemedia, and to the studios of the company's Toronto radio stations, CHUM and CHUM-FM.

Originally a book bindery and showroom, the building was renovated in 1959 for CHUM's operations, and also eventually housed CHUM-FM, 1050 CHUM and CHUM Radio's national operations. The most prominent feature of the building's exterior is the famous "CHUM Dial 1050" neon sign over the front entrance.

In July 2008, CTVglobemedia announced that it would sell the building to developer Aspen Ridge Homes for $21.5 million. The stations were expected to move to 250 Richmond Street West, a downtown location located at Richmond Street and Simcoe Street near 299 Queen Street West, in 2009. The neon sign was moved to the new location.

In preparation for the move, the stations held an open house on November 15, 2008, inviting listeners to visit for a tour of the historic building and an exhibit of CHUM's radio memorabilia.

197 Yonge Street

The historic building at 197 - 199 Yonge Street was formerly a four-floor Canadian Bank of Commerce building built in 1905 by architects Pearson and Darling and declared as a historical property by the City of Toronto, Ontario, Canada in 1974. The bank address was 199 Yonge Street, the numbers still showing above the entrance.

Next door at 205 Yonge Street is another historic site. The gap between the two sites was once the Colonial Tavern, demolished in the 20th century.

It has been refurbished with 17,423 square feet (1,619 m2) of space.

197 and 205 Yonge Street will be preserved and become part of the Massey Tower project.

References

External links

  • Heritage Property Detail: 197 Yonge Street
  • Canadian Bank of Commerce
  • Coordinates: 43°39′12″N 79°22′45″W / 43.653278°N 79.379295°W / 43.653278; -79.379295


    Podcasts:

    • 1331 Queen St E #203 | Leslieville | Toronto

      For more information, please visit: https://1331queenste-203.com _________________________________________ Sage Real Estate Ltd., Brokerage 2010 Yonge Street, Toronto, Ontario M4S 1Z9 134 Ossington Avenue, Toronto, Ontario M6J 2Z5

      published: 12 Oct 2022
    • The Jack Condo

      The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstruction at 1331 Yonge St in Toronto. The development is scheduled for completion in 2018. Sales for available units start in the $400,000's. The development has a total of 153 units.

      published: 19 Jun 2015
    • The Jack Condo

      The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstruction at 1331 Yonge St in Toronto. The development has a total of 153 units. Project Summary From The Jack Condo: A contemporary classic. Designed to blend in with the personality of Yonge at street level, and reimagined to have multiple distinct personalities above. A landmark form destined to enhance the social fabric of Toronto’s most storied neighbourhood.

      published: 25 May 2015
    • 1331 Major Mackenzie Drive #95, Vaughan

      Please visit this listing at http://www.1331majormackenzie.com/ Gloria Franchi Sales Representative Direct 416-894-9354 Office 905-883-8300 x3131 realestatesales@gloriafranchi.com www.gloriafranchi.com Century 21 Heritage 11160 Yonge St #3 and #7 Richmond Hill, ON L4S 1H5 Phone: 905-883-8300 http://www.HomesByHeritage.ca/

      published: 21 Jul 2016
    • The Jack Condos

      The Jack Condos is a new condo project by Aspen Ridge Homes and is currently in pre- construction. The Jack Condos will be located at 1331 Yonge St in Toronto. Pics, Floor Plans and Price List Available Here. Call Sam Elgohary at 416-565-5925 or visit: www.CondosDeal.com

      published: 18 May 2015
    • The Jack Condos

      http://www.condopromo.com/the-jack-condos-toronto/ The Jack Condos is a new preconstruction condo development by Aspen Ridge Homes located at 1331 Yonge Street in Toronto (Yonge/St Clair).

      published: 11 Jun 2014
    • 1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4

      1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4

      published: 15 Feb 2023
    • 1331 Major Mackenzie Dr | Mackenzie Ridge Terraces | 3 Bedroom Townhouse

      Beautiful Executive Townhouse In A Community Nestled On A Ravine. 2130 Square Feet With Large 2 Car Garage. Shows Like Brand New, Convenient & Functional Open Concept Layouts. All Stainless Steel Appliances! Huge Master Br With 2 Walk-In Closets And A 5-Piece Ensuite Bathroom. Big 2nd/3rd Br W/ Bath. Laundry On 2nd Flr. Terrace Off Kitchen. Great Location, Schools, Public Transit, Hwy 400, Walk To 2 Huge Plazas With Restaurants, Groceries, And So Much More! All Existing Appliances: Stainless Steel Fridge, Stove, B/I Dishwasher, B/I Microwave With Hood range, Front Loading Washer And Dryer On Second Floor. All Upgraded Electrical Light Fixtures. All Window Coverings.

      published: 29 Jan 2018
    • Changing face of Bloor St & Yonge St intersection Toronto - December 2015 part 1

      This video is about IMG_7442

      published: 01 Jan 2016
    • 1331 Major Mackenzie Drive, Vaughan

      Come take a video tour of our latest listing in Lebovic Campus. This beautiful 4 bedroom and 4 bathroom townhouse is nicely upgraded and in a perfect location! Ideal for all types of buyers! Virtual Tour: http://wylieford.homelistingtours.com/listing2/15---1331-major-mackenzie-drive Contact Tatyana and the Slavny Homes Team @ ☎️416-669-7037 for more details and to book a VIP showing. Tatyana Slavny 416-669-7037 Sutton Group Admiral Realty Inc., Brokerage #weknowthemarket #slavnyhomes #realestate #luxuryhomes #vaughan #homesforsale Website: http://www.slavnyhomes.com Facebook: https://www.facebook.com/SlavnyHomes Instagram: https://www.instagram.com/slavnyhomes/ Twitter: https://twitter.com/slavny_homes Linkedin: https://www.linkedin.com/in/tatyana-slavny-85706917/

      published: 27 Jul 2020
    1331 Queen St E #203 | Leslieville | Toronto
    1:52

    1331 Queen St E #203 | Leslieville | Toronto

    • Order:
    • Duration: 1:52
    • Uploaded Date: 12 Oct 2022
    • views: 15
    For more information, please visit: https://1331queenste-203.com _________________________________________ Sage Real Estate Ltd., Brokerage 2010 Yonge Street, Toronto, Ontario M4S 1Z9 134 Ossington Avenue, Toronto, Ontario M6J 2Z5
    https://wn.com/1331_Queen_St_E_203_|_Leslieville_|_Toronto
    The Jack Condo
    0:35

    The Jack Condo

    • Order:
    • Duration: 0:35
    • Uploaded Date: 19 Jun 2015
    • views: 39
    The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstruction at 1331 Yonge St in Toronto. The development is scheduled for completion in 2018. Sales for available units start in the $400,000's. The development has a total of 153 units.
    https://wn.com/The_Jack_Condo
    The Jack Condo
    0:41

    The Jack Condo

    • Order:
    • Duration: 0:41
    • Uploaded Date: 25 May 2015
    • views: 111
    The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstruction at 1331 Yonge St in Toronto. The development has a total of 153 units. Project Summary From The Jack Condo: A contemporary classic. Designed to blend in with the personality of Yonge at street level, and reimagined to have multiple distinct personalities above. A landmark form destined to enhance the social fabric of Toronto’s most storied neighbourhood.
    https://wn.com/The_Jack_Condo
    1331 Major Mackenzie Drive #95, Vaughan
    4:37

    1331 Major Mackenzie Drive #95, Vaughan

    • Order:
    • Duration: 4:37
    • Uploaded Date: 21 Jul 2016
    • views: 452
    Please visit this listing at http://www.1331majormackenzie.com/ Gloria Franchi Sales Representative Direct 416-894-9354 Office 905-883-8300 x3131 realestatesales@gloriafranchi.com www.gloriafranchi.com Century 21 Heritage 11160 Yonge St #3 and #7 Richmond Hill, ON L4S 1H5 Phone: 905-883-8300 http://www.HomesByHeritage.ca/
    https://wn.com/1331_Major_Mackenzie_Drive_95,_Vaughan
    The Jack Condos
    1:19

    The Jack Condos

    • Order:
    • Duration: 1:19
    • Uploaded Date: 18 May 2015
    • views: 103
    The Jack Condos is a new condo project by Aspen Ridge Homes and is currently in pre- construction. The Jack Condos will be located at 1331 Yonge St in Toronto. Pics, Floor Plans and Price List Available Here. Call Sam Elgohary at 416-565-5925 or visit: www.CondosDeal.com
    https://wn.com/The_Jack_Condos
    The Jack Condos
    0:29

    The Jack Condos

    • Order:
    • Duration: 0:29
    • Uploaded Date: 11 Jun 2014
    • views: 221
    http://www.condopromo.com/the-jack-condos-toronto/ The Jack Condos is a new preconstruction condo development by Aspen Ridge Homes located at 1331 Yonge Street in Toronto (Yonge/St Clair).
    https://wn.com/The_Jack_Condos
    1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4
    1:49

    1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4

    • Order:
    • Duration: 1:49
    • Uploaded Date: 15 Feb 2023
    • views: 29
    1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4
    https://wn.com/1331_Major_Mackenzie_Drive_West_Unit_66_Vaughan,_On_L6A_4W4
    1331 Major Mackenzie Dr | Mackenzie Ridge Terraces | 3 Bedroom Townhouse
    1:06

    1331 Major Mackenzie Dr | Mackenzie Ridge Terraces | 3 Bedroom Townhouse

    • Order:
    • Duration: 1:06
    • Uploaded Date: 29 Jan 2018
    • views: 251
    Beautiful Executive Townhouse In A Community Nestled On A Ravine. 2130 Square Feet With Large 2 Car Garage. Shows Like Brand New, Convenient & Functional Open Concept Layouts. All Stainless Steel Appliances! Huge Master Br With 2 Walk-In Closets And A 5-Piece Ensuite Bathroom. Big 2nd/3rd Br W/ Bath. Laundry On 2nd Flr. Terrace Off Kitchen. Great Location, Schools, Public Transit, Hwy 400, Walk To 2 Huge Plazas With Restaurants, Groceries, And So Much More! All Existing Appliances: Stainless Steel Fridge, Stove, B/I Dishwasher, B/I Microwave With Hood range, Front Loading Washer And Dryer On Second Floor. All Upgraded Electrical Light Fixtures. All Window Coverings.
    https://wn.com/1331_Major_Mackenzie_Dr_|_Mackenzie_Ridge_Terraces_|_3_Bedroom_Townhouse
    Changing face of Bloor St & Yonge St intersection Toronto - December 2015 part 1
    1:02

    Changing face of Bloor St & Yonge St intersection Toronto - December 2015 part 1

    • Order:
    • Duration: 1:02
    • Uploaded Date: 01 Jan 2016
    • views: 60
    This video is about IMG_7442
    https://wn.com/Changing_Face_Of_Bloor_St_Yonge_St_Intersection_Toronto_December_2015_Part_1
    1331 Major Mackenzie Drive, Vaughan
    2:12

    1331 Major Mackenzie Drive, Vaughan

    • Order:
    • Duration: 2:12
    • Uploaded Date: 27 Jul 2020
    • views: 62
    Come take a video tour of our latest listing in Lebovic Campus. This beautiful 4 bedroom and 4 bathroom townhouse is nicely upgraded and in a perfect location! Ideal for all types of buyers! Virtual Tour: http://wylieford.homelistingtours.com/listing2/15---1331-major-mackenzie-drive Contact Tatyana and the Slavny Homes Team @ ☎️416-669-7037 for more details and to book a VIP showing. Tatyana Slavny 416-669-7037 Sutton Group Admiral Realty Inc., Brokerage #weknowthemarket #slavnyhomes #realestate #luxuryhomes #vaughan #homesforsale Website: http://www.slavnyhomes.com Facebook: https://www.facebook.com/SlavnyHomes Instagram: https://www.instagram.com/slavnyhomes/ Twitter: https://twitter.com/slavny_homes Linkedin: https://www.linkedin.com/in/tatyana-slavny-85706917/
    https://wn.com/1331_Major_Mackenzie_Drive,_Vaughan
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    1331 Queen St E #203 | Leslieville | Toronto

    For more information, please visit: https://1331queenste-203.com _________________________________________ Sage Real Estate Ltd., Brokerage 2010 Yonge Street, Toronto, Ontario M4S 1Z9 134 Ossington Avenue, Toronto, Ontario M6J 2Z5
    1:52
    1331 Queen St E #203 | Leslieville | Toronto
    For more information, please visit: https://1331queenste-203.com _________________________...
    published: 12 Oct 2022
    Play in Full Screen
    0:35
    The Jack Condo
    The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstructio...
    published: 19 Jun 2015
    Play in Full Screen
    0:41
    The Jack Condo
    The Jack Condo is a new condo development by Aspen Ridge Homes currently in preconstructio...
    published: 25 May 2015
    Play in Full Screen
    4:37
    1331 Major Mackenzie Drive #95, Vaughan
    Please visit this listing at http://www.1331majormackenzie.com/ Gloria Franchi Sales Rep...
    published: 21 Jul 2016
    Play in Full Screen
    1:19
    The Jack Condos
    The Jack Condos is a new condo project by Aspen Ridge Homes and is currently in pre- const...
    published: 18 May 2015
    Play in Full Screen
    0:29
    The Jack Condos
    http://www.condopromo.com/the-jack-condos-toronto/ The Jack Condos is a new preconstructi...
    published: 11 Jun 2014
    Play in Full Screen
    1:49
    1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4
    1331 Major Mackenzie Drive West Unit 66 Vaughan, ON L6A 4W4
    published: 15 Feb 2023
    Play in Full Screen
    1:06
    1331 Major Mackenzie Dr | Mackenzie Ridge Terraces | 3 Bedroom Townhouse
    Beautiful Executive Townhouse In A Community Nestled On A Ravine. 2130 Square Feet With La...
    published: 29 Jan 2018
    Play in Full Screen
    1:02
    Changing face of Bloor St & Yonge St intersection Toronto - December 2015 part 1
    This video is about IMG_7442
    published: 01 Jan 2016
    Play in Full Screen
    2:12
    1331 Major Mackenzie Drive, Vaughan
    Come take a video tour of our latest listing in Lebovic Campus. This beautiful 4 bedroom ...
    published: 27 Jul 2020
    Play in Full Screen

    One Yonge Street

    One Yonge Street, built in 1970, is a 25 storey building, and is home to Torstar and its flagship newspaper, the Toronto Star. It is 100 metres tall, and is built in the International style. It was built as a replacement to the Old Toronto Star Building, which was located at 80 King Street West. That building was torn down to make room for First Canadian Place.

    It is located at 1 Yonge Street at Queens Quay, and marks the foot of what was Highway 11, known informally as "the longest street in the world".

    The building also housed the printing presses for the Toronto Star newspaper, until 1992 when a new press centre was opened in Vaughan, Ontario. The finished newspaper content is sent electronically to the plant where the plates are burnt and the paper gets printed and distributed. Editorial content of the newspaper is produced by employees working on the fifth floor. It also has the headquarters of Torstar.

    The office space at One Yonge Street is also leased out to a variety of other companies, including the Liquor Control Board of Ontario, a dental office and the new downtown Toronto campus of Collège Boréal.

    '); } 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)); } }); }); }); // -->
    ×