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 8950173
In Process

The Archive Base Latest Questions

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

I want to geocode address as soon as map center has been changed. How

  • 0

I want to geocode address as soon as map center has been changed.

How can I handle map moveend with new Google Maps for Android V2? (I’m talking about the case then user drags map by finger)

  • 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:23:36+00:00Added an answer on June 15, 2026 at 1:23 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 am using google maps geocoder to geocode a zipcode and I want it
I need help with Google maps. I want to create a map where I
var geocoder, map, point, fmtAdd, marker; function mapLoad() { geocoder = new google.maps.Geocoder(); var
I am currently using the google maps api to geocode locations on the map
I want to retrieve and store the result of Google Maps API function geocode()
I am trying to use the google maps javascript API to map an address
Hi have an array of cities and want to create a google map using
I want to remove an individual marker from Google map. I am using version
I've been looking through version 3 of the google maps api, and I have
I am new with google maps api. I took some sample from the manual

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.