Arcgis Android 坐标转换
http://spatialreference.org/
首先,在上面的网站查出现有的坐标srid,然后查出目标Srid。
参考api
示例代码
Point point = new Point(120.0, 30.0); Point p = (Point) GeometryEngine.project(point, SpatialReference.create(3857), SpatialReference.create(4326));
自己转换的时候填自己的SRID就行,上面的2个我随便输入的,第一个指输入的,第二个指输出的