wujingjing
2025-04-02 7866aa30bd13dab1fc0662e1baf6675d0dc1b282
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);
    }
}