您好,地图长按事件可以使用MapControl类的手势监听器来完成,m_mapControl.setGestureDetector;可以参考以下代码:
private GestureDetector.SimpleOnGestureListener mGestrueListener = new GestureDetector.SimpleOnGestureListener() { public void onLongPress(MotionEvent e) { };
};