wujingjing
2025-02-26 95ea66de077e44b43d230ba6677d07a2d0a4f1e3
1
2
3
4
5
6
7
8
9
10
11
import { Overlay } from 'ol';
 
export class MarkerOverlay extends Overlay {
    constructor(options: any) {
        super(options);
    }
 
    setVisible(visible: boolean) {
        super.setVisible(visible);
    }
}