Play Video

We’re sorry, but this browser is not supported

Internet Explorer is no longer supported by Microsoft and this website will not display correctly when using Internet Explorer.

Please ensure that you are using a supported browser by downloading from one of the links below.

Google Chrome | Apple Safari | Firefox | Microsoft Edge

Notice

This provider only sees patients 65 and older.
Are you 65 or older?

document.addEventListener("DOMContentLoaded", (event) => { // The location const location = { lat: 39.879532, lng: -84.1376242 }; // The map, centered at the location const map = new google.maps.Map(document.getElementById("map-contain"), { zoom: 12, center: location, }); const image = "https://cdn.ketteringhealth.org/wp-content/themes/ketteringhealth-2020/assets/src/svg/icons/location-marker--active.svg"; const contentString = '
' + '' + 'Kettering Health Huber' + '' + '
' + '8701 Old Troy Pike
' + 'Huber Heights, OH 45424
' + '' + 'View on Google Maps' + '' + '
'; const infowindow = new google.maps.InfoWindow({ content: contentString, }); // The marker, positioned at the location const marker = new google.maps.Marker({ position: location, map: map, icon: image, //title: "Uluru (Ayers Rock)" }); marker.addListener("click", () => { infowindow.open(map, marker); }); });