Is there any way to animate the markers showing on the map? My markers are being shown as I scroll the through the map (asynchronously). For now, they appear static on the map. I would like to make them fall in from above while fading in. Is there any way to add this option to MarkerOptions
? something like this:
static final LatLng MELBOURNE = new LatLng(-37.813, 144.962);
Marker melbourne = mMap.addMarker(new MarkerOptions()
.position(MELBOURNE)
.alpha(0.7f))
.animateShow(MarkerOptions.BOUNCE_IN); //this is what I wish for
THANKS!