Lin_Ye_Fang_Huo/public/widgets/manageBasemaps/widget.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-07-18 09:04:15 +08:00
"use script"; //开发环境建议开启严格模式
(function (window, mars3d) {
2023-07-08 15:37:34 +08:00
//创建widget类需要继承BaseWidget
class MyWidget extends mars3d.widget.BaseWidget {
//弹窗配置
get view() {
2023-07-18 09:04:15 +08:00
var index = this.getBasemaps().length;
2023-07-08 15:37:34 +08:00
2023-07-18 09:04:15 +08:00
var width, height;
2023-07-08 15:37:34 +08:00
if (index <= 4) {
2023-07-18 09:04:15 +08:00
width = 190;
height = Math.ceil(index / 2) * 100 + 70;
2023-07-08 15:37:34 +08:00
} else if (index > 4 && index <= 6) {
2023-07-18 09:04:15 +08:00
width = 270;
height = Math.ceil(index / 3) * 100 + 70;
2023-07-08 15:37:34 +08:00
} else {
2023-07-18 09:04:15 +08:00
width = 360;
height = Math.ceil(index / 4) * 105 + 70;
2023-07-08 15:37:34 +08:00
}
return {
2023-07-18 09:04:15 +08:00
type: "window",
url: "view.html",
2023-07-08 15:37:34 +08:00
windowOptions: {
width: width,
height: height,
},
2023-07-18 09:04:15 +08:00
};
2023-07-08 15:37:34 +08:00
}
//初始化[仅执行1次]
create() {}
//每个窗口创建完成后调用
winCreateOK(opt, result) {
2023-07-18 09:04:15 +08:00
this.viewWindow = result;
2023-07-08 15:37:34 +08:00
}
//打开激活
activate() {}
//关闭释放
disable() {
2023-07-18 09:04:15 +08:00
this.viewWindow = null;
2023-07-08 15:37:34 +08:00
}
getBasemaps() {
2023-07-18 09:04:15 +08:00
return this.map.getBasemaps(true);
2023-07-08 15:37:34 +08:00
}
updateBasemap(item) {
2023-07-18 09:04:15 +08:00
this.map.basemap = item;
this.disableBase();
2023-07-08 15:37:34 +08:00
}
}
//注册到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);