'use script' //开发环境建议开启严格模式 ; (function (window, mars3d) { //创建widget类,需要继承BaseWidget class MyWidget extends mars3d.widget.BaseWidget { //弹窗配置,2个弹窗的情形 get view() { return { type: "window", url: "view.html", windowOptions: { width: 400, height: 400, left: 5, top: 120 }, }; } //初始化[仅执行1次] create() { this.wind_layer = this.map.getLayerById(2001); } //每个窗口创建完成后调用 winCreateOK(opt, result) { } //打开激活 activate() { } //关闭释放 disable() { } setParticlesNumber(vaule){ this.wind_layer.particlesNumber = vaule; } setMaxAge(vaule){ this.wind_layer.maxAge = vaule; } setSpeedRate(vaule){ this.wind_layer.speedRate = vaule; } setLineWidth(vaule){ this.wind_layer.lineWidth = vaule; } setColor(vaule){ this.wind_layer.color = vaule; } } //注册到widget管理器中。 mars3d.widget.bindClass(MyWidget) //每个widet之间都是直接引入到index.html中,会存在彼此命名冲突,所以闭包处理下。 })(window, mars3d)