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; } }
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.