@色少6年前
10/22
20:36
因为需要在小程序加个定位并加载对应城市信息
然而小程序自带api目前只能获取经纬度不能逆解析,因此借用腾讯的地图服务做一次解析。
需求:微信小程序获取用户定位信息并加载对应城市信息
技术:wx.getLocation 、腾讯地图小程序api 、 微信小程序经纬度逆解析地理信息
首先登陆腾讯地图 点击 webservice api 选择 逆地址解析(坐标位置描述)
ps:注册腾讯地图授权key 是最早要做的事情
可以选择调用WebService API 或者 微信小程序JavaScript SDK 2种方式目前调用次数是一样的
贴出JavaScript SDK代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | //加载腾讯位置服务js文件(必须) var qqmap=require('../../utils/qqmap-wx-jssdk.min.js') //预加载内容 getLocation () { //调用腾讯地图sdk 添加腾讯地图key var demo = new qqmap({ key: '*****-SY7PH-*****-*****-*****-SMFTK' }); //加载腾讯位置服务js文件(必须) //此声明最好不要写在 wx.getLocation方法内,this指代不同 var that = this; wx.getLocation({ type: 'gcj02', //编码方式, success: function (res) { var latitude = res.latitude // wx.getLocation 获取当前的地理位置、速度 latitude(维度) longitude(经度) var longitude = res.longitude demo.reverseGeocoder({ //腾讯地图api 逆解析方法 首先设计经纬度 location: { latitude: res.latitude, longitude: res.longitude }, //逆解析成功回调函数 success: function (res) { getApp().globalData.cityname = res.result.address_component.city; //全局变量存放城市 res.result.address_component.city 获取解析之后地址中的城市 33 console.log("onLoad"); //wx.request 发起网络请求,类似于ajax wx.request({ url: 'https://www.xxxxxxxxxx.com/home/index/xcx_index', //填写对应服务器地址 data: { // cityid: getApp().globalData.cityid, //我这里需要提交的参数,这里我是把获取的城市发给后台,然后后台给我对应城市的数据json文件 cityna: getApp().globalData.cityna, district: res.result.address_component.city, }, header: { "Content-Type": "applicatiSon/x-www-form-urlencoded" }, method: "POST", success: function (res) { console.log(res.data.data); //解析回调函数得到的json文件并一层一层的解析然后数据绑定到页面上 that.setData({ // 轮播图图片 imgurls: res.data.data.pics 58 }); getApp().globalData.cityid = res.data.data.datacompany.cityid; // this.data.pic_array_dq2[e.detail.value].name } }); · // 成功后提醒 wx.showModal({ title: '定位成功', content: '当前城市:' + getApp().globalData.cityname, }); }, fail: function (res) { //失败的回调函数 // console.log(res); }, complete: function (res) { //完成之后的回调函数,不管是否成功 console.log("逆解析状态码:"+res.status); //res.status 获取状态码,为0代表解析成功,但是我们要考虑失败的兼容,可能用户并不愿意同意获取地理位置,所以不为0 的时候也要加载内容给个默认地址 if (res.status!=0){ wx.request({ url: 'https://www.cyzs97.com/home/index/xcx_index', data: { // cityid: getApp().globalData.cityid, cityna: getApp().globalData.cityna, district:"", }, header: { "Content-Type": "applicatiSon/x-www-form-urlencoded" }, method: "POST", success: function (res) { console.log(res.data.data); that.setData({ // 轮播图图片 imgurls: res.data.data.pics, 99 }); getApp().globalData.cityid = res.data.data.datacompany.cityid; // this.data.pic_array_dq2[e.detail.value].name } }); //提示用户失败可开启定位服务 wx.showModal({ title: '定位失败', content: '定位失败,未授权获取当前位置或服务错误' , }); } console.log("定位获取的:" + getApp().globalData.cityname); } }); } }); }, |
调用配合授权一并调用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | getLocation(){ var that = this ; wepy.getSetting({ success: (res) => { if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {//非初始化进入该页面,且未授权 wepy.showModal({ title: '是否授权当前位置', content: '需要获取您的地理位置,请确认授权,否则无法获取您所需数据', success: function (res) { if (res.cancel) { that.isshowCIty = false; wepy.showToast({ title: '授权失败', icon: 'success', duration: 1000 }) } else if (res.confirm) { wepy.openSetting({ success: function (dataAu) { if (dataAu.authSetting["scope.userLocation"] == true) { wepy.showToast({ title: '授权成功', icon: 'success', duration: 1000 }) //再次授权,调用getLocationt的API that.getLocation(); } else { wepy.showToast({ title: '授权失败', icon: 'success', duration: 1000 }) } } }) } } }) } else if (res.authSetting['scope.userLocation'] == undefined) {//初始化进入 that.getLocation(); } else { //授权后默认加载 that.getLocation(); } } }) }, |
当然最重要的不能忘记,需要配置服务器,只需安全域名设置,需要在微信公众平台添加域名地址 https://apis.map.qq.com
还有如果是WebService API 记得配置授权里面配置白名单添加你服务器的ip地址~~~切记~