微信小程序實現城市定位:獲取當前所在的國家城市信息

微信小程序中,咱們能夠經過調用wx.getLocation()獲取到設備當前的地理位置信息,這個信息是當前位置的經緯度。若是咱們想獲取當前位置是處於哪一個國家,哪一個城市等信息,該如何實現呢?javascript

微信小程序中並無提供這樣的API,可是不要緊,有wx.getLocation()獲得的經緯度做爲基礎就夠了,其餘的,咱們可使用其餘第三方地圖服務能夠來實現,好比騰訊地圖或百度地圖的API。java

以騰訊地圖爲例,咱們能夠去騰訊地圖開放平臺註冊一個帳號,而後在它的管理後臺建立一個密鑰(key)。git

而後在頂部菜單裏面,能夠找到WebServiceAPI菜單:django


騰訊地圖WebServiceAPI

騰訊地圖提供了不少WebServiceAPI,好比按照地址獲取經緯度,根據經緯度找地址,咱們將要用到的就是根據經緯度找地址,也稱做「逆地址解析」:json


逆地址解析

逆地址解析提供由座標到座標所在位置的文字描述的轉換,調用形式就是一個HTTP URL形式的API,基本用法以下:小程序

http://apis.map.qq.com/ws/geocoder/v1/?location=39.984154,116.307490&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77

這個URL的基本參數就是一個經緯度座標地址。你能夠將這個URL中的key換成你本身的key,直接在瀏覽器中查看,就能看到相似這樣的結果,還能夠根據傳入不一樣的參數選項,獲得更豐富的信息:vim

{
    "status": 0, "message": "query ok", "request_id": "6225548022856589453", "result": { "location": { "lat": 39.984154, "lng": 116.30749 }, "address": "北京市海淀區北四環西路66號彩和坊路", "formatted_addresses": { "recommend": "海淀區中關村彩和坊路中國技術交易大廈", "rough": "海淀區中關村彩和坊路中國技術交易大廈" }, "address_component": { "nation": "中國", "province": "北京市", "city": "北京市", "district": "海淀區", "street": "彩和坊路", "street_number": "北四環西路66號" }, "ad_info": { "adcode": "110108", "name": "中國,北京市,北京市,海淀區", "location": { "lat": 39.984154, "lng": 116.307487 }, "nation": "中國", "province": "北京市", "city": "北京市", "district": "海淀區" }, "address_reference": { "business_area": { "title": "中關村", "location": { "lat": 39.984058, "lng": 116.307518 }, "_distance": 0, "_dir_desc": "內" }, "famous_area": { "title": "中關村", "location": { "lat": 39.984058, "lng": 116.307518 }, "_distance": 0, "_dir_desc": "內" }, "crossroad": { "title": "彩和坊路/北四環西路輔路(路口)", "location": { "lat": 39.985001, "lng": 116.308113 }, "_distance": 104.2, "_dir_desc": "西南" }, "village": { "title": "稻香園北社區", "location": { "lat": 39.983269, "lng": 116.301979 }, "_distance": 480.1, "_dir_desc": "東" }, "town": { "title": "海淀街道", "location": { "lat": 39.984154, "lng": 116.307487 }, "_distance": 0, "_dir_desc": "內" }, "street_number": { "title": "北四環西路66號", "location": { "lat": 39.984119, "lng": 116.307503 }, "_distance": 6.9, "_dir_desc": "" }, "street": { "title": "彩和坊路", "location": { "lat": 39.984154, "lng": 116.308098 }, "_distance": 49.1, "_dir_desc": "西" }, "landmark_l1": { "title": "北京中關村創業大街", "location": { "lat": 39.984055, "lng": 116.306992 }, "_distance": 43.9, "_dir_desc": "東" }, "landmark_l2": { "title": "中國技術交易大廈", "location": { "lat": 39.984154, "lng": 116.307487 }, "_distance": 0, "_dir_desc": "內" } } } }

從這個API的返回結果中,咱們能夠看到它包含了咱們想要的地址信息,如國家,城市,區等。微信小程序

接下來,咱們要在咱們的代碼中調用這個API。該API能夠經過JSONP的方式調用,也能夠在服務器端發起調用。我是在我本身的服務端中調用的,下面是個人代碼,使用Node.js Express實現的,僅供參考:api

// 服務調用地址:http://localhost:3000/lbs/location router.get('/lbs/location', function (req, res, next) { let lat = req.query.latitude let lng = req.query.longitude request.get({ uri: 'https://apis.map.qq.com/ws/geocoder/v1/', json: true, qs: { location: `${lat},${lng}`, key: '你的騰訊地圖密鑰key' } }, (err, response, data) => { if (response.statusCode === 200) { responseUtil.jsonSuccess(res, data) } else { responseUtil.jsonError(res, 10001, '') } }) })

而後,能夠看一下在小程序端的Page代碼:瀏覽器

Page({

  data: { address: {} }, onLoad: function () { //獲取當前經緯度信息 wx.getLocation({ success: ({latitude, longitude}) => { //調用後臺API,獲取地址信息 wx.request({ url: 'http://localhost:3000/lbs/location', data: { latitude: latitude, longitude: longitude }, success: (res) => { let info = res.data.data.result.ad_info this.setData({ address: info }) }, fail: () => { }, complete: () => { } }) } }) } })

以及一個簡單的小程序界面,用於顯示這些地址信息:

<view> <view>{{address.nation}}</view> <view>{{address.city}}</view> <view>{{address.district}}</view> </view>

運行結果以下所示:

運行結果

好了,若是你正遇到本文中所描述的問題,但願本文能幫到你。若是你有更好的方式,不吝分享。


來自「一斤代碼」 原文地址,http://www.jianshu.com/p/2c076e764796

相關文章
相關標籤/搜索