淡水求咸

博客园已经停止更新,请移步 http://lovecjh.com/

导航

随笔分类 -  GIS

Arcmap 安装完后使用出现visual fortran run-time error的解决方法
摘要:今天将ArcGIS安装到自己的XP笔记本上,安装过程一帆风顺,但打开Arcmap使用的时候,出现了visual fortran run-time error。 下面是解决方法: 下载个Dforrt.dll替换\ArcGIS\Desktop10.0\Bin目录下的相同文件即可。 Dforrt.dll下载地址:这里下载 阅读全文

posted @ 2014-01-03 22:17 深圳彦祖 阅读(4872) 评论(0) 推荐(0)

Flex数据交互之Remoting
摘要:一 前言 Flex数据交互常用的有三种方式:WebService、HttpService以及Remoting。 WebService方式已在这篇文章中给出,这篇文章主要讲解以Remoting方式进行数据交互,Remoting是基于AMF的数据交互,速度及性能均较WebService好,是公认最有效率的方法。 二 FluorineFX FluorineFx是一个开源库,提供了一种在.NET Framework下对Flex/Flash的远程调用过程。FluorineFx官网地址在这,FluorineFx可以在这下载。 下载安装后,会在vs2008中自动增加两处模板:Flu... 阅读全文

posted @ 2013-12-11 20:53 深圳彦祖 阅读(3226) 评论(6) 推荐(2)

天地图应用ArcGIS发布的服务
摘要:本文包含三个部分:利用ArcMap将Excel的数据转化为ArcGIS MXD文件、利用ArcMap发布服务、天地图添加ArcGIS发布的服务。 一 MXD文件的生成 假设在Excel中存有两个点的坐标: 接下来,将Excel中的数据导入ArcMap中:(文件 - 添加数据 - 添加XY数据) Excel中数据的坐标是经纬度,所以图层坐标系选择WGS1984:预定义 - Geographic Coordinate System - world - WGS1984 如果Excel存放是Mercator坐标,则选择WGS 1984 Web Mercator:预定义 - P... 阅读全文

posted @ 2013-11-01 22:10 深圳彦祖 阅读(7583) 评论(0) 推荐(2)

Clustering with the ArcGIS API for Flex
摘要:Clustering is an excellent technique for visualizing lotss of point data. We've all seen applications where there were so many points that simply appear as one big blob.Clustering takes the individual points and groups them into clusters and then renders the cluster as one graphic.In this post I 阅读全文

posted @ 2013-10-29 20:44 深圳彦祖 阅读(1828) 评论(0) 推荐(0)

Flex数据交互之WebService
摘要:In this article you will learn how to call webservices hosted on asp.net applications from flex. Firstrewrite webservice class as CYMService:package Services{ import mx.controls.Alert; import mx.managers.CursorManager; import mx.rpc.AbstractOperation; import mx.rpc.events.FaultEvent; ... 阅读全文

posted @ 2013-10-24 22:24 深圳彦祖 阅读(5191) 评论(2) 推荐(1)

Flex加载google地图、百度地图以及天地图作底图
摘要:一 Flex加载Google地图作底图 (1)帮助类GoogleLayer.as/** 根据输入的地图类型加载Google地图(by chenyuming)*/package Layers{ import com.esri.ags.SpatialReference; import com.esri.ags.geometry.Extent; import com.esri.ags.geometry.MapPoint; import com.esri.ags.layers.TiledMapServiceLayer; import com.esri.ags.... 阅读全文

posted @ 2013-09-27 22:49 深圳彦祖 阅读(18961) 评论(13) 推荐(6)

ArcGIS for Flex中引入google map作底图
摘要:上篇文章到在ArcGIS View中引入google map,这里讲ArcGIS for Flex中引入google map作底图。 同样道理,以google map作底图,需要编写继承自TiledMapServiceLayer的帮助类MapOperate。 MapOperate类的代码如下:package{ import com.esri.ags.SpatialReference; import com.esri.ags.geometry.Extent; import com.esri.ags.geometry.MapPoint; import com... 阅读全文

posted @ 2013-09-09 13:14 深圳彦祖 阅读(2333) 评论(0) 推荐(0)

ArcGIS Viewer for Flex中引入google map作底图
摘要:在ArcGIS Viewer for Flex开发中,经常需要用到google map作为底图,我们不能通过ArcGIS Viewer for Flex - Application Builder轻易的引入google map 作为底图,需要通过程序重写TiledMapServiceLayer来扩展从而加载google map。 这里有写好的GoogleMapLayer.as文件:package com.esri.viewer{ import com.esri.ags.SpatialReference; import com.esri.ags.geometry.Ext... 阅读全文

posted @ 2013-08-27 19:39 深圳彦祖 阅读(2871) 评论(8) 推荐(1)