I have created polyline using react-leaflet, I want to show direaction on polyline using polylinedacorator.But I don't know how to do that with react-leaflet. I found multiple examples with leaflet, but not with react-leaflet
const polyline = [[51.505, -0.09], [51.51, -0.1], [51.51, -0.12]]
export default class VectorLayersExample extends Component<{}> {
render() {
return (
<Map center={center} zoom={13}>
<TileLayer
attribution='&copy <a
href="http://osm.org/copyright">OpenStreetMap</a>
contributors'
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
<Polyline color="lime" positions={polyline} />
</Map>
)
}
Can any one tell me how to use polylinedacorators with above code
Leaflet.PolylineDecorator
could be integrated withReact-Leaflet
as follows:a) install
leaflet
andleaflet-polylinedecorator
packages:npm i leaflet leaflet-polylinedecorator
b) once installed, the following component demonstrates how to utilize
Polyline
component withL.polylineDecorator
:Usage