Android esri arcGIS MapView をタップして緯度と経度を取得しようとしています。
map.setOnSingleTapListener(new OnSingleTapListener() {
private static final long serialVersionUID = 1L;
public void onSingleTap(float x, float y) {
System.out.println("x:" + x);
System.out.println("y:" + y);
// How to get Latitude Longitude coordinates of the point (x,y)?
}
});
ポイント(x、y)の緯度経度座標を取得するには?