
Untitled
By: a guest on
Aug 6th, 2012 | syntax:
None | size: 0.51 KB | hits: 13 | expires: Never
Styling/ Theming Google Maps using API V3
var mapDiv = document.getElementById('mappy');
var mapOptions = {
zoom: 12, //select the zoom that you want
draggable: false, //this will lock the draggable option
center: new google.maps.LatLng(-23.563594, -46.654239), //change here the latitude and longitude
mapTypeId : google.maps.MapTypeId.ROADMAP
}
pode ser ROADMAP, SATELLITE, HYBRID, TERRAIN
map = new google.maps.Map( mapDiv, mapOptions ); //this will include the variables in one to create the map with the options