Located on some of the area’s most cherished real estate, these seventy-seven acres in the North Raleigh rolling countryside create the canvas for timeless architecture and style.
Walk its features, absorb the beauty, and listen…all tell the heritage of this precious land. Beautiful views describe this place called Bella Vista. Its ever changing landscape encompasses hardwood hills, misty morning sunrises, and serene pasture lands.
→ Sits in the spectacular rolling hills of North Raleigh
→ Minutes from world class entertainment options
→ Seventy-seven acres in the North Raleigh rolling countryside
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);