® Todos os direitos reservados 2025 | Cardápio de Turismo
(function() {
var tentativas = 0;
var checar = setInterval(function() {
if (++tentativas > 20) return clearInterval(checar);
if (!window.map || !navigator.geolocation) return;
clearInterval(checar);
navigator.geolocation.getCurrentPosition(function(pos) {
var lating = [pos.coords.latitude, pos.coords.longitude];
L.circleMarker(lating, {
radius: 8,
color: '#fff',
weight: 3,
fillColor: '#2980b9',
fillOpacity: 1
}).addTo(window.map)
.bindPopup('
Você está aqui')
.openPopup();
});
}, 500);
})();