|
@ -157,8 +157,8 @@ export default { |
|
|
areaCovered: '',//占地面积 |
|
|
areaCovered: '',//占地面积 |
|
|
capacity: 0,//容纳人数 |
|
|
capacity: 0,//容纳人数 |
|
|
address: '', //详细地址 |
|
|
address: '', //详细地址 |
|
|
longitude: 36.0722275, //经度 |
|
|
longitude: null, //经度 |
|
|
latitude: 120.38945519, //纬度 |
|
|
latitude: null, //纬度 |
|
|
principal: '', |
|
|
principal: '', |
|
|
mobile: '' |
|
|
mobile: '' |
|
|
}, |
|
|
}, |
|
@ -292,11 +292,15 @@ export default { |
|
|
initMap () { |
|
|
initMap () { |
|
|
// 定义地图中心点坐标 |
|
|
// 定义地图中心点坐标 |
|
|
let { latitude, longitude } = this.$store.state.user; |
|
|
let { latitude, longitude } = this.$store.state.user; |
|
|
|
|
|
|
|
|
console.log('lat' + latitude + ',lon' + longitude) |
|
|
console.log('lat' + latitude + ',lon' + longitude) |
|
|
if (!latitude || latitude == "" || latitude == "0") { |
|
|
if (!latitude || latitude == "" || latitude == "0") { |
|
|
latitude = 39.9088810666821; |
|
|
latitude = 39.9088810666821; |
|
|
longitude = 116.39743841556731; |
|
|
longitude = 116.39743841556731; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.formData.latitude = latitude |
|
|
|
|
|
this.formData.longitude = longitude |
|
|
// 定义地图中心点坐标 |
|
|
// 定义地图中心点坐标 |
|
|
var center = new window.TMap.LatLng(latitude, longitude); |
|
|
var center = new window.TMap.LatLng(latitude, longitude); |
|
|
// var center = new window.TMap.LatLng(36.52799, 120.7553) |
|
|
// var center = new window.TMap.LatLng(36.52799, 120.7553) |
|
|