Browse Source

Merge branch '1121' into dev

V1.0
mk 2 years ago
parent
commit
0bf4ad8a50
  1. 4
      src/views/dataBoard/cpts/map/index.vue

4
src/views/dataBoard/cpts/map/index.vue

@ -551,8 +551,12 @@ export default {
`); `);
scene.addPopup(popup); scene.addPopup(popup);
}); });
polygonLayer.on("mouseout", (e) => { polygonLayer.on("mouseout", (e) => {
// popup
if(popup){
popup.remove(); popup.remove();
}
}); });
polygonLayer.on("click", (e) => { polygonLayer.on("click", (e) => {
if (this.level === "grid") { if (this.level === "grid") {

Loading…
Cancel
Save