Penske at Home Depot #6320

1550 Palm Beach Lakes
West Palm Beach, FL 33401

America Map

1550 Palm Beach Lakes
West Palm Beach, FL 33401

Abierto hasta las 8:30 AM – 7:30 PM
Fuera de horario
Reservar un Camión
¿Busca alquiler de ida?

Llame al 1-844-824-6609

var typeofLocPage = "post"; function stopFullOverlay() { let overlay = document.querySelector(".full-page-overlay"); overlay.classList.add("hidden"); }; function bootMap(){ var map; map = new google.maps.Map(document.getElementById("map"), { zoom: 17, mapTypeId: "roadmap", zoomControl: true, zoomControlOptions: { position: google.maps.ControlPosition.RIGHT_TOP, }, mapTypeControl: false, scaleControl: false, streetViewControl: false, rotateControl: false, fullscreenControl: false }); let postName = "Home Depot #6320"; let firstWord = postName.split(" "); if(firstWord[0] == "Penske") { var icon = { url: "https://assets.rbl.ms/32327435/origin.png", scaledSize: new google.maps.Size(24, 32), }; } else { var icon = { url: "https://assets.rbl.ms/32895603/origin.png", scaledSize: new google.maps.Size(24, 32), }; } let geocoder = new google.maps.Geocoder(); let address = "1550 Palm Beach Lakes, West Palm Beach, FL 33401"; geocoder.geocode({ address: address }, function (results, status) { if (status === google.maps.GeocoderStatus.OK) { let location = results[0].geometry.location; map.setCenter(location); let marker = new google.maps.Marker({ position: location, map: map, title: "Home Depot #6320", icon: icon }); } else { alert("Geocode was not successful for the following reason: " + status); } }); window.locAddress = "1550 Palm Beach Lakes West Palm Beach FL 33401"; google.maps.event.addListenerOnce(map, "idle", function () { console.log("Map has finished loading completely!"); // Accessibility fix: add title to all iframes inside the map container const mapDiv = document.getElementById("map"); const iframes = mapDiv.querySelectorAll("iframe"); iframes.forEach(function(iframe) { if (!iframe.getAttribute("title")) { iframe.setAttribute("title", "Google Maps showing location of " + postName); } }); setTimeout(()=>{ stopFullOverlay(); }, 2000); }); }