微信小程序定位当前城市的方法

前端之家收集整理的这篇文章主要介绍了微信小程序定位当前城市的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

微信小程序定位获取当前所在城市,供大家参考,具体内容如下

1、利用微信小程序接口 wx.getLocation() 获取当前经纬度,nofollow" target="_blank" href="https://mp.weixin.qq.com/debug/wxadoc/dev/api/location.html#wxopenlocationobject">接口。

2、拿到经纬度之后,通过微信的wx.request()请求百度地图的解析接口,传入我们获取到的经纬度,拿到当前定位的城市。

百度地图api获取的需要自己登陆获取一下 地址:https://lbsyun.baidu.com/index.PHP?title=wxjsapi data: {},header: { 'Content-Type': 'application/json' },success: function (res) { // success console.log(res); var city = res.data.result.addressComponent.city;

console.log("城市为" + city)
page.setData({ city: city });
},complete: function () {
// complete
}
})
}
});

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/weapp/31430.html

猜你在找的微信小程序相关文章