| | |
| | | <el-tooltip |
| | | class="item" |
| | | effect="dark" |
| | | content="文本操作" |
| | | placement="left" |
| | | popper-class="item_tooltip" |
| | | > |
| | | <div |
| | | class="legend-bg" |
| | | @click="showTextArea" |
| | | :class="{ active: isShowTA }" |
| | | > |
| | | <img class="legendImg" src="@/assets/img/new/文本输入.png" /> |
| | | </div> |
| | | </el-tooltip> |
| | | </div> |
| | | <div class="mapTool"> |
| | | <el-tooltip |
| | | class="item" |
| | | effect="dark" |
| | | content="亦庄新区范围" |
| | | placement="left" |
| | | popper-class="item_tooltip" |
| | |
| | | showDigitalPerson() { |
| | | this.isShowDP = !this.isShowDP; |
| | | this.$store.commit("showDigitalPerson", this.isShowDP); |
| | | }, |
| | | showTextArea() { |
| | | this.isShowTA = !this.isShowTA; |
| | | this.$store.commit("showTextArea", this.isShowTA); |
| | | if (!this.isShowDP) { |
| | | this.$store.commit("showTextArea", false); |
| | | } |
| | | }, |
| | | maskingOut() { |
| | | if (!window.maskinglayer) { |