前端定位--之微信公众号



要使用手机,获取在微信公众号工具中测试

/* 定位 */
function getAddress() {
console.log('getAddress');
  //接口返回的配置参数
getLocations(function (res) {
if (res.ret == 200) {
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: res.data.appId, // 必填,公众号的唯一标识
timestamp: res.data.timestamp, // 必填,生成签名的时间戳
nonceStr: res.data.nonceStr, // 必填,生成签名的随机串
signature: res.data.signature,// 必填,签名,见附录1
jsApiList: ['getLocation'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});
}
});
}
wx.error(function (res) {
console.log(res);
});
wx.ready(function () {
wx.getLocation({
type: 'wgs84', // 默认为wgs84gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
success: function (res) {
var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
var longitude = res.longitude; // 经度,浮点数,范围为180 ~ -180
var speed = res.speed; // 速度,以米/每秒计
var accuracy = res.accuracy; // 位置精度
//转换经纬度
changeLogLat(longitude, latitude);
        //百度经纬度转换
//http://api.map.baidu.com/geoconv/v1/?coords=' + log + ',' + lat + '&from=1&to=5&ak=密钥'
}
});
});
原文地址:https://www.cnblogs.com/fangyinghua/p/7568542.html