I’d like, when I open the map on my website, start from an higher level and zoom to a lower level.
For example :
var mapOptions = {
mapTypeControl: false,
panControl: false,
zoom: 15,
center: location,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'myScale']
}
};
zoom must start to 15 and go to 10 automatically.
Is it possible?
I guess you want something like this?