[OpenLayers-Commits] r11187 - sandbox/cmoullet/openlayers/examples
commits-20090109 at openlayers.org
commits-20090109 at openlayers.org
Mon Feb 21 10:04:21 EST 2011
Author: cmoullet
Date: 2011-02-21 07:04:21 -0800 (Mon, 21 Feb 2011)
New Revision: 11187
Modified:
sandbox/cmoullet/openlayers/examples/accelerometer.html
Log:
Add other debugging info
Modified: sandbox/cmoullet/openlayers/examples/accelerometer.html
===================================================================
--- sandbox/cmoullet/openlayers/examples/accelerometer.html 2011-02-21 14:58:52 UTC (rev 11186)
+++ sandbox/cmoullet/openlayers/examples/accelerometer.html 2011-02-21 15:04:21 UTC (rev 11187)
@@ -14,20 +14,23 @@
}
</style>
<script type="text/javascript">
- var result = document.getElementById('result');
+ var result;
function init() {
+ result = document.getElementById('result');
if (isEventSupported('deviceorientation', window) || isEventSupported('mozorientation', window) || isEventSupported('devicemotion', window)) {
if (window.DeviceOrientationEvent) {
alert("window.DeviceOrientationEvent supported");
window.addEventListener("deviceorientation", function () {
+ alert('DeviceOrientationEvent');
result.innerHTML = "Alpha: " + event.alpha;
result.innerHTML = result.innerHTML + "Beta: " + event.beta;
result.innerHTML = result.innerHTML + "Gamma: " + event.gamma;
}, true);
- } else if (window.DeviceMotionEvent) {
+ }
+ if (window.DeviceMotionEvent) {
alert("window.DeviceMotionEvent supported");
window.addEventListener('devicemotion', function () {
- tilt([event.acceleration.x * 2, event.acceleration.y * 2]);
+ alert('DeviceMotionEvent');
result.innerHTML = "acceleration.x: " + event.acceleration.x;
result.innerHTML = result.innerHTML + "acceleration.y: " + event.acceleration.y;
result.innerHTML = result.innerHTML + "acceleration.z: " + event.acceleration.z;
@@ -38,9 +41,11 @@
result.innerHTML = result.innerHTML + "rotationRate.beta: " + event.rotationRate.beta;
result.innerHTML = result.innerHTML + "rotationRate.gamm: " + event.rotationRate.gamma;
}, true);
- } else {
+ }
+ if (window.MozOrientation) {
alert("window.MozOrientation supported");
window.addEventListener("MozOrientation", function () {
+ alert('MozOrientation');
result.innerHTML = "orientation.x: " + orientation.x;
result.innerHTML = result.innerHTML + "orientation.y: " + orientation.y;
result.innerHTML = result.innerHTML + "orientation.z: " + orientation.z;
More information about the Commits
mailing list