Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8950389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:26:42+00:00 2026-06-15T13:26:42+00:00

GoogleMap by default doesn’t provide event for map drag start and drag stop. I

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:26:43+00:00Added an answer on June 15, 2026 at 1:26 pm

    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);
            }
        }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one issue with Default Google Map app in our phone. I m
I have problem with google map Loading and making center in my java script
I have a google map inside a div that I need to be hidden
I have a program that I want to use google maps for. The problem
I have done a simple GoogleMap which responses to script.php?q=canada and shows a map.
I have a Google map that is showing a number of markers. When the
Basically whenever someones opens up my (Google) map I want it default to their
I'm using following code to locate location on default google map. Uri uri =
I have embedded a Google Map in my website. I want to change its
I want to display google map in Android ,i have map API even map

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.