wujingjing
2025-02-11 8c6fbc506e9a2c8cde56a794d8319cc55f4be666
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);
    }
}