var latCentro = 45.87627; var longCentro = 11.50761; function initialize() { var styles = [ { stylers: [ { hue: "#fedd0c" }, { saturation: 10 } ] },{ featureType: "road", elementType: "geometry", stylers: [ { lightness: 100 }, { visibility: "simplify" } ] },{ featureType: "road", elementType: "labels", stylers: [ { visibility: "on" } ] },{ featureType: "poi", elementType: "labels", stylers: [ { visibility: "off" } ] } ]; var styledMap = new google.maps.StyledMapType(styles, {name: "Styled Map"}); var latlngCentro = new google.maps.LatLng(latCentro, longCentro); var settings = { zoom: 14, center: latlngCentro, scrollwheel: false, mapTypeControl: false, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, navigationControl: true, fullscreenControl: false, navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}, mapTypeId: [google.maps.MapTypeId.ROADMAP, 'map_style'] }; var map = new google.maps.Map(document.getElementById("mappa"), settings); map.mapTypes.set('map_style', styledMap); map.setMapTypeId('map_style'); var companyImage = new google.maps.MarkerImage('/images/mapsIcon.png', new google.maps.Size(40,40), new google.maps.Point(0,0), new google.maps.Point(20,45) ); var infowindow = new google.maps.InfoWindow(); } google.maps.event.addDomListener(window, 'resize', initialize); google.maps.event.addDomListener(window, 'load', initialize);