地理位置接口

获取地理位置接口

bee.getLocation({
    type: 'wgs84', // 默认为wgs84的gps坐标,其他类型的坐标后续增加
    success: function (res) {
        var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
        var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。
        var speed = res.speed; // 速度,以米/每秒计
        var accuracy = res.accuracy; // 位置精度
    }
    fail: function (res) {
        // 失败后的回调函数
        var errorCode = res.errorCode;
    }
});