import {IonicView, DeviceOrientation} from 'ionic/ionic';
@IonicView({
template: `
Device Orientation
`
})
export class DeviceOrientationPage {
constructor() {
this.imageStyle = {
'max-width': '100%'
}
DeviceOrientation.watchHeading().source.subscribe((heading) => {
this.imageStyle['-webkit-transform'] = 'rotate(' + heading.magneticHeading + 'deg)';
});
}
}