Select your new home to view more information.

Time Out Error.
Refresh Page or Try Again Later
"); } } }); } f_getUnits($.datepicker.formatDate('yy-mm-dd', moveInDate)); f_buildFlexSlider(); $('.unit-show-hide').on('click', function(e) { f_unitShowHide(e); }); if ($("#fp2-floor-slider").length > 0 ) { var minFloorQParam = getParameterByName('minfloor'); var maxFloorQParam = getParameterByName('maxfloor'); if (minFloorQParam) { isFloorSliderModified = true; minFloorQParam = Number(minFloorQParam); } else minFloorQParam = minFloor; if (maxFloorQParam) { isFloorSliderModified = true; maxFloorQParam = Number(maxFloorQParam); } else maxFloorQParam = maxFloor; $("#fp2-floor-slider").slider({ range: true, step: 1, min: minFloor, max: maxFloor, values: [minFloorQParam, maxFloorQParam], change: f_floorSliderChanged }); } $('#fp2-move-in-input').datepicker({ autoHide: true, format: (internationalProperty == 'true' ? "dd/mm/yyyy" :"mm/dd/yyyy"), startDate: new Date(), endDate: (maxMoveInDateDays > 0 ? maxMoveInDate : null), }); $('#fp2-move-in-input').on('pick.datepicker', function (e) { var pickedDate = $('#fp2-move-in-input').datepicker('formatDate', e.date); f_moveInDateChanged(pickedDate.toString()); }); $('#fp2-move-in-input').val($.datepicker.formatDate((internationalProperty == 'true' ? "dd/mm/yy" :"mm/dd/yy"), moveInDate)); f_sortFloorplans($('#fp2-sort-select').val()); $('#fp2-sort-select').change(function () { f_sortFloorplans(this.value); }); $('#fp2-building-filter-select').change(function () { f_setInitialUnitsData(); f_filterFloorplans(); }) $('#fp2-phase-select').change(function () { var q = '?siteId=' + this.value; var origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port : ''); window.location.href = origin + window.location.pathname + q; }); $('#fp2-lease-term-select').change(function () { f_moveInDateChanged($('#fp2-move-in-input').val()); }); $('#fp2-show-available-only').change(function() { f_filterFloorplans(); }); $(".tooltip-effect").tooltip({ position: { my: "center bottom-10", at: "center top", using: function (position, feedback) { $(this).css(position); $("
") .addClass("arrow") .addClass(feedback.vertical) .addClass(feedback.horizontal) .appendTo(this); } } }); $(".read-more-fp").each(function() { if ($(this).text().length > 185) { $(this).expander({ slicePoint: 185, expandSpeed: 200, collapseSpeed: 200, expandText: 'Read More', userCollapseText: 'Show Less -', expandEffect: 'fadeIn', collapseEffect: 'fadeOut', moreClass:'read-more-fp', lessClass:'read-less-fp' }); } }); $('#dialog-overlay').on('click', function () { f_hideAllModals(); }); $('#save-quote-overlay').on('click', function () { f_hideSaveQuoteDialog(); }); var availabilityParam = getParameterByName('availability'); if (availabilityParam) $('input[value="' + availabilityParam + '"]').attr('checked', 'checked'); var flexParam = getParameterByName('flexdays'); if (flexParam) $('#flex-days').val(flexParam); $('input[name="availability"]').change(function() { f_setInitialUnitsData(); f_filterFloorplans(); f_HandleNoUnitsFloorplans(); }); $('.fp2-flex-days').change(function() { f_setInitialUnitsData(); }); $('#videoDisplayList').on("click", "li", function (e, isFirstTimePlay) { var index = $(this).data("index"); $('#videoDisplayList li').removeClass('selected'); $(this).addClass('selected'); var videoObj = selectedFPVideos[index]; $('#videoDisplayContainer iframe').attr('src',videoObj.src); $('#videoCaption').html(videoObj.caption); if (!isFirstTimePlay) f_analyticsSendEvent('floorplans', 'click-floorplan-video-link', selectedFPName + '-' + videoObj.mediaId); }); $('#txtPhone').on("keyup", function () { var value = $(this).val(); var regex1 = /[^[0-9 +]]*/gi; var regex2 = /[^[0-9]]*/gi; var newValue = value.substring(0, 1).replace(regex1, '') + value.substring(1).replace(regex2, ''); $('#txtPhone').val(newValue); }); $('.fancybox').fancybox({ fullScreen: { autoStart: false }, thumbs: { autoStart: false, hideOnClose: true }, selector: '.slides li:not(.clone) a', smallBtn: "auto", afterLoad: function (instance, current) { current.$image.attr('alt', current.opts.$orig.find('.floor-plan-thumbnail').attr('alt')); var pixelRatio = window.devicePixelRatio || 1; if ( pixelRatio > 1.5 ) { current.width = current.width / pixelRatio; current.height = current.height / pixelRatio; } } }); }); function f_setExternalFilters(params){ selectedBed = params.beds; selectedBath = params.baths; f_setBedBathActiveFilter(); if (params.moveInDate){ $('#fp2-move-in-input').datepicker("option", "date", params.moveInDate); $('#fp2-move-in-input').val(params.moveInDate); } f_moveInDateChanged($('#fp2-move-in-input').val()); } function f_setBedBathActiveFilter(){ $('.fp2-bed-select li').removeClass('active'); $('.fp2-bath-select li').removeClass('active'); if (selectedBed) $('.fp2-bed-select li a[data-beds="' + selectedBed + '"]').parent().addClass('active'); else $('.fp2-bed-select li').first().addClass('active'); if (selectedBath) $('.fp2-bath-select li a[data-baths="' + selectedBath + '"]').parent().addClass('active'); else $('.fp2-bath-select li').first().addClass('active'); } function f_setBuildingFilter() { selectedBuilding = getParameterByName('building'); $("#fp2-building-filter-select").val(selectedBuilding); } function f_switchWidgets() { var url = ''; if (!getParameterByName('tab')) url += '?tab=true&'; else url += '?'; if (selectedBed && !isNaN(selectedBed)) url += 'beds=' + selectedBed + '&'; if (selectedBath && !isNaN(selectedBath)) url += 'baths=' + selectedBath + '&'; if (getParameterByName('availability')) url += 'availability=' + getParameterByName('availability') + '&'; if (getParameterByName('flexdays')) url += 'flexdays=' + getParameterByName('flexdays') + '&'; url += 'moveindate=' + $('#fp2-move-in-input').val() + '&'; if (hidePrices.toLowerCase() != 'true' && ($('.fp2-min-rent').val() || $('.fp2-max-rent').val())) { url += 'minrent=' + $('.fp2-min-rent').val().substring(1).replace(/,/g, '') + '&'; url += 'maxrent=' + $('.fp2-max-rent').val().substring(1).replace(/,/g, '') + '&'; } if ($("#fp2-floor-slider").length > 0 && isFloorSliderModified) { url += 'minfloor=' + $('#fp2-floor-slider').slider("option", "values")[0] + '&'; url += 'maxfloor=' + $('#fp2-floor-slider').slider("option", "values")[1] + '&'; } url = url.substring(0, url.length - 1); window.location.href = url; } function f_showSaveQuoteDialog() { $("#save-quote-overlay").show(); $("#save-quote-lightbox").fadeIn(300); } function f_hideSaveQuoteDialog() { $("#save-quote-overlay").hide(); $("#save-quote-lightbox").fadeOut(300); } function f_showVideoPlayer(floorPlanId, floorPlanName) { $("#dialog-overlay").show(); $('#floorplan-video-viewer').fadeIn(300); var listHTML = ''; selectedFPVideos = fpVideos[floorPlanId]; $(selectedFPVideos).each(function (index, fpv) { listHTML += ''; }); $('#videoDisplayList').html(listHTML); selectedFPName = floorPlanName; f_analyticsSendEvent('floorplans', 'click-floorplan-video-modal', selectedFPName); $('#videoDisplayList li:first').trigger('click', [true]); } function f_showMediaPlayer(floorPlanId, floorPlanName) { var selectedFPPanoramaSrc = fpMedia[floorPlanId][0].src; var selectedFPPanoramaId = fpMedia[floorPlanId][0].mediaId; f_analyticsSendEvent('floorplans', 'click-floorplan-panoramic', floorPlanName + '-' + selectedFPPanoramaId); var isIeLessThan10 = navigator.appVersion.indexOf("MSIE 9") > -1 || navigator.appVersion.indexOf("MSIE 8") > -1 if (isIeLessThan10 || (window.innerWidth && window.innerWidth ').appendTo('#mediaDisplayContainer'); $('#mediaDisplayContainer iframe').css('height', (window.innerHeight ? (window.innerHeight * 0.80) : 500)); $('#mediaDisplayContainer iframe').attr('src', selectedFPPanoramaSrc); $('#floorplan-media-viewer').fadeIn(300); } } function f_expandMedia() { //var url = $('#mediaDisplayContainer object').attr('data'); var url = $('#mediaDisplayContainer iframe').attr('src'); window.open(url, '_blank'); } function f_hideAllModals() { f_hideRichMediaViewer(); $("#dialog-overlay").hide(); $('#floorplan-zoom').hide(); $('#fp-zoom').flexslider("destroy"); $('.flex-zoom').remove(); $('#videoDisplayContainer iframe').attr('src',''); //stop video $('#mediaDisplayContainer object').attr('data',''); //clear 3d pano $('#floorplan-video-viewer').fadeOut(300); $('#floorplan-media-viewer').fadeOut(300); $('#movein-date-dialog').hide(); $('#floorplan-oll-phases-modal').hide(); $(".amenities-popup-lightbox").fadeOut(300); }
Filter Your Results
Move-In Date
Floor plan images are only representations and actual floor plan layouts may differ slightly than pictured.
Available Floor plans meet your search criteria

Studio - Maple

  • beds
    S
  • baths
    1
  • sq.ft
    402

Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

One Bedroom Oak /Pine

  • beds
    1
  • baths
    1
  • sq.ft
    646

Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bedrooms - Lake

  • beds
    2
  • baths
    1
  • sq.ft
    1,043

The Lake floor plan offers wide open space, kitchen pantry and Split floor plan style. Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage.

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bedrooms - Stream

  • beds
    2
  • baths
    2
  • sq.ft
    885

The Stream Floor plan offers 2 full bathrooms, walk in closet in the master and open Livingroom. Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage.

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bedrooms - Creek

  • beds
    2
  • baths
    2
  • sq.ft
    898

Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage.

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bedrooms - River

  • beds
    2
  • baths
    2
  • sq.ft
    962

The River floor plan offers a wide open living room, with island in the kitchen, and a walk in closet in the Master bedroom suite. Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bedrooms - Ocean

  • beds
    2
  • baths
    2
  • sq.ft
    1,043

The Ocean Floor plan offers pantry closet in the kitchen, and 2 large guest bathrooms. Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Two Bed Townhome

  • beds
    2
  • baths
    2.5
  • sq.ft
    930

Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Yard, Garage with Additional Parking.

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Three Bed Townhome

  • beds
    3
  • baths
    2.5
  • sq.ft
    1,106

Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Yard, Garage with Additional Parking.

FEATURED AMENITIES
  • Heat
  • View
  • Patio
  • Range

Back to Website
Full Screen
Rich Media Viewer
3D
2D
Virtual Panoramic
Furniture Arranger
Floor plan images are only representations and actual floor plan layouts may differ slightly than pictured.
Close
Renderings are intended only as a general reference. Features, materials, Finishes and layout of units may be differemt that show, For more details , inquire ask a leasing representative about specific apartment features.
This site is in no way affiliated with or endorsed by specified business. It exists as a compendium of supporting information intended for informational purposes only. If you want to buy this website, please don't hesitate to contact us via e-mail: "d e n a c c 9 7 7 (at) g m a i l (dot) c o m" (delete spaces) or you can find and buy it on Afternic domain auctions.