Device Motion
Requires Cordova plugin: cordova-plugin-device-motion
. For more info, please see the Device Motion docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic Device Motion插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic Device Motion插件支持的平台(Supported Platforms)
- Android
- BlackBerry 10
- Browser
- Firefox OS
- iOS
- Tizen
- Ubuntu
- Windows
- Windows Phone 8
Ionic Device Motion插件的用法(Usage)
import { DeviceMotion, DeviceMotionAccelerationData } from '@ionic-native/device-motion/ngx';
constructor(private deviceMotion: DeviceMotion) { }
...
// Get the device current acceleration
this.deviceMotion.getCurrentAcceleration().then(
(acceleration: DeviceMotionAccelerationData) => console.log(acceleration),
(error: any) => console.log(error)
);
// Watch device acceleration
var subscription = this.deviceMotion.watchAcceleration().subscribe((acceleration: DeviceMotionAccelerationData) => {
console.log(acceleration);
});
// Stop watch
subscription.unsubscribe();