小程序getlocation
时间: 2023-09-29 11:07:33 浏览: 65
小程序地图定位
小程序中获取用户的地理位置可以使用wx.getLocation()方法。
该方法需要传入一个对象作为参数,该对象包含以下属性:
- type:坐标系类型,默认为`wgs84`,即GPS坐标。可选值为`gcj02`,即国测局坐标系。
- altitude:是否需要高度信息,默认为`false`。
- success:获取用户位置成功时的回调函数。
- fail:获取用户位置失败时的回调函数。
- complete:获取用户位置完成时的回调函数。
调用示例:
```
wx.getLocation({
type: 'gcj02',
altitude: true,
success(res) {
console.log(res.latitude, res.longitude, res.altitude)
},
fail() {
console.log('获取位置失败')
}
})
```
其中,res.latitude和res.longitude为用户的纬度和经度;res.altitude为用户的海拔高度(如果altitude为true时才有)。
阅读全文