当前位置:   article > 正文

vue 开发微信小程序定位功能_vue微信小程序定位代码

vue微信小程序定位代码

边做边总结系列:

小程序里获取个人定位,如果没有在app.json文件里配置小程序接口权限:permission,会提示↓

配置信息图下:

贴代码:

  1. "permission": {
  2. "scope.userLocation": {
  3. "desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
  4. }
  5. },

接着在onLoad里用getLocation来获取用户地点的经纬度,详细代码如下:

  1. data() {
  2. return {
  3. latitude:'', //获取纬度
  4. longitude:'', //获取经度
  5. }
  6. }
  7. onLoad() {
  8. /* 获取用户地点 */
  9. var that = this;
  10. wx.getLocation({
  11. type: 'wgs84',
  12. success: function (res) {
  13. that.latitude = res.latitude,
  14. that.longitude = res.longitude
  15. console.log('纬度=>',that.latitude,'经度=>',that.longitude)
  16. }
  17. })
  18. },

 

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号