微信小程序API_位置信息API_设备应用API

#位置信息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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

南枫知我意~

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值