2

Android アプリケーションで ArcGIS API を使用しています。以前に Google API を使用したことがあります。以下のような Google API で可能な射影計算があります。

Projection projection = map.getProjection();
        Point p = new Point();
        projection.toPixels(gp, p);//gp is a geoPoint computed earlier.

質問: ArcGIS API に類似したものはありますか?

GeometryEngine.project(point p, spatialReference sr1, spatialReference sr2)ArcGIS ドキュメントでメソッドを見てき ました。しかし、これを使用して上記と同様の計算を行う方法がわかりません。ピクセル座標を取得するには、どの spatialReference を使用すればよいですか?

4

1 に答える 1

0

com.esri.android.map で MapView クラスの toScreenPoint() および toMapPoint() メソッドを探しています。

http://resources.arcgis.com/en/help/android-sdk/api/reference/com/esri/android/map/MapView.html#toScreenPoint(com.esri.core.geometry.Point)

于 2013-03-28T00:48:36.017 に答える