- Home >
- Documentation >
- Map >
- map
map
This function displays a Google.maps.Map.
Usage
Parameters
- options : Google.maps.MapOption
Note
- if defined, options.center is converted into Google.maps.LatLng
Example
$("#test").gmap3({
map:{
address:"POURRIERES, FRANCE",
options:{
zoom:4,
mapTypeId: google.maps.MapTypeId.SATELLITE,
mapTypeControl: true,
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
navigationControl: true,
scrollwheel: true,
streetViewControl: true
}
}
});


