Пожалуйста, проверьте следующую документацию
https://github.com/gursuasik/GoogleMapsRippleEffect
Загрузка
Использование Gradle: в разделе зависимостей:
compile 'com.github.aarsy.googlemapsrippleeffect:googlemapsrippleeffect:1.0.2'
Пример приведен ниже
// mMap is GoogleMap object, latLng is the location on map from which ripple should start
mapRipple = new MapRipple(mMap, latLng, context);
mapRipple.withNumberOfRipples(3);
mapRipple.withFillColor(Color.BLUE);
mapRipple.withStrokeColor(Color.BLACK);
mapRipple.withStrokewidth(10); // 10dp
mapRipple.withDistance(2000); // 2000 metres radius
mapRipple.withRippleDuration(12000); //12000ms
mapRipple.withTransparency(0.5f);
mapRipple.startRippleMapAnimation();