Lin_Ye_Fang_Huo/public/widgets/toolButton/zoom.js

28 lines
821 B
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 {
//初始化[仅执行1次]
create() {
this.zommControl = new mars3d.control.Zoom({
insertIndex: 1, //插入的位置顺序, 1是home按钮后面
2023-07-18 09:04:15 +08:00
zoomInClass: "fa fa-plus",
zoomOutClass: "fa fa-minus",
});
2023-07-08 15:37:34 +08:00
}
//激活插件
activate() {
2023-07-18 09:04:15 +08:00
this.map.addControl(this.zommControl);
2023-07-08 15:37:34 +08:00
}
//释放插件
disable() {
2023-07-18 09:04:15 +08:00
this.map.removeControl(this.zommControl);
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);