|
@@ -103,6 +103,7 @@
|
|
|
<script>
|
|
|
import headerSerch from './components/headerSerch';
|
|
|
import latestGroupBuying from './components/latestGroupBuying';
|
|
|
+import { getAddress } from '../../../api/wxMap'
|
|
|
import {
|
|
|
toLogin
|
|
|
} from '@/libs/login.js';
|
|
@@ -126,28 +127,28 @@ export default {
|
|
|
showTips:true,
|
|
|
markers:[{
|
|
|
id: 1,
|
|
|
- latitude: '26.64702',//纬度,必填
|
|
|
- longitude:'106.63024',//经度,必填
|
|
|
- title:'标记点名称',//标注点名
|
|
|
+ latitude: '',//纬度,必填
|
|
|
+ longitude:'',//经度,必填
|
|
|
+ title:'',//标注点名
|
|
|
width:32,//标注图标宽度,Number类型
|
|
|
height:32,//标注图标高度,Number类型
|
|
|
iconPath:'../../../static/images/addressIcon.png',//显示的图标,必填
|
|
|
label: {
|
|
|
- content: `标记点名称`,
|
|
|
+ content: '',
|
|
|
textAlign:"center"
|
|
|
}
|
|
|
}],
|
|
|
|
|
|
markers1:[{
|
|
|
id: 1,
|
|
|
- latitude: '26.64702',//纬度,必填
|
|
|
- longitude:'106.63024',//经度,必填
|
|
|
- title:'标记点名称',//标注点名
|
|
|
+ latitude: '',//纬度,必填
|
|
|
+ longitude:'',//经度,必填
|
|
|
+ title:'',//标注点名
|
|
|
width:32,//标注图标宽度,Number类型
|
|
|
height:32,//标注图标高度,Number类型
|
|
|
iconPath:'../../../static/images/addressIcon.png',//显示的图标,必填
|
|
|
label: {
|
|
|
- content: `地址名称,暂时展示这个吧`,
|
|
|
+ content: '',
|
|
|
textAlign:"center"
|
|
|
}
|
|
|
}],
|
|
@@ -184,8 +185,8 @@ export default {
|
|
|
}],
|
|
|
positionInfo: {
|
|
|
address: '',
|
|
|
- longitude: '106.62502', //经度
|
|
|
- latitude: '26.65214', //纬度
|
|
|
+ longitude: '', //经度
|
|
|
+ latitude: '', //纬度
|
|
|
},
|
|
|
|
|
|
user_latitude: '',
|
|
@@ -240,20 +241,18 @@ export default {
|
|
|
success: (res) => {
|
|
|
this.markers1[0].longitude = res.longitude;
|
|
|
this.markers1[0].latitude = res.latitude;
|
|
|
-
|
|
|
+ getAddress(this.markers1[0].longitude,this.markers1[0].latitude).then(res =>{
|
|
|
+ uni.setStorageSync('user_longitude', this.markers1[0].longitude);
|
|
|
+ uni.setStorageSync('user_latitude', this.markers1[0].latitude);
|
|
|
+ console.log(res)
|
|
|
+ this.markers1[0].label.content = res.result.address_reference.landmark_l2.title
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+
|
|
|
},
|
|
|
- /**
|
|
|
- * 解析地址信息
|
|
|
- * @param longitude
|
|
|
- * @param longitude
|
|
|
- */
|
|
|
- // getAddressMsg(longitude,longitude){
|
|
|
- // //家里没信号收不到验证码短信。申请不到腾讯地图key,先这样吧。
|
|
|
- //
|
|
|
- // },
|
|
|
+
|
|
|
|
|
|
closePopup(){
|
|
|
this.$refs.popup.close()
|
|
@@ -276,14 +275,20 @@ export default {
|
|
|
console.log("dizhixinxi -> ", res)
|
|
|
that.positionInfo.longitude = res.longitude;
|
|
|
that.positionInfo.latitude = res.latitude;
|
|
|
- this.markers1[0].longitude = res.longitude;
|
|
|
- this.markers1[0].latitude = res.latitude;
|
|
|
- this.markers[0].longitude = res.longitude;
|
|
|
- this.markers[0].latitude = res.latitude;
|
|
|
- // that.loAcquire(that.positionInfo.longitude, that.positionInfo.latitude)
|
|
|
+ that.markers[0].longitude = res.longitude;
|
|
|
+ that.markers[0].latitude = res.latitude;
|
|
|
+ getAddress(res.longitude,res.latitude).then(res =>{
|
|
|
+ //初始化地址信息
|
|
|
+ console.log("++++++++++初始化地址信息++++++++++++",res)
|
|
|
+ that.positionInfo.address =res.result.address_reference.landmark_l2.title
|
|
|
+ that.markers[0].label.content = res.result.address_reference.landmark_l2.title
|
|
|
+ that.markers1 =that.markers
|
|
|
+ })
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+
|
|
|
// 获取当前地址
|
|
|
loAcquire (longitude, latitude) {
|
|
|
let that = this;
|