<script type="text/javascript">
//通过config接口注入权限验证配置
wx.config({
debug:false, 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId:'your AppId',1)"> 必填,公众号的唯一标识
timestamp:'your timestamp',1)"> 必填,生成签名的时间戳
nonceStr:'your nonceStr',1)"> 必填,生成签名的随机串
signature:'your signature',1)"> 必填,签名
jsApiList: ['getLocation'] 必填,需要使用的JS接口列表
});
注意,我们的经纬度坐标是要在页面加载完成后立即获取,不需要触发获取,因此需要把获取地理位置的接口放在ready(function(){});里面
wx.ready(function ()
{
try {
wx.getLocation({
type: 'wgs84',1)"> 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
success: (res) {
var latitude = res.latitude; 纬度,浮点数,范围为90 ~ -90
var longitude = res.longitude; 经度,浮点数,范围为180 ~ -180。
var speed = res.speed; 速度,以米/每秒计
var accuracy = res.accuracy; 位置精度
$("#Longitude").val(longitude);
$("#Latitude").val(latitude);
alert("微信经纬度获取结果:" + latitude + "经度" + longitude);
}
});
}
catch (e)
{
console.log(e);
}
});
</script>