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.
29 lines
1.1 KiB
29 lines
1.1 KiB
2 years ago
|
import { createElementObject, createLayerComponent, extendContext } from '@react-leaflet/core';
|
||
|
import { Marker as LeafletMarker } from 'leaflet';
|
||
|
export const Marker = createLayerComponent(function createMarker({ position , ...options }, ctx) {
|
||
|
const marker = new LeafletMarker(position, options);
|
||
|
return createElementObject(marker, extendContext(ctx, {
|
||
|
overlayContainer: marker
|
||
|
}));
|
||
|
}, function updateMarker(marker, props, prevProps) {
|
||
|
if (props.position !== prevProps.position) {
|
||
|
marker.setLatLng(props.position);
|
||
|
}
|
||
|
if (props.icon != null && props.icon !== prevProps.icon) {
|
||
|
marker.setIcon(props.icon);
|
||
|
}
|
||
|
if (props.zIndexOffset != null && props.zIndexOffset !== prevProps.zIndexOffset) {
|
||
|
marker.setZIndexOffset(props.zIndexOffset);
|
||
|
}
|
||
|
if (props.opacity != null && props.opacity !== prevProps.opacity) {
|
||
|
marker.setOpacity(props.opacity);
|
||
|
}
|
||
|
if (marker.dragging != null && props.draggable !== prevProps.draggable) {
|
||
|
if (props.draggable === true) {
|
||
|
marker.dragging.enable();
|
||
|
} else {
|
||
|
marker.dragging.disable();
|
||
|
}
|
||
|
}
|
||
|
});
|