Smooth marker animation on google map along with proper turns and camera bearing.
- Pass the Marker to animate, googlemap, Latlng of current position of the marker, Latlng of curent position of the user, duration of the animation & CameraUpdate of googlemap.
CarMoveAnim.startcarAnimation(marker,googleMap, startposition,endposition,duration,cameraupdate);
Here marker,googlemap,startposition refers to the position of marker,end position refers to the position of the user or wherever the marker needs to be placed. These four fields are mandatory. -
- Note:
If you are animating car onLocationChanged() then, Ideal location request for car animation should be as below. Greater than the interval mentioned will give more good results but less than this may hamper the animation.
mLocationRequest = new LocationRequest(); mLocationRequest.setInterval(1000 * 5); mLocationRequest.setFastestInterval(1000 * 3); mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
- App Level: implementation 'com.github.tintinscorpion:CarMarker-Animation:1.0'
- Project Level: maven { url 'https://jitpack.io' }