| | |
| | | <template> |
| | | <GlobalWindow title="绘制运营区域" :visible.sync="isShowModal" :confirm-working="isWorking" @close="close" |
| | | @confirm="confirm" width="1000px"> |
| | | @confirm="confirm" width="100%"> |
| | | <div class="map_title">绘制:鼠标左键点击及移动即可绘制图形,绘制过程中按下esc键可中断该过程</div> |
| | | <div class="map_title">鼠标左键双击即可结束当前多边形绘制,多边形会自动闭合;</div> |
| | | <div class="map_wrap"> |
| | |
| | | // maximumAge: 0 // 禁用缓存 |
| | | // } |
| | | // ) |
| | | console.log('-----') |
| | | console.log('-----', this.row) |
| | | |
| | | map = new TMap.Map("containera", { |
| | | zoom: 16, // 设置地图缩放级别 |
| | | center: new TMap.LatLng(31.722763, 117.385480) // 设置地图中心点坐标 |
| | | zoom: this.polygons.length > 0 ? 20 : 16, // 设置地图缩放级别 |
| | | center: this.polygons.length > 0 ? new TMap.LatLng(this.polygons[0].lat, this.polygons[0].lng) : new TMap.LatLng(31.722763, 117.385480) // 设置地图中心点坐标 |
| | | }) |
| | | var tempList = [] |
| | | if (this.polygons.length > 0) { |