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 += '
' + fpv.caption + '
';
});
$('#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);
}
Lease Term - Best Price Lease Term - 1 Months Lease Term - 6 Months Lease Term - 7 Months Lease Term - 8 Months Lease Term - 9 Months Lease Term - 10 Months Lease Term - 11 Months Lease Term - 12 Months Lease Term - 13 Months Lease Term - 14 Months Lease Term - 15 Months
Sort By Floor Plan Name Sort By Square Feet
Show Available Floor Plans OnlyWhen Checked
Floor plan images are only representations and actual floor plan layouts may differ slightly than pictured.
Studio - Maple
Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony
FEATURED AMENITIES
Heat View Patio Range See all amenities
Loading...
One Bedroom Oak /Pine
Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage
FEATURED AMENITIES
Heat View Patio Range See all amenities
Loading...
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 See all amenities
Loading...
Two Bedrooms - Stream
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 See all amenities
Loading...
Two Bedrooms - Creek
Modern Stainless Steal Appliances, A/C, Washer and Dryer, Modern Finishes, Private Balcony with Storage.
FEATURED AMENITIES
Heat View Patio Range See all amenities
Loading...
Two Bedrooms - River
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 See all amenities
Loading...
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 See all amenities
Loading...
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 See all amenities
Loading...
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 See all amenities Virtual Tour
Loading...
Submitting Inquiry, Please Wait...
Inquiry sent successfully!
Floor plan images are only representations and actual floor plan layouts may differ slightly than pictured.