ThinkGeo.com    |     Documentation    |     Premium Support

How do I set restric the Zoom level upto when using WMSOverlay and InMemoryMarkerOverlays?

Hi ThinkGeo,


How do I  set restric the Zoom level upto 15 when using WMSOverlay and InMemoryMarkerOverlays?


I don't have a InMemoryFeatureLayer in my app that I can rely on to Synchronize with the Map zoomLevelSet.


Using JavaScript can only restrict zoom levels for Google layer etc.


Regards


Anil



Hi ThinkGeo, 
  
 I tried to use something like following and it works. Let me know if I have missed something. 
   
 ===================== 
  ZoomLevelSet zoomLSet = new ZoomLevelSet(); 
   zoomLSet.ZoomLevel19.Scale = 0; 
  … 
 Map1.SyncClientZoomLevels(zoomLSet); 
 ===================== 
  
 Regards, 
 Anil

Anil, 
  
 Your solution is correct, just let you know there might be another way to do it is by using CustomZoomLevel. 
  
 Thanks, 
 James