1. 程式人生 > >微信小程序自動定位,通過百度地圖根據經緯度獲取該地點所在城市信息

微信小程序自動定位,通過百度地圖根據經緯度獲取該地點所在城市信息

城市 小程序 key lbs cat img data success baidu

微信小程序獲得經緯度

var that = this
    wx.getLocation({
      type: wgs84,
      success(res) {
        console.log(res)
        that.setData({
          latitude: res.latitude,
          longitude: res.longitude
        })
    }
})

百度地圖api

‘https://api.map.baidu.com/geocoder/v2/?location=‘ + res.latitude+‘,‘ + res.longitude+‘&output=json&pois=1&ak=‘+baiduAK{註冊百度地圖api獲得的accessKey} http://lbsyun.baidu.com/
返回json裏的city字段就是城市信息了。 技術分享圖片

微信小程序自動定位,通過百度地圖根據經緯度獲取該地點所在城市信息