I am using android maps v2works fine I can add and remove markers onLong Touch on locations.
Problem: I would like to drop the marker slowly into the to
It works great, but it seemed to me that sometimes the marker remained one step far from the target, so I added just one more line:
if (t < 1.0) { // Post again 10ms later. handler.postDelayed(this, 50); } else { // animation ended marker.setPosition(target); }
Hope it helps.