map.addEventListener(ZoomEvent.ZOOM_END, checkScale); if(map.scale > 40000) graphicsLayer.visible = false;
import com.esri.ags.events.ZoomEvent;
private function checkScale(evt:Event):void { if(map.scale > 40000){ graphicsLayer.visible = false; }else{ graphicsLayer.visible = true; } }
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.