您好,可以使用
MapControl.setGestureDetector(new GestureDetector(longTouchListener));
private SimpleOnGestureListener longTouchListener = new SimpleOnGestureListener() {
public void onLongPress(MotionEvent event) {
Point screenPoint = new Point(event.getX(),enent.getY());//从屏幕上获取点击的屏幕位置
Point2D location = new Point2D();
location = map.pixelToMap(screenPoint);//
将地图中指定点的像素坐标转换为地图坐标。
}
};