Browse Source

经纬度

shibei_master
jiangyy 3 years ago
parent
commit
7206ced68f
  1. 29
      src/views/modules/workSys/mapConfig.vue

29
src/views/modules/workSys/mapConfig.vue

@ -102,19 +102,19 @@
<div class="div_textarea"> <div class="div_textarea">
<div style="margin-top:10px"> <div style="margin-top:10px">
<span> 中心点经度</span> <span> 中心点经度</span>
<el-input resize="none" <el-input-number resize="none"
size="small" size="small"
style="width:200px" style="width:200px"
placeholder='请输入中心点经度' placeholder='请输入中心点经度'
v-model="longitude"> v-model="longitude">
</el-input> </el-input-number>
<span style="margin-left:15px"> 中心点纬度</span> <span style="margin-left:15px"> 中心点纬度</span>
<el-input resize="none" <el-input-number resize="none"
size="small" size="small"
style="width:200px" style="width:200px"
placeholder='请输入中心点纬度' placeholder='请输入中心点纬度'
v-model="latitude"> v-model="latitude">
</el-input> </el-input-number>
</div> </div>
<div style="margin-top:20px"> <div style="margin-top:20px">
<el-input type="textarea" <el-input type="textarea"
@ -759,6 +759,9 @@ const vueGis = {
// //
handleManually () { handleManually () {
this.dialogVisible = true this.dialogVisible = true
this.polygonManullyString = ''
this.longitude = ''
this.latitude = ''
}, },
// //
@ -993,7 +996,7 @@ const vueGis = {
message: "绘制成功" message: "绘制成功"
}); });
if (this.dialogVisible) { if (this.dialogVisible) {
this.polygonManullyString = ' ' this.polygonManullyString = ''
this.dialogVisible = false this.dialogVisible = false
} }
this.refreshMap(false) this.refreshMap(false)

Loading…
Cancel
Save