我正在尝试通过 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)的纬度经度坐标?