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 を使用すればよいですか?