I'm using OpenLayers to display a map in a web page. I am using tiles from CloudMade, but the same issues occur with the Mapnik tiles from OpenStreetMap.

I'm trying to restrict the map so that the user cannot zoom all the way out to world view -- I want them to stay at roughly a city level zoom at minimum.

I have tried using the minZoomLevel / maxZoomLevel / numZoomLevels properties; only the maxZoomLevel and numZoomLevels properties seem to work, whereas the minZoomLevel property seems to be completely ignored.

Is there another way to accomplish this?

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

minZoomLevel is not supported for XYZ layers, of which OSM is a subclass.

See the following tickets for workarounds:

link|improve this answer
feedback

You could override the isValidZoomLevel function. Something like this (not tested):

OpenLayers.Map.isValidZoomLevel = function(zoomLevel) {
   return ( (zoomLevel != null) &&
      (zoomLevel >= 2) && // set min level here, could read from property
      (zoomLevel < this.getNumZoomLevels()) );
}

EDIT

Or you would need to override the available resolutions, see the example here: http://dev.openlayers.org/releases/OpenLayers-2.10/examples/zoomLevels.html

link|improve this answer
That isn't going to adjust the zoom bar though. – David Pfeffer Nov 22 '10 at 19:36
David, sorry ignored the controls. I've added more the my answer - see Edit. Essentially you'd need to define the resolutions you want to allow. – Jonathan Nov 23 '10 at 3:39
feedback

I found the simplest way to restrict the maxZoom levels for a XYZ layer was to override the getNumZoomLevels method:

map.getNumZoomLevels = function(){
        return 10;
        };

This pevents zooming beyond level 10 and also draws the zoomBar control correctly. This and a combination of the zoomOffset option should allow you to easily control min/max zoom without having to mess around with resolutions or subclasses.

link|improve this answer
Did the trick for me. It's horrible, but it works. Thanks. – Countzero Apr 23 at 9:00
Agreed - its nasty, but after a few futile hours messing around with resolutions I didn't really care.... – Graham Apr 24 at 11:58
Same here. Strange thing there's not a more straightforward way to do this, but well. Thanks again anyway. – Countzero Apr 24 at 14:10
feedback

Defining resolutions doesn't solve the problem (even in v2.1) - I didn't find any pernament fix for this, so I made my own zoombar in JS - that's what I would recommend to anyone who encounters issues with zoombar using custom tiles.

link|improve this answer
I found that defining resolutions worked perfect. I did have to do some math though. – rocketsarefast Dec 24 '11 at 0:27
feedback

I ended up with this solution as i could not figure out how to use zoomOffset in my setup.

        map.getNumZoomLevels = function(){
            return (options.maxzoom-options.minzoom+1);
        };

        map.isValidZoomLevel = function(zoomLevel) {
            var valid = ( (zoomLevel != null) &&
                (zoomLevel >= options.minzoom) &&
                (zoomLevel <= options.maxzoom) );
            if(!valid && map.getZoom() == 0){
                map.zoomTo(options.maxzoom - (options.maxzoom - options.minzoom)/2);

            }
            return valid;
        }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.