下面介绍的是设置地图范围的一系列方法,以及获取地图范围的方法。
如果在初始化地图时没有对地图范围进行设置,则将会使用默认的设置信息,它将会是所使用的地图文档中最后一次保存时的地图显示范围。如果使用多个图层,或服务,默认的地图范围将会是底图或第一个图层的范围信息。
要设置地图范围,就要用到extent属性或者是Extent类。
如果是使用extent属性,步骤如下:添加<esri:Extent>标签,并设置表示范围的坐标值以及空间参考的ID,代码如下:
<esri:SpatialReference id="wgs" wkid="4326"/> <esri:Extent id="extentOfKansas" xmin="-103" ymin="36" xmax="-94" ymax="41" spatialReference="{wgs}"/> <esri:Map id="myMap" extent="{extentOfKansas}"> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ ESRI_StreetMap_World_2D/MapServer"/> <esri:ArcGISDynamicMapServiceLayer id="myLayer" url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/ Petroleum/KGS_OilGasFields_Kansas/MapServer" /> </esri:Map>
如果是使用Extent类,与上面类似,大致的标签结构如下:
<esri:SpatialReference id="wgs" wkid="4326"/> <esri:Map id="myMap"> <esri:extent> <esri:Extent xmin="-103" ymin="36" xmax="-94" ymax="41" spatialReference="{wgs}"/> </esri:extent> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer"/> <esri:ArcGISDynamicMapServiceLayer id="myLayer" url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Petroleum/KGS_OilGasFields_Kansas/MapServer" /> </esri:Map>
有些情况下,我们想设置的地图范围不是底图或第一个图层的,而是添加的其他图层或服务的坐标范围。则可以通过load属性来进行设置:load="myMap.extent = myKansasLayer.fullExtent"。load属性的功能是在创建地图时,执行引号内的代码。在这里是执行引号里面这段设置地图范围为指定图层范围的代码。参考代码如下:
<esri:Map id="myMap"> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ ESRI_StreetMap_World_2D/MapServer"/> <esri:ArcGISDynamicMapServiceLayer load="myMap.extent = myKansasLayer.fullExtent" id="myKansasLayer" url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/ Petroleum/KGS_OilGasFields_Kansas/MapServer" /> </esri:Map>
对地图范围发生变化进行事件监听,使用ExtentEvent事件,每当用户平移或缩放地图时该事件就会被激活。可以通过添加MXML标签的方法来添加,也可以通过ActionScript代码的方式添加,示例如下:
MXML 示例:
<esri:Map id="myMap" extentChange="displayExtent()"> <esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/ ESRI_StreetMap_World_2D/MapServer" /> </esri:Map>
as示例:
myMap.addEventListener (ExtentEvent.EXTENT_CHANGE, extentChangeHandler);
时间: 2024-11-10 18:14:31