谁能告诉我是否有可能通过 Phonegap 以度数(手机相对于地面的角度)获得 Android 设备方向?另外,是否也可以得到磁场?
问问题
9343 次
3 回答
13
指南针是一种传感器,可检测设备指向的方向或航向。它以 0 到 359.99 度为单位测量航向。
指南针航向信息通过使用 compassSuccess 回调函数的 CompassHeading 对象返回。
function onSuccess(heading) {
alert('Heading: ' + heading.magneticHeading);
};
function onError(error) {
alert('CompassError: ' + error.code);
};
navigator.compass.getCurrentHeading(onSuccess, onError);
如果您想访问手机的 x、y 或 z 轴的旋转度数,您可以简单地使用纯 HTML5。这是一篇很棒的文章:这最终:使用设备方向
代码示例:
window.addEventListener('deviceorientation', function(eventData) {
// gamma is the left-to-right tilt in degrees, where right is positive
var tiltLR = eventData.gamma;
// beta is the front-to-back tilt in degrees, where front is positive
var tiltFB = eventData.beta;
// alpha is the compass direction the device is facing in degrees
var dir = eventData.alpha
// deviceorientation does not provide this data
var motUD = null;
// call our orientation event handler
deviceOrientationHandler(tiltLR, tiltFB, dir, motUD);
}, false);
于 2012-12-18T14:25:44.503 回答
1
于 2012-12-18T14:25:30.667 回答