码迷,mamicode.com
首页 > 其他好文 > 详细

小程序获取城市

时间:2017-06-08 15:27:54      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:nbsp   cat   log   bsp   var   geo   tput   typeof   申请   

先要去百度地图申请一个key

  getCity: function (cb) {
    var that = this
    wx.getLocation({
      type: ‘gcj02‘,
      success: function (res) {
        var locationParam = res.latitude + ‘,‘ + res.longitude + ‘1‘
        wx.request({
          url: ‘https://api.map.baidu.com/geocoder/v2/‘,
          data: {
            ak: ‘---------‘,
            location: locationParam,
            output: ‘json‘,
            pois: ‘1‘
          },
          method: ‘GET‘,
          success: function (res) {
            console.log(res)
            that.data.city = res.data.result.addressComponent.city.slice(0, -1)
            typeof cb == "function" && cb(res.data.result.addressComponent.city.slice(0, -1))
          },
          fail: function (res) {
            // 重新定位
            that.getCity();
          }
        })
      }
    })
  }

 

小程序获取城市

标签:nbsp   cat   log   bsp   var   geo   tput   typeof   申请   

原文地址:http://www.cnblogs.com/anxiaoyu/p/6962973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!