landvex: Fixar och tester klara för alla komponenter
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user