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.

I am doing map clustering in android google maps v2. I just want to animate the marker from one geopoint to another , so please help me with a way to move marker in google maps.

share|improve this question

3 Answers

up vote 4 down vote accepted

There's one example of moving marker in google map v2 demo app .. in the sample of the play library!!

I have looked into that!! here the code for moving an marker : -- >

    public void animateMarker(final Marker marker, final LatLng toPosition,
            final boolean hideMarker) {
        final Handler handler = new Handler();
        final long start = SystemClock.uptimeMillis();
        Projection proj = mGoogleMapObject.getProjection();
        Point startPoint = proj.toScreenLocation(marker.getPosition());
        final LatLng startLatLng = proj.fromScreenLocation(startPoint);
        final long duration = 500;

        final Interpolator interpolator = new LinearInterpolator();

        handler.post(new Runnable() {
            @Override
            public void run() {
                long elapsed = SystemClock.uptimeMillis() - start;
                float t = interpolator.getInterpolation((float) elapsed
                        / duration);
                double lng = t * toPosition.longitude + (1 - t)
                        * startLatLng.longitude;
                double lat = t * toPosition.latitude + (1 - t)
                        * startLatLng.latitude;
                marker.setPosition(new LatLng(lat, lng));

                if (t < 1.0) {
                    // Post again 16ms later.
                    handler.postDelayed(this, 16);
                } else {
                    if (hideMarker) {
                        marker.setVisible(false);
                    } else {
                        marker.setVisible(true);
                    }
                }
            }
        });
    }

Hope it help every one!!

share|improve this answer
Check my answer which i just posted – Sandeep Dhull Dec 17 '12 at 10:09
1  
This is in file adt-bundle-linux/sdk/extras/google/google_play_services/samples/maps/src/com/exa‌​mple/mapdemo/MarkerDemoActivity.java if anyone is interested (in 4.2.2 examples) – Martin Konecny Mar 7 at 1:30
1  
Yes .. it is in there. – Sandeep Dhull Mar 7 at 4:19
@SandeepDhull Thanks a lot. That was extremely helpful. – Anil Apr 22 at 23:05

Hi I had the same problem, here my post Google Maps Android api v2 and current location

you can use remove() method of Marker to delete the old marker with the new one. i hope it's what you need

share|improve this answer

You can not move the marker. What you can do is remove the marker from List and then add it again with the new GeoPoint.

See:

First, you have to remove last overlay from List

mapView.getOverlays().remove(mapView.getOverlays().size() - 1);

After... you add your new Overlay into the List with new geolocation:

overlays.add(new Overlay(...));

I hope I helped.

bye

share|improve this answer
That''s for map v1 – Sandeep Dhull Dec 6 '12 at 2:44
Sorry, not seen this detail. But this solution does not work in maps v2? – Taynã Bonaldo Dec 6 '12 at 16:34
2  
No, it doesn't. V2 API is totally different. The answer from @antedesk provides a working method. – Trevor Dec 13 '12 at 13:36
There is no getOverlays() in maps v2 – Igor Ganapolsky Dec 18 '12 at 16:38

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.