From 973288ea3095247303b5daac5bc160e10ae2b8ac Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期一, 25 七月 2022 18:44:49 +0800 Subject: [PATCH] 3D --- src/components/Tab/Plot.vue | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/Tab/Plot.vue b/src/components/Tab/Plot.vue index b9322b5..ff73016 100644 --- a/src/components/Tab/Plot.vue +++ b/src/components/Tab/Plot.vue @@ -44,12 +44,13 @@ circle @click="() => focusHandle(label.attr.id)" /> - <el-button - icon="el-icon-edit" - size="mini" - circle - @click="() => editHandle(label)" - /> + +<!-- <el-button--> +<!-- icon="el-icon-edit"--> +<!-- size="mini"--> +<!-- circle--> +<!-- @click="() => editHandle(label)"--> +<!-- />--> <el-button icon="el-icon-delete" type="danger" @@ -176,7 +177,6 @@ }, removeHandle(label) { if (!global.map) return; - debugger for(let i in this.colorMapList){ if(JSON.parse(this.colorMapList[i].properties).attr.id === label.attr.id){ deleteColorMap({id:this.colorMapList[i].id}).then(res =>{ @@ -193,7 +193,7 @@ }) } } - + }, closeCreateHandle() { @@ -227,27 +227,27 @@ map.startDraw( { type: 'polygon', - style: { text: name ,color:this.color}, + style: { text: name ,color:this.color, clampToGround: true}, attr: { name, }, }, (entity) => { - debugger + console.log(wutu3d.draw.attr.getCoordinates(entity)); this._initLabel(); this.$store.dispatch('map/updateTimestamp'); this.form = { id:'', etype:this.type, "type": "Feature", - "properties": + "properties": JSON.stringify(entity.attribute), "geometry": JSON.stringify({ "type": "Polygon", "coordinates": [ - + wutu3d.draw.attr.getCoordinates(entity) - + ] }) } -- Gitblit v1.9.2