ThinkGeo.com    |     Documentation    |     Premium Support

YahooOverlay and ZoomLevels

Hi,


I am trying to find a way to restrict the ZoomLevels on my map to ZoomLevels01 -> ZoomLevels05.  I have seen all of the examples and I can easily do this using Shape Files and Layer Overlays.  The problem is that my map is using only the YahooOverlay and a InMemoryMarkerOverlay, and I cannot seem to restrict the ZoomLevels to get the desired results.  Is there a way to set ZoomLevels on a YahooOverlay, or is the problem here that you still don't support the Yahoo static api?


Thanks!



For anyone interested, I realized the solution to this was done client-side using the following code



var OnMapCreating = function(map)
{
OpenLayers.Layer.Yahoo = OpenLayers.Class(OpenLayers.Layer.Yahoo, {
MIN_ZOOM_LEVEL: 2,
MAX_ZOOM_LEVEL: 7
});
}


Jeremy, 
  
 Great; thanks for sharing. Anymore questions please let me know. 
  
 Thanks, 
 Howard