当前位置:   article > 正文

【微信小程序】获取当前位置和城市名_微信小程序怎么获取当前自身位置

微信小程序怎么获取当前自身位置

微信小程序-获取当前城市位置

   1, 获取当前地理位置,首先要拿到用户的授权wx.openSetting;

    2,微信的getLocation接口,获取当前用户的地理位置(微信返回的是经纬度,速度等参数);

    3,微信没有将经纬度直接转换为地理位置,借用腾讯位置服务中关于微信小程序的地理转换JS SDK 的API(返回信息中包括国家,省,市,区,经纬度等地理位置)
步骤描述清楚以后,下面就开始按步骤操作了;(本文仅仅讲述如何获取用户地理位置的授权)

图示为获取用户地理位置授权弹窗

 

在用户首次进入某页面(需要地理位置授权)时候,在页面进行onLoad,onShow时候,进行调用wx.getLocation要求用户进行授权;以后每次进入该页面时,通过wx.getSetting接口,返回用户授权具体信息。

wx.getSetting接口具体API地址链接为点击打开链接

 

 上图中scope.userLocation就是地理授权的标志;

当该标志是underfind,表示用户初次进入该页面,当该标志是false,表示用户初次进入该页面拒绝了地理授权,应进行重新要求获取授权。

  1. wx.getSetting({
  2. success: (res) => {
  3. console.log(JSON.stringify(res))
  4. // res.authSetting['scope.userLocation'] == undefined 表示 初始化进入该页面
  5. // res.authSetting['scope.userLocation'] == false 表示 非初始化进入该页面,且未授权
  6. // res.authSetting['scope.userLocation'] == true 表示 地理位置授权
  7. if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {
  8. wx.showModal({
  9. title: '请求授权当前位置',
  10. content: '需要获取您的地理位置,请确认授权',
  11. success: function (res) {
  12. if (res.cancel) {
  13. wx.showToast({
  14. title: '拒绝授权',
  15. icon: 'none',
  16. duration: 1000
  17. })
  18. } else if (res.confirm) {
  19. wx.openSetting({
  20. success: function (dataAu) {
  21. if (dataAu.authSetting["scope.userLocation"] == true) {
  22. wx.showToast({
  23. title: '授权成功',
  24. icon: 'success',
  25. duration: 1000
  26. })
  27. //再次授权,调用wx.getLocation的API
  28. } else {
  29. wx.showToast({
  30. title: '授权失败',
  31. icon: 'none',
  32. duration: 1000
  33. })
  34. }
  35. }
  36. })
  37. }
  38. }
  39. })
  40. } else if (res.authSetting['scope.userLocation'] == undefined) {
  41. //调用wx.getLocation的API
  42. }
  43. else {
  44. //调用wx.getLocation的API
  45. }
  46. }
  47. })

在拿到用户授权以后,使用微信的API获取当前位置的经纬度微信获取位置API

这里,我们进行使用的是腾讯位置服务;专为小程序开发者提供LBS数据服务工具包,可以在小程序中调用腾讯位置服务的POI检索、关键词输入提示、地址解析、逆地址解析、行政区划和距离计算等数据。
    1,得到开发者秘钥
    2,下载微信小程序javaScriptSDK,

    3,安全域名设置,在“设置” -> “开发设置”中设置request合法域名,添加http://api.map.qq.com

在文件中引入对应的javaScriptSDK文件

  1. var QQMapWX = require('../../../utils/qqmap-wx-jssdk.js');
  2. var qqmapsdk;

在文件中进行js调用

 最后的结果就是可以获得自己所在城市的具体位置了

index.js部分的代码

  1. //index.js
  2. //获取应用实例
  3. const app = getApp();
  4. var QQMapWX = require('../../../utils/qqmap-wx-jssdk.js');
  5. var qqmapsdk;
  6. Page({
  7. data: {
  8. province: '',
  9. city: '',
  10. latitude: '',
  11. longitude: ''
  12. },
  13. onLoad: function () {
  14. qqmapsdk = new QQMapWX({
  15. key: 'XXXX-XXXX-XXXX-XXXX' //这里自己的key秘钥进行填充
  16. });
  17. },
  18. onShow: function () {
  19. let vm = this;
  20. vm.getUserLocation();
  21. },
  22. getUserLocation: function () {
  23. let vm = this;
  24. wx.getSetting({
  25. success: (res) => {
  26. console.log(JSON.stringify(res))
  27. // res.authSetting['scope.userLocation'] == undefined 表示 初始化进入该页面
  28. // res.authSetting['scope.userLocation'] == false 表示 非初始化进入该页面,且未授权
  29. // res.authSetting['scope.userLocation'] == true 表示 地理位置授权
  30. if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {
  31. wx.showModal({
  32. title: '请求授权当前位置',
  33. content: '需要获取您的地理位置,请确认授权',
  34. success: function (res) {
  35. if (res.cancel) {
  36. wx.showToast({
  37. title: '拒绝授权',
  38. icon: 'none',
  39. duration: 1000
  40. })
  41. } else if (res.confirm) {
  42. wx.openSetting({
  43. success: function (dataAu) {
  44. if (dataAu.authSetting["scope.userLocation"] == true) {
  45. wx.showToast({
  46. title: '授权成功',
  47. icon: 'success',
  48. duration: 1000
  49. })
  50. //再次授权,调用wx.getLocation的API
  51. vm.getLocation();
  52. } else {
  53. wx.showToast({
  54. title: '授权失败',
  55. icon: 'none',
  56. duration: 1000
  57. })
  58. }
  59. }
  60. })
  61. }
  62. }
  63. })
  64. } else if (res.authSetting['scope.userLocation'] == undefined) {
  65. //调用wx.getLocation的API
  66. vm.getLocation();
  67. }
  68. else {
  69. //调用wx.getLocation的API
  70. vm.getLocation();
  71. }
  72. }
  73. })
  74. },
  75. // 微信获得经纬度
  76. getLocation: function () {
  77. let vm = this;
  78. wx.getLocation({
  79. type: 'wgs84',
  80. success: function (res) {
  81. console.log(JSON.stringify(res))
  82. var latitude = res.latitude
  83. var longitude = res.longitude
  84. var speed = res.speed
  85. var accuracy = res.accuracy;
  86. vm.getLocal(latitude, longitude)
  87. },
  88. fail: function (res) {
  89. console.log('fail' + JSON.stringify(res))
  90. }
  91. })
  92. },
  93. // 获取当前地理位置
  94. getLocal: function (latitude, longitude) {
  95. let vm = this;
  96. qqmapsdk.reverseGeocoder({
  97. location: {
  98. latitude: latitude,
  99. longitude: longitude
  100. },
  101. success: function (res) {
  102. console.log(JSON.stringify(res));
  103. let province = res.result.ad_info.province
  104. let city = res.result.ad_info.city
  105. vm.setData({
  106. province: province,
  107. city: city,
  108. latitude: latitude,
  109. longitude: longitude
  110. })
  111. },
  112. fail: function (res) {
  113. console.log(res);
  114. },
  115. complete: function (res) {
  116. // console.log(res);
  117. }
  118. });
  119. }
  120. })

页面展示部分的代码

  1. <!--index.wxml-->
  2. <view class="retailStore">
  3. <view class="cnaps borderBottom">
  4. <text>所在城市</text>
  5. <input class='m-bbt' placeholder-class='plhStyle' type='number' maxlength='50' placeholder='' bindinput="bindKeyInput" value='{{province}} {{city}}' disabled></input>
  6. </view>
  7. </view>

转自:https://blog.csdn.net/weixin_42262436/article/details/80458430https://blog.csdn.net/weixin_42262436/article/details/80458430

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/968028
推荐阅读
相关标签
  

闽ICP备14008679号