微信开发中 jssdk 中 jsapi的返回值如何在php中获取
程序员文章站
2024-02-07 08:52:40
...
php微信
var getLocation = document.getElementById('getLocation');
getLocation.onclick = function(){
//使用getLocation接口获取地理位置坐标 wx.getLocation({ success:function(res){ var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90 var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180。 var speed = res.speed; // 速度,以米/每秒计 var accuracy = res.accuracy; // 位置精度 alert(JSON.stringify(res)); }, cancel:function(res){ alert('用户拒绝授权获取地理位置'); }, }); };