arcgis api for flex 开发入门(二)map 的创建

本文介绍了如何在Flex中利用esri:Map标签轻松创建并配置一个显示地理数据的地图,包括添加不同类型的图层、定义空间参考系、设置显示范围等关键步骤。
在flex 中创建一个esri 的map ,你只需要使用<esri:Map>标签就可以轻松完成。
在<esri:Map>标签中可以添加属性和响应事件的消息。
如下:
<esri:Map width="100%" height="50%" id="EsriMap" creati  resize="EsriMapResize(event);" extentChange="ESRIMapExtentChange(event);" mouseMove="OnDrawMouseMove(event)" />
width和 height定义的map 的大小,id="EsriMap" 唯一标识了这个map。
针对map 的消息也有很多,最常用的就是creationComplete,resize和鼠标消息了。
现在我们map有了,那么我们如何让她显示数据呢,这就需要给 <esri:Map>标签添加一个layer 子标签   。
在ags flex api 中有以下几种类型的layer。   
  ArcGISDynamicMapServiceLayer :Allows you to work with a dynamic map service resource exposed by the ArcGIS Server REST API. 
  ArcGISImageServiceLayer: Allows you to work with an image service resource exposed by the ArcGIS Server REST API. 
  ArcGISMapServiceLayer :The base class for ArcGIS Server map services. 
  ArcGISTiledMapServiceLayer :Allows you to work with a cached map service resource exposed by the ArcGIS Server REST API. 
  ArcIMSMapServiceLayer :Allows you to work with an ArcIMS image service. 
  GPResultImageLayer :Allows you to view a geoprocessing task result identified by jobId and parameterName. 
  GraphicsLayer: A layer that contains one or more Graphic features. 
其中GraphicsLayer是支持客户端添加Graphic features的图层,需要在客户端表现的,或者交互操作中产生的要素都要加到这个layer 上。
下面,我们就添加一个ArcGISTiledMapServiceLayer和GraphicsLayer到map 上。

<esri:Map width="100%" height="50%" id="EsriMap" creati  resize="EsriMapResize(event);" extentChange="ESRIMapExtentChange(event);" mouseMove="OnDrawMouseMove(event)" >
<esri:ArcGISTiledMapServiceLayer           url=" http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer " />
<esri:GraphicsLayer id="myGraphicsLayer" spatialReference="{sr}"/> 
</esri:Map>
其中<esri:ArcGISTiledMapServiceLayer>标签中的url 属性为提供该服务的地址。<esri:GraphicsLayer>标签其中的spatialReference属性定义了该图层的空间参考系。
创建一个空间参考系,只需要使用<esri:SpatialReference>标签就可以了,其中wkid 是esri已经定义好的空间草考系的ID,具体ID对应的空间参考可以在 http://resources.esri.com/help/9.3/arcgisserver/apis/REST/index.html?gcs.html 中查找。如下为创建一个kid="4326"的空间参考系。
<esri:SpatialReference id="sr" wkid="4326"/>
那么,我们如何定义我们想显示的范围呢?
很简单,在<esri:Map>下面添加<esri:extent>子标签,我们就可以来控制当前的显示范围了。
    <esri:extent>
  <esri:Extent  id = "esriMapExtent" xmin="116" ymin="39.5" xmax="116.5" ymax="40.5"/>
</esri:extent>
其中x是经度,y 是纬度。
这样一个北京地区的map 就可以显示到我们面前了。

完整代码如下

<?xml version="1.0" encoding="utf-8"?>

<mx:Application

    xmlns:mx="http://www.adobe.com/2006/mxml"

    xmlns:esri="http://www.esri.com/2008/ags"

    pageTitle="Using ArcGIS API for Flex to connect to a cached ArcGIS Online service"

    styleName="plain">

    <esri:SpatialReference id="sr" wkid="4326"/>

    <esri:Map crosshairVisible="true">

        <esri:extent>

  <esri:Extent  id = "esriMapExtent" xmin="116" ymin="39.5" xmax="116.5" ymax="40.5"/>

  </esri:extent>

        <esri:ArcGISTiledMapServiceLayer

            url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer" />

     <esri:GraphicsLayer id="myGraphicsLayer" spatialReference="{sr}"/>

    </esri:Map>

</mx:Application>


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值