Address
16037 Arminta St. Van Nuys, CA 91406
// Initialize and add the map
function initMap() {
// The location of Uluru
const uluru = { lat: 34.2142266, lng: -118.4829511 };
// The map, centered at Uluru
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 15,
center: uluru,
});
// The marker, positioned at Uluru
const marker = new google.maps.Marker({
position: uluru,
map: map,
});
}