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.
24 lines
1019 B
24 lines
1019 B
import { createElementObject, createLayerComponent, extendContext, updateMediaOverlay } from '@react-leaflet/core'; |
|
import { VideoOverlay as LeafletVideoOverlay } from 'leaflet'; |
|
export const VideoOverlay = createLayerComponent(function createVideoOverlay({ bounds , url , ...options }, ctx) { |
|
const overlay = new LeafletVideoOverlay(url, bounds, options); |
|
if (options.play === true) { |
|
overlay.getElement()?.play(); |
|
} |
|
return createElementObject(overlay, extendContext(ctx, { |
|
overlayContainer: overlay |
|
})); |
|
}, function updateVideoOverlay(overlay, props, prevProps) { |
|
updateMediaOverlay(overlay, props, prevProps); |
|
if (typeof props.url === 'string' && props.url !== prevProps.url) { |
|
overlay.setUrl(props.url); |
|
} |
|
const video = overlay.getElement(); |
|
if (video != null) { |
|
if (props.play === true && !prevProps.play) { |
|
video.play(); |
|
} else if (!props.play && prevProps.play === true) { |
|
video.pause(); |
|
} |
|
} |
|
});
|
|
|