2013年5月7日

esri:InfoSymbol

摘要: 1 <esri:InfoSymbol id="infos"> 2 <esri:infoRenderer> 3 <fx:Component> 4 <mx:HBox> 5 <s:Label text="第一列"/> 6 <s:Label text="第二列"/> 7 </mx:HBox> 8 </fx:Component> 9 ... 阅读全文

posted @ 2013-05-07 16:09 看天空的星星 阅读(258) 评论(0) 推荐(0) 编辑

ArcGIS Viewer for Flex 4326坐标系与12100坐标系坐标互转

摘要: 1 定义以4326坐标系定位的地图 1 <esri:SpatialReference id="lo" wkid="4326" /> 2 3 <esri:Map crosshairVisible="true" width="100%" height="100%" id="myMap" logoVisible="false"> 4 <esri:ArcGISTiledMapServiceLayer url="http:// 阅读全文

posted @ 2013-05-07 16:02 看天空的星星 阅读(809) 评论(0) 推荐(0) 编辑

ArcGIS Viewer for Flex绘点,连线

摘要: 前言,如何加载ArcGIS类库及地图服务参见<ArcGIS Viewer for Flex加载地图服务>1 定义坐标点1 private var arr:Array=2 [3 new MapPoint(114.06,30.74,new SpatialReference(4326)),4 new MapPoint(114.41,30.55,new SpatialReference(4326))5 ];2 建立map 1 <esri:Map crossha... 阅读全文

posted @ 2013-05-07 15:55 看天空的星星 阅读(333) 评论(0) 推荐(0) 编辑

ArcGIS Viewer for Flex加载地图服务

摘要: 1 建立flex项目将ArcGIS Viewer for Flex API加载到libs文件夹下(agslib-3.2-2013-03-19.swc),并在项目-属性-flex构建路径-库路径中将其添加进去2 定义坐标系1 <fx:Declarations>2 <!-- 4326为经纬度坐标系,12100为投影坐标系 -->3 <esri:SpatialReference id="sr" wkid="4326" />4 </fx:Declarations>3 绘制地图 1 <esri:Map cros 阅读全文

posted @ 2013-05-07 15:45 看天空的星星 阅读(436) 评论(0) 推荐(0) 编辑

一个remoteobject调用多个java方法(Flex)

摘要: 1 定义remoteobject对象 1 <fx:Declarations> 2 <s:RemoteObject id="myService" destination="demoservice" 3 endpoint="http://localhost:8080/BlazeJavaDemo/messagebroker/amf" 4 fault="myService_faultHandler(event)" 5 showBusyCu... 阅读全文

posted @ 2013-05-07 15:26 看天空的星星 阅读(280) 评论(0) 推荐(0) 编辑

使用BlazeDS与Flash Builder4.5整合Java EE应用

摘要: 前言写这篇文章的目的是对于一个完全不懂的新手,也能快速step by step创建Flex与Java EE的整合应用,开启java与flex的企业级应用开发的第一页。开发环境及工具windows 7JAVA SDK 1.6.0_17Flash Builder 4.5SpringSource Tool Suite IDEBlazeDS之所以选用SpringSource Tool Suite IDE是因为常用的插件已经帮我们集成好,而且对于Spring的操作支持等自然不必说。step by step create the demo1. 首先使用SpringSource Tool Suite 创建我 阅读全文

posted @ 2013-05-07 15:07 看天空的星星 阅读(231) 评论(0) 推荐(0) 编辑

导航