全局属性方法
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 }) } })