仪表盘
版本库
文件存储
活动
搜索
登录
WI
/
Web.V1.0
AI水务
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
修改意见
wujingjing
2025-04-02
7866aa30bd13dab1fc0662e1baf6675d0dc1b282
[WI/Web.V1.0.git]
/
src
/
model
/
map
/
overlay
/
marker.ts
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);
}
}