The OrientationSensor
interface of the 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.
Below is a list of interfaces based on the OrientationSensor interface.
OrientationSensor.quaternion
Array
whose elements contain the components of the unit quaternion representing the device's orientation.OrientationSensor.populateMatrix()
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();
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."); } });
Specification | Status | Comment |
---|---|---|
Orientation Sensor The definition of 'OrientationSensor' in that specification. | Candidate Recommendation | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 69 | ? | ? | ? | 56 | ? |
quaternion |
69 | ? | ? | ? | 56 | ? |
populateMatrix |
69 | ? | ? | ? | 56 | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 69 | 69 | ? | ? | 56 | ? | ? |
quaternion |
69 | 69 | ? | ? | 56 | ? | ? |
populateMatrix |
69 | 69 | ? | ? | 56 | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/OrientationSensor