微信小程序授权获取当前位置

一、app.json

  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示"
    }
  }

二、wxml

   

三、js

		getLocat:function(){
			var that=this;
			wx.getLocation({
				type: 'wgs84', //返回可以用于wx.openLocation的经纬度
				success: function (res) {
					console.log(res)
					wx.chooseLocation({
						success: function (res) {
							console.info(res);
							// success		
						},
						fail: function () {
							// fail
						},
						complete: function () {
							// complete
						}
					})				
				}
			})
			var that = this
		},

你可能感兴趣的:(微信小程序授权获取当前位置)