You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
579 B
12 lines
579 B
import { createElementObject, createPathComponent, extendContext } from '@react-leaflet/core'; |
|
import { Polyline as LeafletPolyline } from 'leaflet'; |
|
export const Polyline = createPathComponent(function createPolyline({ positions , ...options }, ctx) { |
|
const polyline = new LeafletPolyline(positions, options); |
|
return createElementObject(polyline, extendContext(ctx, { |
|
overlayContainer: polyline |
|
})); |
|
}, function updatePolyline(layer, props, prevProps) { |
|
if (props.positions !== prevProps.positions) { |
|
layer.setLatLngs(props.positions); |
|
} |
|
});
|
|
|