ThinkGeo.com    |     Documentation    |     Premium Support

Layer.ZoomLevelSet.ZoomLevel10 NEED the Same to rastr img

I need display rastr image starting from some scale.


And not to display at other scale.


How can i do it?



Artem, 
  
 RasterLayer has 2 properties UpperThreshold and LowerThreshold, with which you can set the visible range in scale for the raster image. Codes will be like this: 
 
            EcwRasterLayer ecwImageLayer = new EcwRasterLayer(@"…\SampleData\Data\World.ecw");
            ecwImageLayer.UpperThreshold = 10000;
            ecwImageLayer.LowerThreshold = 100;
 
 Thanks, 
  
 Ben

)) 

Thenk 

I am stuped)



Just not that easy to find a proper property. We have the same case all the time. :-)