Select to view content in your preferred language

Set Minimum Map scale

595
1
06-19-2011 01:31 AM
EssamYoussif
New Contributor
How can i Set minimum map scale whatever zoom out done?
Tags (2)
0 Kudos
1 Reply
TristanForward2
Emerging Contributor
You can try something like this

featureLayer.minScale = 100000; <!--Min scale at which appears-->
featureLayer.maxScale = 0;

or

Within the declarations tags
<esri:GraphicsLayer id="myGraphicsLayer" minScale="1500000"/>

Go here for overall understanding
http://resources.esri.com/help/9.3/arcgisserver/apis/flex/apiref/com/esri/ags/layers/Layer.html#isIn...
0 Kudos