2
我在Android應用程序中使用ArcGIS API。我之前使用過Google API。有一個投影計算,其有可能在谷歌API象下面這樣:Android arcGIS地圖投影
Projection projection = map.getProjection();
Point p = new Point();
projection.toPixels(gp, p);//gp is a geoPoint computed earlier.
問題:是否有任何在ArcGIS API相似?
我在ArcGIS文檔中看到了GeometryEngine.project(point p, spatialReference sr1, spatialReference sr2)
方法。但不知道如何使用它來獲得與上面類似的計算。我應該使用什麼spatialReference來獲取像素座標?