1.0.2 • Published 6 years ago

react-leaflet-animated-marker v1.0.2

Weekly downloads
106
License
MIT
Repository
github
Last release
6 years ago

React Leaflet Animated Marker

A wrapper for the PaulLeCam/react-leaflet Marker that smoothly animates itself when position prop changes.

Code Climate

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>
    ...
  )
}
...