Trust Homestead to deliver your luxury dream home, nestled within the quiet streets of The Hamptons, a 182-acre community located in the greater Chapel Hill Area.
The Hamptons custom luxury new home community is just around the corner from Fearrington Village, and only minutes from Jordan Lake. Each homesite is uniquely different, with natural landscape characteristics all of its own—poised to enhance your
custom home elevation for a lifetime. Experience Chapel Hill estate living with the benefits of more affordable living, forego the city taxes, and invest in the rich history of this up-and-coming area.
Convenient to both the Raleigh and Durham metropolitan areas, The Hamptons community offers a location in proximity to endless activities.
function initMap() {
var mapElement = document.querySelector('.elementor-widget-google_maps iframe');
if (!mapElement) {
console.error('Google Maps iframe not found');
return;
}
var mapSrc = mapElement.src;
// Define location bias (latitude, longitude)
var locationBias = '35.7796,78.6382'; // Example: San Francisco, CA
// Check if URL already has parameters
if (mapSrc.includes('?')) {
mapSrc += `&location=${locationBias}`;
} else {
mapSrc += `?location=${locationBias}`;
}
// Apply the new src with location bias
mapElement.src = mapSrc;
}
// Run the function after the page has loaded
document.addEventListener('DOMContentLoaded', initMap);