Skip to content

Instantly share code, notes, and snippets.

@imminent
Created June 16, 2015 23:44
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save imminent/9183e661536914c7ff58 to your computer and use it in GitHub Desktop.
Save imminent/9183e661536914c7ff58 to your computer and use it in GitHub Desktop.
Makes a Android Google Maps marker animate a bounce
import android.os.Handler;
import android.os.SystemClock;
import android.view.animation.BounceInterpolator;
import android.view.animation.Interpolator;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.Marker;
/**
* Performs a bounce animation on a {@link Marker} when it is clicked.
*/
public class MapMarkerBounce implements GoogleMap.OnMarkerClickListener {
private final Handler mHandler;
private Runnable mAnimation;
public MapMarkerBounce() {
mHandler = new Handler();
}
@Override
public boolean onMarkerClick(final Marker marker) {
// This causes the marker at Perth to bounce into position when it is clicked.
final long start = SystemClock.uptimeMillis();
final long duration = 1500L;
// Cancels the previous animation
mHandler.removeCallbacks(mAnimation);
// Starts the bounce animation
mAnimation = new BounceAnimation(start, duration, marker, mHandler);
mHandler.post(mAnimation);
// for the default behavior to occur (which is for the camera to move such that the
// marker is centered and for the marker's info window to open, if it has one).
return false;
}
/**
* Performs a bounce animation on a {@link Marker}.
*/
private static class BounceAnimation implements Runnable {
private final long mStart, mDuration;
private final Interpolator mInterpolator;
private final Marker mMarker;
private final Handler mHandler;
private BounceAnimation(long start, long duration, Marker marker, Handler handler) {
mStart = start;
mDuration = duration;
mMarker = marker;
mHandler = handler;
mInterpolator = new BounceInterpolator();
}
@Override
public void run() {
long elapsed = SystemClock.uptimeMillis() - mStart;
float t = Math.max(1 - mInterpolator.getInterpolation((float) elapsed / mDuration), 0f);
mMarker.setAnchor(0.5f, 1.0f + 1.2f * t);
if (t > 0.0) {
// Post again 16ms later.
mHandler.postDelayed(this, 16L);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment