#位置信息API
>获取位置、选择位置、打开位置
>wx.getLocation(OBJECT)
>获取当前位置,包括当前位置的地理坐标、速度
>用户离开小程序后,此接口无法调用
属性 | 类型 | 必填 | 说明 |
type | string | 否 | wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标 |
altitude | string | 否 | 传入 true 会返回高度信息,由于获取高度需要较高精确度,会减慢接口返回速度 |
success | function | 否 | 接口调用成功的回调函数,参数:纬度、经度、速度、位置的精确度 |
fail | function | 否 | 接口调用失败的回调函数 |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码:
Page({
onLoad:function(){
wx.getLocation({
type: ‘wgs84’,
success:function(res){
var latitude=res.latitude;
console.log(“纬度=”+latitude);
var longitude=res.longitude;
console.log(“经度=”+latitude);
var speed=res.speed;
console.log(“速度”+speed);
var accuracy=res.accuracy;
console.log(“精确度”+accuracy);
}
})
}
})
>wx.chooseLocation(OBJECT)
>使用wx.chooseLocation打开地图来选择位置
属性 | 类型 | 必填 | 说明 |
success | function | 否 | 接口调用成功的回调函数,参数:纬度、经度、速度、位置的精确度 |
fail | function | 否 | 接口调用失败的回调函数 |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
> wx.openLocation(O