// pages/list/list.js
Page({
/**
* 页面的初始数据
*/
data: {
nation: '',
province: '',
city: '',
district: '',
street: ''
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.getAddressDetail();
},
/**
* 获取地理位置信息详情
*/
getAddressDetail: function () {
let that = this;
wx.getLocation({
type: 'wgs84',// 参考系
success: function (res) {
var latitude = res.latitude;
var longitude = res.longitude;
console.log("纬度=" + latitude + " 经度=" + longitude);
// 构建请求地址
var qqMapApi = 'http://apis.map.qq.com/ws/geocoder/v1/' + "?location=" + latitude + ',' +
longitude + "&key=" + 'XVLBZ-BSU66-ULJSQ-MFGXD-TM7GZ-55F2M' + "&get_poi=1";
that.sendRequest(qqMapApi);
版权声明:本文为huangbaokang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。