use EventDispatcher for Input- and Map-Events

This commit is contained in:
Hannes Janetzek
2014-02-14 14:50:19 +01:00
parent 940a753b41
commit e15163bb08
13 changed files with 153 additions and 168 deletions

View File

@@ -152,8 +152,7 @@ public class MapView extends RelativeLayout {
if (mGestureDetector.onTouchEvent(motionEvent))
return true;
mMap.handleMotionEvent(mMotionEvent.wrap(motionEvent));
mMap.input.fire(null, mMotionEvent.wrap(motionEvent));
return true;
}