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.
6 lines
574 B
6 lines
574 B
import { type LatLngBoundsExpression, type ImageOverlay as LeafletImageOverlay, type ImageOverlayOptions, type SVGOverlay as LeafletSVGOverlay, type VideoOverlay as LeafletVideoOverlay } from 'leaflet'; |
|
import type { InteractiveLayerProps } from './layer.js'; |
|
export interface MediaOverlayProps extends ImageOverlayOptions, InteractiveLayerProps { |
|
bounds: LatLngBoundsExpression; |
|
} |
|
export declare function updateMediaOverlay<E extends LeafletImageOverlay | LeafletSVGOverlay | LeafletVideoOverlay, P extends MediaOverlayProps>(overlay: E, props: P, prevProps: P): void;
|
|
|