小程序模板网

微信小程序获取当前所在城市

发布时间:2018-04-21 09:16 所属栏目:小程序开发教程

本篇文章主要讲解在微信小程序中,如何利用微信自带的api(wx.getLocation())结合百度地图的逆地址解析api来获取当前所在城市名。

实现起来也比较简单,步骤为:

1--利用微信小程序接口 wx.getLocation() 获取当前经纬度。使用简单,具体可以参照微信小程序api。

https://mp.weixin.qq.com/debug/wxadoc/dev/api/location.html#wxopenlocationobject

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

接口为:

 

[javascript] view plain copy
 
 print?
  1. url: 'https://api.map.baidu.com/geocoder/v2/?ak=您的ak&location=' + latitude + ',' + longitude + '&output=json'  
ak需要在百度地图api官网去注册,然后创建一个应用,如此便可拿到您的ak。

 

 

index.js代码如下:

 

[javascript] view plain copy
 
 print?
  1. Page({  
  2.   data: {  
  3.     currentCity: ''  
  4.   },  
  5.   onLoad: function (options) {  
  6.     this.getLocation();  
  7.   },  
  8.   getLocation: function () {  
  9.     var page = this  
  10.     wx.getLocation({  
  11.       type: 'wgs84',   //<span class="comment" style="margin: 0px; padding: 0px; border: none;">默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标</span><span style="margin: 0px; padding: 0px; border: none;"> </span>  
  12.       success: function (res) {  
  13.         // success    
  14.         var longitude = res.longitude  
  15.         var latitude = res.latitude  
  16.         page.loadCity(longitude, latitude)  
  17.       }  
  18.     })  
  19.   },  
  20.   loadCity: function (longitude, latitude) {  
  21.     var page = this  
  22.     wx.request({  
  23.       url: 'https://api.map.baidu.com/geocoder/v2/?ak=您的ak&location=' + latitude + ',' + longitude + '&output=json',  
  24.       data: {},  
  25.       header: {  
  26.         'Content-Type': 'application/json'  
  27.       },  
  28.       success: function (res) {  
  29.         // success    
  30.         console.log(res);  
  31.         var city = res.data.result.addressComponent.city;  
  32.         page.setData({ currentCity: city });  
  33.       },  
  34.       fail: function () {  
  35.         page.setData({ currentCity: "获取定位失败" });  
  36.       },  
  37.         
  38.     })  
  39.   }  
  40. })    

 

 

loadCity()方法中,获取到信息之后打印出来,拿到的信息是非常详细的,如下图:

我们这里需要的是当前的city,即:res.data.result.addressComponent.city。如果项目中有需要更加丰富的信息,也可使用此方法,比较简便。

 

index.wxml代码如下:

 

[html] view plain copy
 
 print?
  1. <!--index.wxml-->    
  2. <view class="container">    
  3. 当前城市为:{{currentCity}}    
  4. </view>    


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/23839.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询