小程序全局属性和方法

青春壹個敷衍的年華 提交于 2019-12-06 18:27:25

全局属性方法

  enablePullDownRefresh 类型 : boolean    描述:是否开启全局的下拉刷新

  permission : 给小程序配置全局定位(获取地理位置):

    {

      "pages"["pages/index/index"],

        "permission": {
          "scope.userLocation": {
          "desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
         }
       }
    }其中:  js文件中引用获取地理位置的 wx.getLocation() 方法,获取当前的地理位置、速度     openLocation() 方法 使用微信内置地图查看位置:    属性: latitude 纬度    longitude  经度   scale  缩放比例,范围5~18  ....示例代码:  wx:getLocation ({    type:'gcJ02',    success (res) {      const latitude = res.latitude      const longitude = res.longitude      wx.openLocation ({        latitude,        longitude,        scale:18      })    }  })
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!