Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created May 3, 2013 18:26
Show Gist options
  • Save fdaciuk/5512427 to your computer and use it in GitHub Desktop.
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.
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
});
}
});
});
<!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&amp;sensor=false"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment