Lin_Ye_Fang_Huo/public/widgets/manageLayers-tuli/heatmap.js

33 lines
820 B
JavaScript
Raw Normal View History

2023-07-18 09:04:15 +08:00
(function (window, mars3d) {
2023-07-08 15:37:34 +08:00
//创建widget类需要继承BaseWidget
class MyWidget extends mars3d.widget.BaseWidget {
//弹窗配置
get view() {
return {
2023-07-18 09:04:15 +08:00
type: "append",
url: "view.html",
};
2023-07-08 15:37:34 +08:00
}
//初始化[仅执行1次]
create() {}
//每个窗口创建完成后调用
winCreateOK(opt, result) {
//此处可以绑定页面dom事件
// var layerId =this.config.layerItem.id
//
2023-07-18 09:04:15 +08:00
opt._dom.children().attr("src", this.path + "img/heatmap.png");
2023-07-08 15:37:34 +08:00
}
//打开激活
activate() {}
//关闭释放
disable() {}
}
//注册到widget管理器中。
2023-07-18 09:04:15 +08:00
mars3d.widget.bindClass(MyWidget);
2023-07-08 15:37:34 +08:00
//每个widet之间都是直接引入到index.html中会存在彼此命名冲突所以闭包处理下。
2023-07-18 09:04:15 +08:00
})(window, mars3d);