OrientationSensor - Web APIs 编辑
The OrientationSensor
interface of the Sensor APIs is the base class for orientation sensors. This interface cannot be used directly. Instead it provides properties and methods accessed by interfaces that inherit from it.
If a feature policy blocks use of a feature it is because your code is inconsistent with the policies set on your server. This is not something that would ever be shown to a user. See Feature-Policy
for implementation instructions.
Interfaces based on OrientationSensor
Below is a list of interfaces based on the OrientationSensor interface.
Properties
OrientationSensor.quaternion
- Returns a four element
Array
whose elements contain the components of the unit quaternion representing the device's orientation.
Methods
OrientationSensor.populateMatrix()
- Populates the given object with the rotation matrix based on the latest sensor reading. The rotation maxtrix is shown below.
Examples
Basic Example
The following example, which is loosely based on Intel's Orientation Phone demo, instantiates an AbsoluteOrientationSensor
with a frequency of 60 times a second. On each reading it uses OrientationSensor.quaternion
to rotate a visual model of a phone.
const options = { frequency: 60, referenceFrame: 'device' };
const sensor = new AbsoluteOrientationSensor(options);
sensor.addEventListener('reading', () => {
// model is a Three.js object instantiated elsewhere.
model.quaternion.fromArray(sensor.quaternion).inverse();
});
sensor.addEventListener('error', error => {
if (event.error.name == 'NotReadableError') {
console.log("Sensor is not available.");
}
});
sensor.start();
Permissions Example
Using orientation sensors requires requsting permissions for multiple device sensors. Becuase the Permissions
uses promises, a good way to request permissions is to use Promise.all
.
const sensor = new AbsoluteOrientationSensor();
Promise.all([navigator.permissions.query({ name: "accelerometer" }),
navigator.permissions.query({ name: "magnetometer" }),
navigator.permissions.query({ name: "gyroscope" })])
.then(results => {
if (results.every(result => result.state === "granted")) {
sensor.start();
...
} else {
console.log("No permissions to use AbsoluteOrientationSensor.");
}
});
Specifications
Specification | Status | Comment |
---|---|---|
Orientation Sensor The definition of 'OrientationSensor' in that specification. | Candidate Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论