A wrapper for the PaulLeCam/react-leaflet Marker that smoothly animates itself when `position` prop changes.
npm install react-leaflet-animated-markerA wrapper for the PaulLeCam/react-leaflet Marker that smoothly animates itself when position prop changes.

The usage doesn't change in nothing from the original react-leaflet marker component.
Just use react-leaflet-animated-marker instead.
```
npm install react-leaflet-animated-marker
`
...
import L from 'leaflet';
import { Map, TileLayer } from 'react-leaflet';
import Marker from 'react-leaflet-animated-marker';
...
render() {
return (
...
...
)
}
...
``