当前位置:Gxlcms > PHP教程 > 微信开发中jssdk中jsapi的返回值如何在php中获取

微信开发中jssdk中jsapi的返回值如何在php中获取

时间:2021-07-01 10:21:17 帮助过:58人阅读

php微信

jsapi alert 出来的返回值 图片说明
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('用户拒绝授权获取地理位置');                    },                });            };

人气教程排行