getLocation

解释: 获取当前的地理位置、速度。当用户离开智能小程序后,此接口无法调用。

参数: Object

Object 参数说明:

参数类型必填说明
typeString默认为 wgs84 返回 gps 坐标,可选 gcj02 。
altitudeBoolean传入 true 会返回高度信息,获取高度需要较高精度且需要打开 gps ,会很耗时,默认没有用 gps。
successFunction接口调用成功的回调函数,返回内容详见返回参数说明。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success 返回参数说明:

参数说明
latitude纬度,浮点数,范围为-90~90,负数表示南纬。
longitude经度,浮点数,范围为-180~180,负数表示西经。
speed速度,浮点数,单位m/s。
accuracy位置的精确度
altitude高度,单位 m 。
verticalAccuracy垂直精度,单位 m(Android 无法获取,返回 0) 。
horizontalAccuracy水平精度,单位 m 。
street街道名称
cityCode城市编码
city城市名称
country国家
province省份
streetNumber街道号码
district

示例:在开发者工具中预览效果

  1. swan.getLocation({
    type: 'gcj02',
    success: function (res) {
    console.log('纬度:' + res.latitude);
    console.log('经度:' + res.longitude);
    },
    fail: function (err) {
    console.log('错误码:' + err.errCode);
    console.log('错误信息:' + err.errMsg);
    }
    });