onCompassChange
解释:监听罗盘数据,频率:5次/秒,接口调用后会自动开始监听,可使用swan.stopCompass停止监听。参数:CALLBACK
CALLBACK返回参数:
参数名 | 类型 | 说明 |
---|---|---|
direction | Number | 面对的方向度数 |
示例:在开发者工具中预览效果
- swan.onCompassChange(function (res) {
console.log(res.direction);
});
解释:监听罗盘数据,频率:5次/秒,接口调用后会自动开始监听,可使用swan.stopCompass停止监听。参数:CALLBACK
CALLBACK返回参数:
参数名 | 类型 | 说明 |
---|---|---|
direction | Number | 面对的方向度数 |
示例:在开发者工具中预览效果
- swan.onCompassChange(function (res) {
console.log(res.direction);
});
本文档使用 BookStack 构建