Created
May 3, 2013 18:26
-
-
Save fdaciuk/5512427 to your computer and use it in GitHub Desktop.
Google Maps v3 - Javascript (jQuery) Busca a latitude e longitude a partir do endereço passado em "data-address" na div #map-canvas.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function($) { | |
var $map = $( '#map-canvas' ), | |
address = $map.data( 'address' ), | |
lat, lng, | |
map_options = {}, | |
map, marker; | |
$.ajax({ | |
url : 'http://maps.googleapis.com/maps/api/geocode/json', | |
dataType : 'json', | |
type : 'GET', | |
data : { | |
address : address, | |
sensor : false | |
}, | |
success : function( data ) { | |
lat = data.results[0].geometry.location.lat; | |
lng = data.results[0].geometry.location.lng; | |
map_options = { | |
center : new google.maps.LatLng( lat, lng ), | |
zoom : 15, | |
mapTypeId : google.maps.MapTypeId.ROADMAP | |
}; | |
map = new google.maps.Map( $( '#map-canvas' )[0], map_options ); | |
marker = new google.maps.Marker({ | |
position : map.getCenter(), | |
map : map | |
}); | |
} | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Gmaps v3</title> | |
</head> | |
<body> | |
<div id="map-canvas" data-address="Rua Tal, 999, Bairro, Cidade - UF"></div> | |
<script src="http://maps.googleapis.com/maps/api/js?key=API_KEY&sensor=false"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment