Browse Source

继续改

master
dai 3 years ago
parent
commit
e6c22bf0e4
  1. 7
      src/views/modules/visual/command/cpts/map.vue

7
src/views/modules/visual/command/cpts/map.vue

@ -473,6 +473,13 @@ export default {
polygonLayer.on("click", (e) => {
console.log(e.feature.properties);
this.$emit("clickAgency", e.feature.properties);
if (e.feature.properties.level == "grid") {
this.handleClickDot(
{ ...e.feature.properties, placeType: "grid" },
e.feature.properties.center
);
}
});
polygonLayer.on("unmousemove", (e) => {

Loading…
Cancel
Save