当前位置:   article > 正文

小程序在获取当前定位地点_小程序默认获取当前定位

小程序默认获取当前定位

小程序在获取当前位置信息在地图上显示api:https://developers.weixin.qq.com/miniprogram/dev/api/wx.getLocation.html

主要方法:

  1. wx.getLocation({
  2. type: 'wgs84',
  3. success(res) {
  4. const latitude = res.latitude
  5. const longitude = res.longitude
  6. }
  7. })

这一步的时候,会出现在这样的提示:

 

所以要进入app.json配置以下
参考API:
https://developers.weixin.qq.com/miniprogram/dev/framework/config.html#permission

配置授权信息的代码

  1. {
  2. "pages": ["pages/index/index"],
  3. "permission": {
  4. "scope.userLocation": {
  5. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  6. }
  7. }
  8. }

图片.png

OK,具体代码也贴一下:

index.wxml

 <view bindtap="getLocation">获取当前位置信息</view>

index.js

  1. var app = getApp()
  2. Page({
  3. data: {
  4. },
  5. onLoad: function (options) {
  6. },
  7. getLocation:function(){
  8. wx.getLocation({
  9. type: 'wgs84',
  10. success(res) {
  11. const latitude = res.latitude
  12. const longitude = res.longitude
  13. wx.openLocation({
  14. latitude:latitude,
  15. longitude:longitude,
  16. })
  17. }
  18. })
  19. },
  20. })

**

原文作者:祈澈姑娘 技术博客:https://www.jianshu.com/u/05f416aefbe1

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

闽ICP备14008679号