赞
踩
// 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);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。