微信小程序结合腾讯地图定位当前城市(位置)

复制代码
 onLoad(options) {
this.getUserLocation() },
/** * 定位地点 */ getUserLocation: function () { let _this = this wx.getLocation({ type: 'gcj02', // type有两中类型,gcj02 是腾讯地图所能解析的 success: res => { _this.setData({ locationObj: res }) // 调用获取城市名称方法 _this.getCity() } }) }, // 获取定位城市名称方法 getCity: function () { var _this = this wx.request({ url: `https://apis.map.qq.com/ws/geocoder/v1/?key=QDOBZ*********************VFQZ&location=`+ _this.data.locationObj.latitude + ',' +_this.data.locationObj.longitude, success: res => { console.log(res.data) // 此处返回的就是需要查询的城市名称 } }) }, })
复制代码

 腾讯地图获取key

https://lbs.qq.com/dev/console/application/mine

posted @   王越666  阅读(602)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· 写一个简单的SQL生成工具
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
点击右上角即可分享
微信分享提示