Просмотр исходного кода

第一次加载获取地址信息

zhanghui 1 год назад
Родитель
Сommit
c254ae5485
2 измененных файлов с 53 добавлено и 25 удалено
  1. 23 0
      api/wxMap.js
  2. 30 25
      pages/index/diy/index_mall.vue

+ 23 - 0
api/wxMap.js

@@ -0,0 +1,23 @@
+import QQMapWX from './qqmap-wx-jssdk.js'
+
+// 腾讯地图经纬度转中文地址
+export function getAddress (lng, lat) {
+    return new Promise((resove, reject) => {
+        const qqmapsdk = new QQMapWX({
+            key: 'TAEBZ-N4PKZ-EZVXZ-7Z6OO-7BXHH-VSFBC',
+        })
+        qqmapsdk.reverseGeocoder({
+            location: {
+                longitude: lng,
+                latitude: lat,
+            },
+            success: (res) => {
+                resove(res)
+            },
+            fail: (e) => {
+                reject(e)
+
+            },
+        })
+    })
+}

+ 30 - 25
pages/index/diy/index_mall.vue

@@ -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;