本篇文章给大家带来的内容是关于微信小程序实例:获取当前城市位置及再次授权地理位置的代码实现,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
1. 获取当前地理位置,可通过wx.getLocation接口,返回经纬度、速度等信息;
注意---它的默认工作机制:
首次进入页面,调用该api,返回用户授权结果,并保持该结果。只要用户未删除该小程序或变更授权情况,那么用户再次进入该页面,授权结果还是不变,且不会再次调用该API;
在不删除小程序的情况下,继续再次发起授权请求,需要使用wx.openSetting。
所以第一步要拿到用户的授权wx.openSetting;
2. 第二步,可通过wx.getLocation接口,返回经纬度、速度等信息;
3. 微信没有将经纬度直接转换为地理位置,可借助腾讯位置服务中关于微信小程序的地理转换JS SDK的API或者百度API (我使用的百度API)
在用户首次进入某页面(需要地理位置授权)时候,在页面进行在onShow时,进行调用wx.getLocation要求用户进行授权;以后每次进入该页面时,通过wx.getSetting接口,返回用户授权具体信息。
代码如下:
onShow: function () { var _this = this; //调用定位方法 _this.getUserLocation(); //定位方法 getUserLocation: function () { var _this = this; wx.getSetting({ success: (res) = { // res.authSetting[ #39;scope.userLocation #39;] == undefined 表示 初始化进入该页面 // res.authSetting[ #39;scope.userLocation #39;] == false 表示 非初始化进入该页面,且未授权 // res.authSetting[ #39;scope.userLocation #39;] == true 表示 地理位置授权 if (res.authSetting[ #39;scope.userLocation #39;] != undefined res.authSetting[ #39;scope.userLocation #39;] != true) { //未授权 wx.showModal({ title: #39;请求授权当前位置 #39;, content: #39;需要获取您的地理位置,请确认授权 #39;, success: function (res) { if (res.cancel) { //取消授权 wx.showToast({ title: #39;拒绝授权 #39;, icon: #39;none #39;, duration: 1000 } else if (res.confirm) { //确定授权,通过wx.openSetting发起授权请求 wx.openSetting({ success: function (res) { if (res.authSetting[ scope.userLocation ] == true) { wx.showToast({ title: #39;授权成功 #39;, icon: #39;success #39;, duration: 1000 //再次授权,调用wx.getLocation的API _this.geo(); } else { wx.showToast({ title: #39;授权失败 #39;, icon: #39;none #39;, duration: 1000 } else if (res.authSetting[ #39;scope.userLocation #39;] == undefined) { //用户首次进入页面,调用wx.getLocation的API _this.geo(); else { console.log( #39;授权成功 #39;) //调用wx.getLocation的API _this.geo(); // 获取定位城市 geo: function () { var _this = this; wx.getLocation({ type: #39;wgs84 #39;, success: function (res) { var latitude = res.latitude var longitude = res.longitude var speed = res.speed var accuracy = res.accuracy wx.request({ url: #39;http://api.map.baidu.com/geocoder/v2/?ak=xxxxxxxxxxxx location= #39; + res.latitude + #39;, #39; + res.longitude + #39; output=json #39;, data: {}, header: { #39;Content-Type #39;: #39;application/json #39; }, success: function (ops) { console.log( #39;定位城市: #39;, ops.data.result.addressComponent.city) fail: function (resq) { wx.showModal({ title: #39;信息提示 #39;, content: #39;请求失败 #39;, showCancel: false, confirmColor: #39;#f37938 #39; complete: function () { },
效果图:首次进入页面
拒绝授权后,再次进入该页面或者点击页面某按钮(获取位置)绑定JS
以上两个弹出框的结构是一样的,前者使用的是wx.getLocation接口自带的样式,后者使用的wx.showModel接口带的样式。
简单讲一下授权原理:首次进入该页面,onshow调用wx.getLocation要求用户进行授权;用户拒绝后,再次进入该页面,我们通过wx.getSetting接口,返回用户授权的情况。
res.authSetting['scope.userLocation']的值与true比较,为true就是授权了,false就是拒绝授权了。
相关推荐:
小程序利用setData修改数组中的某一个值的实现
小程序中实现选择预览图片同时可以实现长按删除图片的代码
微信小程序--树莓派(raspberry pi)小车控制的代码流程
以上就是微信小程序实例:获取当前城市位置及再次授权地理位置的代码实现的详细内容,更多请关注php中文网其它相关文章!
微信app下载
微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!