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

Loading…
Cancel
Save