Fei_Xian_Lin_Ye_Fang_Huo/public/widgets/bookmark/widget.js

53 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2023-08-18 08:55:52 +08:00
(function (window, mars3d) {
//创建widget类需要继承BaseWidget
class MyWidget extends mars3d.widget.BaseWidget {
//弹窗配置
get view() {
return {
type: "window",
url: "view.html",
windowOptions: {
width: 250,
},
};
}
//每个窗口创建完成后调用
winCreateOK(opt, result) {
this.viewWindow = result;
}
//激活插件
activate() {}
//释放插件
disable() {
this.viewWindow = null;
}
showExtent(options) {
this.map.setCameraView(options);
console.log("视角定位:" + JSON.stringify(options));
}
getThisExtent(callback) {
var bookmark = this.map.getCameraView();
haoutil.loading.show();
this.map.expImage({
download: false,
width: 300, //指定 高 或 宽
callback: function (base64, size) {
haoutil.loading.close();
if (callback) {
callback(bookmark, base64);
}
},
});
return bookmark;
}
}
//注册到widget管理器中。
mars3d.widget.bindClass(MyWidget);
//每个widet之间都是直接引入到index.html中会存在彼此命名冲突所以闭包处理下。
})(window, mars3d);