Go to file
2014-07-13 16:50:16 +10:00
src New screenOrientation api, working minus checks and event firing 2014-07-12 16:05:30 +10:00
www Added missing orientation types to README 2014-07-13 16:50:16 +10:00
LICENSE Initial commit 2014-05-05 23:52:14 -07:00
plugin.xml Added missing orientation types to README 2014-07-13 16:50:16 +10:00
README.md Added missing orientation types to README 2014-07-13 16:50:16 +10:00

#cordova-yoik-screenorientation

Cordova plugin to set/lock the screen orientation in a common way for both iOS and Android. From version 1.0.0 the interface is based on the Screen Orientation API.

##Install

cordova plugin add net.yoik.cordova.plugins.screenorientation

###Source https://github.com/yoik/cordova-yoik-screenorientation

##Orientations

portrait-primary The orientation is in the primary portrait mode.

portrait-secondary The orientation is in the secondary portrait mode.

landscape-primary The orientation is in the primary landscape mode.

landscape-secondary The orientation is in the secondary landscape mode.

portrait The orientation is either portrait-primary or portrait-secondary (sensor).

landscape The orientation is either landscape-primary or landscape-secondary (sensor).

##Usage

screen.lockOrientation('landscape');

screen.unlockOrientation();

##Events

Both android and iOS will fire the orientationchange event on the window object. For this version of the plugin use the window object if you require notification.

i.e.

function init() {
    window.addEventListener("orientationchange", orientationChange, true);
}

function orientationChange(e) {
    var orientation="portrait";
    if(window.orientation == -90 || window.orientation == 90) orientation = "landscape";
    document.getElementById("status").innerHTML+=orientation+"<br>";
}

For this plugin to follow the API events should be fired on the screen object. iOS does not currently support events on the screen object so custom event handling will need to be added (Suggestions welcome!).

##iOS Notes

The iOS version is a combination of the cordova JS callback window.shouldRotateToOrientation and the workaround to recheck the orientation as implemented in https://github.com/Adlotto/cordova-plugin-recheck-screen-orientation.

If you have a custom implementation of the window.shouldRotateToOrientation it will have to be removed for the plugin to function as expected.

####iOS6

There has been a few cases where the rotation does not change the width of the viewport

Issue #1 @dokterbob

It seems to be related to having width=device-width, height=device-height in the meta viewport (which is part of the boilerplate phonegap/cordova app). It can be solved by updating the viewport with width=device-height, height=device-width or simply removing width and height altogether.

Pull requests welcome.