基于OOSE方法的第六个工具:模三干扰识别软件

1)2014年3月31日,完成需求说明书.


2) 转换方法

1、首先确定应用系统的程序配置坐标系:
<esri:SpatialReference wkid="3857"/>
2、引入坐标系转换工具类:
import com.esri.ags.utils.WebMercatorUtil;
3、在调用的方法中做转换:
var geoPoint:MapPoint=new MapPoint(Number(maplon),Number(maplat));
var Webpoint = WebMercatorUtil.webMercatorToGeographic(geoPoint) as MapPoint;


3) 2014年4月14日完成结果验证,目前发现两个BUG,正在验证中。

4) 参考资料,完善算法

猜你喜欢

转载自flyqantas.iteye.com/blog/2038653