当前位置:   article > 正文

uni-app中位置授权以及打开地图选择位置功能的实现_uniapp 腾讯地图打卡

uniapp 腾讯地图打卡

最近在项目中遇到一个要用户授权位置且可以用户自己选择位置的功能,看起来好像很难,其实并不难,我在网上看了一些优秀博主的博客,只要跟着步骤一步步来就能实现,下面是我在实现该功能后做的一次总结,希望能帮到更多的小伙伴~

一、实现位置授权功能

实现的效果图:

 实现步骤:

1. 登录小程序官网获取AppID(用自己的小程序账号登录):

[开发 ->开发设置 -> 复制AppID]

2. 注册并登录腾讯地图api获取key:

 [控制台->我的应用->创建应用->填写信息->添加Key]

 

  1. 实现代码
  2. <template>
  3. <view>
  4. <view class="address" @click="goMap">
  5. <uni-icons type="location-filled" size="25"></uni-icons>
  6. <span>{{location}}</span>
  7. <uni-icons type="bottom" size="18"></uni-icons>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. location:'重庆市'
  16. };
  17. },
  18. methods:{
  19. goMap(){
  20. const that = this
  21. // uniapp 需要先调取用户授权请求询问用户是否授权
  22. uni.authorize({
  23. scope:'scope.userLocation',
  24. success(res){
  25. uni.chooseLocation({
  26. success:function(res){
  27. // console.log('位置名称:' + res.name);
  28. // console.log('详细地址:' + res.address);
  29. that.location = res.name;
  30. }
  31. })
  32. },
  33. fail(err){
  34. uni.$showMsg('获取位置失败&#xff01;')
  35. }
  36. })
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .address {
  43. padding: 0 5px;
  44. }
  45. </style>

 参考文档

uni.authorize(OBJECT) | uni-app官网

uni.getLocation(OBJECT) | uni-app官网

注意:要勾选位置接口

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

闽ICP备14008679号