Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

GoogleMap by default doesn't provide event for map drag start and drag stop. I have already reported that problem here.

I want to make custom handler that will use plain onTouch event and combine it with setOnCameraChangeListener.

However i failed to find how I can access onTouch event of GoogleMap object. It doesn't provide such callback.

I wonder how can i handle onTouch event for map in Google Map API v2?

share|improve this question
what about overlays? Do they still have onTouchEvent() callback in API v2? – deville Dec 5 '12 at 12:31
there is no overlay anymore. for marker and geomtry object they introduced separate methods. – Alexey Zakharov Dec 5 '12 at 12:38

2 Answers

up vote 8 down vote accepted

Here is a possible workaround for determining drag start and drag end events:

You have to extend SupportMapFragment or MapFragment. In onCreateView() you have to wrap your MapView in a customized FrameLayout (in example below it is the class TouchableWrapper), in which you intercepts touch events and recognizes whether the map is tapped or not. If your onCameraChange gets called, just check whether the map view is pressed or not (in example below this is the variable mMapIsTouched).

Example code:

UPDATE 1:

  • return original created view in getView()
  • use dispatchTouchEvent() instead of onInterceptTouchEvent()

Customized FrameLayout:

private class TouchableWrapper extends FrameLayout {
    @Override
    public boolean dispatchTouchEvent(MotionEvent ev) {
    switch (ev.getAction()) {
        case MotionEvent.ACTION_DOWN:
        mMapIsTouched = true;
        break;

    case MotionEvent.ACTION_UP:
        mMapIsTouched = false;
        break;
        }

        return super.dispatchTouchEvent(ev);
    }
    }

In your customized MapFragment:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
    mOriginalContentView = super.onCreateView(inflater, parent, savedInstanceState);

    mTouchView = new TouchableWrapper(getActivity());
    mTouchView.addView(mOriginalContentView);

    return mTouchView;
}

@Override
public View getView() {
    return mOriginalContentView;
}

In your camera change callback method:

private final OnCameraChangeListener mOnCameraChangeListener = new OnCameraChangeListener() {
    @Override
    public void onCameraChange(CameraPosition cameraPosition) {
        if (!mMapIsTouched) {
            refreshClustering(false);
        }
    }
};
share|improve this answer
Hey @Alexey Zakharov, please have also a look into the Thread at Google Maps issue tracker: code.google.com/p/gmaps-api-issues/issues/… – AZ13 Dec 7 '12 at 8:22
@Alexey Zakharov i tried it but i get errors: the first error is on getActivity. could you post your customized MapFragment class declaration? (or entire code) – Gaucho Dec 30 '12 at 16:12
Hi @AZ13 , could you read my previous comment? – Gaucho Jan 9 at 16:52
you need to extend SupportMapFragment or MapFragment. – AZ13 Jan 9 at 17:19
Dear @AZ13 , I wrote it down this way but i get errors on getActivity(the code doesn't compiles): public class MyMapFragment extends MapFragment{ public View mOriginalContentView; public TouchableWrapper mTouchView; @ Override public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) { mOriginalContentView = super.onCreateView(inflater, parent, savedInstanceState); mTouchView = new TouchableWrapper(getActivity()); ...continues.. – Gaucho Jan 10 at 17:38
show 1 more comment

I did try @AZ13's solutions above but it falls short for what my needs were, namely to update the map ONLY after a user has interacted (dragged) the map. Also, I did not particularly liked the static boolean implementation idea either.

So, I improved the solution a bit, by declaring a custom listener in the TouchableWrapper class, which is implemented in the Activity Map class. That way we avoid the public static boolean variable and we also can trigger a map event precisely when we want to.

Here is the complete implementation:

How to detect a user pan/touch/drag on android map v2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.