Logo

Nuestro Local

Concept Store - CarrascoConcept Store - Carrasco

Ir al lugar →

A. Schroeder 6465 esq. A. Arocena

Lun a Sáb de 10:00hs a 19:00hs

Tel: 097 389 212

Ver mapa

(function() { if (typeof document === "undefined") return; function waitForElement(selector, callback) { const el = document.querySelector(selector); if (el) { callback(el); } else { setTimeout(() => waitForElement(selector, callback), 50); } } function initMap() { const mapDiv = document.getElementById("map"); if (!mapDiv) return; // Reiniciar el mapa si ya existe if (globalThis.myMap) { globalThis.myMap = null; mapDiv.innerHTML = ""; } const initialCenter = { lat: -34.8953004, lng: -56.1447687 }; const mapOptions = { center: initialCenter, zoom: 12 }; const mapInstance = new google.maps.Map(mapDiv, mapOptions); new google.maps.Marker({ position: { lat: -34.8872745, lng: -56.0574748 }, map: mapInstance, title: "Concept Store - Carrasco" }); globalThis.myMap = mapInstance; } function centerMap(lat, lng) { if (globalThis.myMap) { globalThis.myMap.setCenter({ lat, lng }); globalThis.myMap.setZoom(15); } } waitForElement("#map", () => { initMap(); }); globalThis.centerMap = centerMap; })();