Gli stili delle Google Maps
// stilizing map
var styledMapType = new google.maps.StyledMapType([
// style json
],
{name: 'Styled Map'});
// vars
var args = {
zoom : 16,
center : new google.maps.LatLng(0, 0),
mapTypeId : google.maps.MapTypeId.ROADMAP
};
// create map
var map = new google.maps.Map( $el[0], args);
// associate the styled map with the MapTypeId and set it to display.
map.mapTypes.set('styled_map', styledMapType);
map.setMapTypeId('styled_map');PreviousCreare un nuovo bottone di BootstrapNextPersonalizzare completamente l'aspetto di una select
Last updated