Lin_Ye_Fang_Huo/public/widgets/measureChars/widget.js

79 lines
2.1 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() {
return {
2023-07-18 09:04:15 +08:00
type: "window",
url: "view.html",
2023-07-08 15:37:34 +08:00
windowOptions: {
width: 500,
height: 200,
},
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() {
if (this.viewWindow) {
2023-07-18 09:04:15 +08:00
this.viewWindow.setEchartsData(this.config.data);
2023-07-08 15:37:34 +08:00
}
}
//内置方法,不重启方式刷新页面
update() {
if (this.viewWindow) {
2023-07-18 09:04:15 +08:00
this.viewWindow.setEchartsData(this.config.data);
2023-07-08 15:37:34 +08:00
}
}
//关闭释放
disable() {
2023-07-18 09:04:15 +08:00
this.viewWindow = null;
this.hideTipMarker();
2023-07-08 15:37:34 +08:00
}
showTipMarker(point, z, inthtml) {
2023-07-18 09:04:15 +08:00
var _position_draw = Cesium.Cartesian3.fromDegrees(point.lng, point.lat, z);
2023-07-08 15:37:34 +08:00
if (!this.tipGraphic) {
this.tipGraphic = new mars3d.graphic.BillboardEntity({
2023-07-18 09:04:15 +08:00
name: "当前点",
2023-07-08 15:37:34 +08:00
position: _position_draw,
style: {
2023-07-18 09:04:15 +08:00
image: "img/marker/mark3.png",
2023-07-08 15:37:34 +08:00
scale: 1,
horizontalOrigin: Cesium.HorizontalOrigin.CENTER,
verticalOrigin: Cesium.VerticalOrigin.BOTTOM,
scaleByDistance: new Cesium.NearFarScalar(10000, 1.0, 500000, 0.2),
},
2023-07-18 09:04:15 +08:00
}).addTo(this.map.graphicLayer);
this.tipGraphic._setPositionsToCallback();
2023-07-08 15:37:34 +08:00
}
2023-07-18 09:04:15 +08:00
this.tipGraphic._position_draw = _position_draw;
2023-07-08 15:37:34 +08:00
this.tipGraphic
.bindPopup(inthtml, {
anchor: [0, -20], //左右、上下的偏移像素值。
})
2023-07-18 09:04:15 +08:00
.openPopup();
2023-07-08 15:37:34 +08:00
}
hideTipMarker() {
if (!this.tipGraphic) {
2023-07-18 09:04:15 +08:00
return;
2023-07-08 15:37:34 +08:00
}
2023-07-18 09:04:15 +08:00
this.tipGraphic.remove(true);
this.tipGraphic = null;
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);