微信小程序定位獲取當前所在城市,供大家參考,具體內(nèi)容如下
我們提供的服務有:成都網(wǎng)站設計、做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、墨玉ssl等。為近1000家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的墨玉網(wǎng)站制作公司1、利用微信小程序接口 wx.getLocation() 獲取當前經(jīng)緯度,接口。
2、拿到經(jīng)緯度之后,通過微信的wx.request()請求百度地圖的解析接口,傳入我們獲取到的經(jīng)緯度,拿到當前定位的城市。
Page({ data: { city: '' }, onLoad: function (options) { this.loadInfo(); }, loadInfo: function () { var page = this wx.getLocation({ type: 'wgs84', // 默認為 wgs84 返回 gps 坐標,gcj02 返回可用于 wx.openLocation 的坐標 success: function (res) { // success var longitude = res.longitude var latitude = res.latitude page.loadCity(longitude, latitude) }, fail: function () { // fail }, complete: function () { // complete } }) }, loadCity: function (longitude, latitude) { var page = this wx.request({ url: 'http://api.map.baidu.com/geocoder/v2/?ak=寫自己的ak&location=' + latitude + ',' + longitude + '&output=json&pois=1', //這里的ak 是去百度地圖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 }); }, fail: function () { // fail }, complete: function () { // complete } }) } });
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。