That doesn't work. Does it make a difference that I'm using a v3
STYLED map?
My code:
var myOptions = {
zoom: zoom,
center: latlng,
disableDefaultUI: true,
navigationControl: true,
scrollwheel: false,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.SMALL,
position: google.maps.ControlPosition.TOP_RIGHT,
streetViewControl: false},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var mapStyle =
[{featureType:"road.highway",elementType:"labels",stylers:
[{visibility:"simplified"}]}];
map = new google.maps.Map(document.getElementById("find-map"),
myOptions);
var styledMapOptions = {map: map};
var styleMapType = new google.maps.StyledMapType(mapStyle,
styledMapOptions);
map.mapTypes.set('minimial', styleMapType);
map.setMapTypeId('minimial');