å k&$[eí=iŒTš÷Accept-Encoding,User-AgentfÇ‹›MZ=¼øÎ Å2 KEY: https://pibtrindade.com.br/wp-content/themes/pibtrindade/js/mapa.js HTTP/1.1 200 OK Date: Sat, 13 Dec 2025 22:49:09 GMT Server: Apache Last-Modified: Fri, 15 Jun 2018 18:06:30 GMT Accept-Ranges: bytes Content-Length: 1220 Cache-Control: max-age=31536000, public Expires: Sun, 13 Dec 2026 22:49:09 GMT Vary: Accept-Encoding,User-Agent Connection: close Content-Type: application/javascript; charset=utf-8 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); } });