9
我已經搜索瞭如何在地圖點擊時獲取位置的座標。但是,大多數(如果不是全部)例子都需要MapView
作爲參數。例如:如何通過MapFragment(而不是MapView)獲取地圖的座標?
public boolean onTap(GeoPoint p, MapView map){
if (isPinch){
return false;
}else{
Log.i(TAG,"TAP!");
if (p!=null){
handleGeoPoint(p);
return true; // We handled the tap
}else{
return false; // Null GeoPoint
}
}
}
@Override
public boolean onTouchEvent(MotionEvent e, MapView mapView)
{
int fingers = e.getPointerCount();
if(e.getAction()==MotionEvent.ACTION_DOWN){
isPinch=false; // Touch DOWN, don't know if it's a pinch yet
}
if(e.getAction()==MotionEvent.ACTION_MOVE && fingers==2){
isPinch=true; // Two fingers, def a pinch
}
return super.onTouchEvent(e,mapView);
}
如何獲得,因此與MapFragment
,而不是MapView
地圖上的觸摸位置的位置?