react-leaflet-animated-marker
v1.0.2
Published
A wrapper for the PaulLeCam/react-leaflet Marker that smoothly animates itself when `position` prop changes.
Downloads
416
Readme
React Leaflet Animated Marker
A wrapper for the PaulLeCam/react-leaflet Marker that smoothly animates itself when position
prop changes.
Usage
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 (
...
<Map>
<Marker position={this.state.position}/>
</Map>
...
)
}
...