Please enter your username or email address. You will receive a link to create a new password via email.
jQuery(document).ready(function($) {
// Run an instant resize trigger after the listings load
setTimeout(function() {
if (typeof google !== 'undefined' && typeof google.maps !== 'undefined') {
jQuery('.houzez-properties-map, #houzez-gmap-main, .map_canvas').each(function() {
var mapInstance = jQuery(this).data('map');
if (mapInstance) {
google.maps.event.trigger(mapInstance, 'resize');
// Force the map to re-center on its listings markers
if(typeof houzez_map_center === 'function') {
houzez_map_center(mapInstance);
}
}
});
}
}, 1200); // 1.2 second delay allows the Houzez frame to fully finish rendering
});