微信小程序定位权限申请多次被拒解决思路

如果在小程序中需要使用定位相关的操作,前提是需要在小程序后台进行申请开通


申请页

但是这个"获取当前的地理位置、速度"的权限申请的通过率比较低,有的开发朋友可能会来来回回折腾十几次甚至几十次仍然未通过,这里提供一个快速申请通过的新思路,经过测试,"打开地图选择位置"接口权限的通过率远远高于"获取当前的地理位置、速度",而且"打开地图选择位置"同时也就获取了定位权限。所以可以曲线救国,多申请一个权限即可。
下面我将提供一个符合"打开地图选择位置"的页面,可以用来应付审核。
大概页面样式如下:


门店页

代码实现:

storeMap.wxml
<!--pages/storeMap/storeMap.wxml-->
<view class="main" style="height:{{mapHeight}}px;">
  <map class="map" style="height:{{mapHeight}}px;" id="map" longitude="{{location.longitude}}" latitude="{{location.latitude}}" markers="{{markers}}" bindmarkertap="makertap" bindregionchange="regionchange" show-location>
    <cover-view class="map-cover">
      <cover-image class="map-cover-img" src="../../image/icon-location.png" catchtap="setUserLocation"></cover-image>
    </cover-view>
    <cover-view class="map-cover-5" catchtap="" wx-if="{{showChoosedStoreInfo}}" catchtap="aedDetail">
      <cover-image class="choosed-store-info-img" src="https://img1.baidu.com/it/u=1070662155,3808653193&fm=253&app=138&size=w931&n=0&f=JPEG&fmt=auto?sec=1669309200&t=d42000cb6ada37face9f0ec85e48aa21"></cover-image>
      <cover-image class="choosed-store-info-icon" src="../../image/current-location.png"></cover-image>
      <cover-view class="choosed-store-info-detail">{{choosedStore.title}}</cover-view>
      <cover-view class="choosed-store-info-button" catchtap="goThere">去店里</cover-view>
    </cover-view>
  </map>
</view>
storeMap.js
// pages/storeMap/storeMap.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    mapHeight: 0,
    markers:[],
    //默认的门店信息,如果有需要,可以从接口获取
    markersDefault: [{
        iconPath: "../../image/ic_store.png",
        id: 1,
        longitude: 121.523315,
        latitude: 31.292936,
        width:30,
        height:30,
        title: "杨浦区五角场店"
      },{
        iconPath: "../../image/ic_store.png",
        id: 2,
        longitude: 116.375381,
        latitude: 40.025043,
        width:30,
        height:30,
        title: "北京奥林匹克运动会店"
      },{
        iconPath: "../../image/ic_store.png",
        id: 3,
        longitude: 114.115030,
        latitude: 22.537600,
        width:30,
        height:30,
        title: "深圳万象城门店"
      },{
        iconPath: "../../image/ic_store.png",
        id: 4,
        longitude: 121.803829,
        latitude: 31.136933,
        width:30,
        height:30,
        title: "上海浦东国际机场店"
      },{
        iconPath: "../../image/ic_store.png",
        id: 5,
        longitude: 121.447288,
        latitude: 31.146777,
        width:30,
        height:30,
        title: "上海植物园店"
      }
    ],
    location:{},
    showChoosedStoreInfo: false, // 显示选中的门店信息
    choosedStore: {},
  },


  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    //初始化屏幕信息
    wx.getSystemInfo({
      complete: (sysinfo) => {
        console.log(sysinfo);
        let height = sysinfo.windowHeight;
        this.setData({
          mapHeight: height
        })
      },
    })

    this.getLocationMethod();
  },


  /**
   * 获取当前位置信息
   */
  getLocationMethod: function () {
    var that = this;
    wx.getLocation({
      type: 'gcj02',
      success: function (res) {
        var lat = res.latitude;
        var lon = res.longitude;
        var selfMarker = {
          iconPath: "../../image/current-location.png",
          id: 0,
          latitude: res.latitude,
          longitude: res.longitude,
          width: 30,
          height: 30,
          title: ' 我的当前位置 '
        }
        var tempList = [];
        for (var i = 0; i < that.data.markersDefault.length; i++) {
          tempList.push(that.data.markersDefault[i]);
        }
        tempList.push(selfMarker);

        that.setData({
          mapScale: '14',
          location: {
            longitude: res.longitude,
            latitude: res.latitude
          },
          markers: tempList
        })
        //在获取当前位置信息之后,请求获取周围aed信息的接口,获取信息
        // that.getStoreInfo(res);
      },
      fail: function (res) {
        if (res.errMsg == 'getLocation:fail auth deny') {
          wx.showModal({
            title: '',
            content: '需要授权定位才能使用此功能',
            success: function (res) {
              if (res.confirm) {
                wx.openSetting({
                  success: (res) => {
                    if (res.authSetting['scope.userLocation']) {
                      that.getLocationMethod();
                    }
                  }
                })
              }
            }
          })
        }
      },
      complete: function (res) {},
    })
  },

  makertap: function (e) {
    var that = this;
    var id = e.markerId;
    if (id == 0){
      that.setData({
        showChoosedStoreInfo: false,
        choosedStore : {}
      })
    }
    for (var i = 0; i < that.data.markersDefault.length; i++) {
      if(that.data.markersDefault[i].id == id){
          that.setData({
            showChoosedStoreInfo: true,
            choosedStore : that.data.markersDefault[i]
          })
      }
    }

  },

  goThere: function () {
    wx.openLocation({
      latitude: parseFloat(this.data.choosedStore.latitude),
      longitude: parseFloat(this.data.choosedStore.longitude),
      name: this.data.choosedStore.title,
      scale: 28
    })
  },

  /**
   * 回到当前位置
   */
  setUserLocation: function () {
    console.log("回到当前位置");
    var mapCtx = wx.createMapContext('map')
    mapCtx.moveToLocation() //地图回到当前位置
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady() {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow() {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide() {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload() {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom() {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage() {

  }
})
storeMap.json
{
  "usingComponents": {},
  "navigationBarTitleText": "门店地图"
}
storeMap.wxss
/* pages/storeMap/storeMap.wxss */
.main {
  width: 100%;
}

.map {
  width: 100%;
  position: absolute;
}

.map-cover {
  width: 120rpx;
  height: 160rpx;
  border-radius: 5rpx;
  position: absolute;
  bottom: 300rpx;
  right: 40rpx;
}

.map-cover-img {
  width: 120rpx;
  height: 120rpx;
  border-radius: 20rpx;
  overflow: hidden;
  margin: 20rpx 0;
}

.map-cover-5 {
  width: 80%;
  height: 200rpx;
  border-radius: 20rpx;
  position: absolute;
  bottom: 0rpx;
  margin: 0 auto;
  background: white;
  margin: 10%;
}

.choosed-store-info-img {
  width: 200rpx;
  height: 160rpx;
  float: left;
  margin-left: 20rpx;
  margin-top: 20rpx;
  border-radius: 10rpx;
  overflow: hidden;
}

.choosed-store-info-icon {
  width: 40rpx;
  height: 40rpx;
  margin-top: 20rpx;
  margin-left: 240rpx;
}

.choosed-store-info-detail {
  height: 60rpx;
  color: #666666;
  font-size: 32rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  margin-top: -40rpx;
  margin-left: 300rpx;
  margin-right: 10rpx;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre-line;
}

.choosed-store-info-button {
  height: 60rpx;
  width: 240rpx;
  font-size: 32rpx;
  overflow: hidden;
  line-height: 60rpx;
  text-align: center;
  color: #ffffff;
  border-radius: 10rpx;
  text-overflow: ellipsis;
  word-break: keep-all;
  margin-top: 20rpx;
  margin-left: 300rpx;
  margin-right: 10rpx;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre-line;
  background: #FF9525;
}

上面用到的icon比较简单,大家自行寻找替换即可。没其他多余的代码,只需要提供一个入口,跳转到storeMap页面即可,入口UI大家自行设计

  storeMap() {
    wx.navigateTo({
      url: '../storeMap/storeMap',
    })
  },

完成以上,编译后截图,拿着截图去申请"打开地图选择位置"和"获取当前的地理位置、速度"权限,分分钟通过。亲测有效,3分钟审核通过!通过后,干掉以上代码即可

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容