2010-12-11 2 views

답변

1

(터치 이벤트)를 누를 때지도의 중심을 설정합니다 그것 :

public boolean onTouchEvent(MotionEvent event) { 
    mapView.getController().setCenter(pin.getPoint()); 
} 
+0

감사합니다 :) 그것은 나를 위해 잘 작동합니다. – MAC