SaturnsEye
SaturnsEye

Reputation: 6499

Disable Google Maps zoom amount

Is it possible to allow zooming on Google Maps but only allow the amount of zoom?

I found this code to disable zooming but is there a way I can allow users to zoom in so much?

options = $.extend({
    scrollwheel: false,
    navigationControl: false,
    mapTypeControl: false,
    scaleControl: false,
    draggable: false,
    mapTypeId: google.maps.MapTypeId.ROADMAP
}, options);

For example I dont want zoome to go any higher than zoom: 15,

Upvotes: 0

Views: 53

Answers (1)

Joachim Rohde
Joachim Rohde

Reputation: 6045

You are looking for the maxZoom property in MapOptions.

Upvotes: 1

Related Questions