Skip to content

This library will help to show the marker move along the route and turn smoothly along the road curves.

Notifications You must be signed in to change notification settings

lordmen99/CarMarker-Animation

Repository files navigation

CarMarker-Animation

Smooth marker animation on google map along with proper turns and camera bearing.



Demo



Steps:

  • 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);
      

      Dependency

    • App Level: implementation 'com.github.tintinscorpion:CarMarker-Animation:1.0'

    • Project Level: maven { url 'https://jitpack.io' }
    • Developers

About

This library will help to show the marker move along the route and turn smoothly along the road curves.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages