小程序获取用户经纬度
- 在app.json中添加字段
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
- 在页面js中使用函数获取位置坐标
//获取经纬度
getLocation: function (e) {
var that = this;
wx.getLocation({
//坐标系可选
type: 'gcj02',
altitude:true,
success: function (res) {
// console.log(res);
var latitude = res.latitude
var longitude = res.longitude
//弹框
wx.showModal({
title: '当前位置',
content: "纬度:" + latitude + ",经度:" + longitude,
})
}
})
},