微信使用wx.getLocation

1,小程序管理后台 -「开发」-「开发管理」-「接口设置」” 中完成权限申请;
微信使用wx.getLocation_第1张图片

2,需在 app.json 中声明其需调用的地理位置相关接口

 "permission": {
    "scope.userLocation": {  
      "desc": "你的位置信息将用于小程序地图定位"  
    }  
},
"requiredPrivateInfos": [
  "getLocation",
  "choosePoi",
  "chooseAddress"
],

微信使用wx.getLocation_第2张图片3,在页面使用
 

  // 获取当前地址信息
  getLocation(){
    console.log("获取当前地址");
    var that = this;  
    wx.getLocation({  
      type: 'wgs84',  
      success: function(res) {  
        console.log("获取当前地址",res);
      }  ,
      fail: function(error) {  
        console.log('获取位置失败', error)  
      } 
    });  
  },

微信使用wx.getLocation_第3张图片

你可能感兴趣的:(前端)