Flex开发ArcGIS问题集锦五:怎样显示本地地图

            Flex开发ArcGIS问题集锦五:怎样显示本地地图

思路:第一步:发布地图

           第二步:写代码(代码如下)

代码

<?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:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:esri="http://www.esri.com/2008/ags">
	<fx:Declarations>
		<!-- 将非可视元素(例如服务、值对象)放在此处 -->
	</fx:Declarations>
	<esri:Map crosshairVisible="true">
		<esri:ArcGISDynamicMapServiceLayer  url="http://SDRJ-WX/arcgis/rest/services/SampleMap/MapServer"/>
	</esri:Map>
</s:Application>
效果
Flex开发ArcGIS问题集锦五:怎样显示本地地图_第1张图片

备用知识

5.1如何获取URL的值

第一步:打开ArcCatalog

第二步:如下图

Flex开发ArcGIS问题集锦五:怎样显示本地地图_第2张图片

第三步:在复制的地址上面在arcgisservices中加上rest

复制的地址为:     http://SDRJ-WX/arcgis/services/SampleMap/MapServer

添加rest后的地址:http://SDRJ-WX/arcgis/rest/services/SampleMap/MapServer

添加rest后的地址就是程序中需要的URL

到此结束!!!



你可能感兴趣的:(Flex开发ArcGIS问题集锦五:怎样显示本地地图)