cEj$YS7jAAccept-Encoding,User-Agentv,sR=S[H KEY: https://cauteseg.com.br/wp-content/themes/cauteseg/js/mapa.js HTTP/1.1 200 OK Date: Sat, 12 Sep 2026 11:28:19 GMT Server: Apache Last-Modified: Tue, 24 Oct 2017 11:29:27 GMT Accept-Ranges: bytes Content-Length: 1220 Vary: Accept-Encoding,User-Agent Connection: close Content-Type: application/javascript var geocoder; var map; var marker; function initialize(endereco) { geocoder = new google.maps.Geocoder(); geocoder.geocode({ 'address': endereco + ', Brasil', 'region': 'BR' }, function (results, status) { if (status == google.maps.GeocoderStatus.OK) { if (results[0]) { var latitude = results[0].geometry.location.lat(); var longitude = results[0].geometry.location.lng(); var location = new google.maps.LatLng(latitude, longitude); var options = { scrollwheel: false, draggable: true, disableDefaultUI: true, zoom: 15, center: location, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById("mapa"), options); marker = new google.maps.Marker({ map: map }); marker.setPosition(location); } } }); } //Mapa single imoveis $(window).load(function(){ var end = $('.endereco').text(); if(end != ""){ initialize(end); } });