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; } }
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.