zoukankan      html  css  js  c++  java
  • <API 2.0>Switching Basemaps

    http://help.arcgis.com/en/webapi/flex/samples/index.html

    <Mapping>---->Switching Basemaps

    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s
    ="library://ns.adobe.com/flex/spark"
                   xmlns:esri
    ="http://www.esri.com/2008/ags"
                   pageTitle
    ="Toggle between Map Services">
        
    <!--
        This sample shows one way of allowing users to change between different basemaps.
        It also ensures that the levels of detail (LOD) are updated based on which basemap is selected.
        If all base maps have the same LODs, you wouldn't need the layerShowHandler function.
        
    -->
        
    <fx:Script>
            
    <![CDATA[
                import com.esri.ags.geometry.MapPoint;
                import com.esri.ags.layers.TiledMapServiceLayer;
                
                import mx.events.FlexEvent;
                
                private function layerShowHandler(event:FlexEvent):void
                {
                    // update the LODs/zoomslider to use/show the levels for the selected base map
                    var tiledLayer:TiledMapServiceLayer = event.target as TiledMapServiceLayer;
                    myMap.lods = tiledLayer.tileInfo.lods;
                }
            
    ]]>
        
    </fx:Script>
        
        
    <esri:Map id="myMap"
                  level
    ="4"
                  load
    ="myMap.centerAt(new MapPoint(-11713000, 4822000))">
            
    <esri:ArcGISTiledMapServiceLayer show="layerShowHandler(event)"
                                             url
    ="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"
                                             visible
    ="{bb.selectedIndex == 0}"/>
            
    <esri:ArcGISTiledMapServiceLayer show="layerShowHandler(event)"
                                             url
    ="http://server.arcgisonline.com/ArcGIS/rest/services/USA_Topo_Maps/MapServer"
                                             visible
    ="{bb.selectedIndex == 1}"/>
            
    <esri:ArcGISTiledMapServiceLayer show="layerShowHandler(event)"
                                             url
    ="http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer"
                                             visible
    ="{bb.selectedIndex == 2}"/>
        
    </esri:Map>
        
    <s:ButtonBar id="bb"
                     right
    ="5" top="5"
                     requireSelection
    ="true">
            
    <s:dataProvider>
                
    <s:ArrayList>
                    
    <fx:String>Streets</fx:String>
                    
    <fx:String>U.S. Topo</fx:String>
                    
    <fx:String>Imagery</fx:String>
                
    </s:ArrayList>
            
    </s:dataProvider>
        
    </s:ButtonBar>
    </s:Application>

    显示:

  • 相关阅读:
    CUP的MESI协议
    synchronized 锁的升级
    BigDecimal/Long 前后端交互失去精度解决办法
    nested exception is java.lang.NoClassDefFoundError: Could not initialize class org.springframework.http.converter.json.MappingJackson2HttpMessageConverter
    根据文件原始名称,文件根路径按照日期生成存储路径
    异步处理MultipartFile -- No such file or directory
    select下拉框相关操作(更新中。。。)
    input清空和重置select下拉框
    sql多字段分组排序显示全部数据
    ajax发送请求下载字节流形式的excel文件
  • 原文地址:https://www.cnblogs.com/pandy/p/2077512.html
Copyright © 2011-2022 走看看