8

谁能告诉我是否有可能通过 Phonegap 以度数(手机相对于地面的角度)获得 Android 设备方向?另外,是否也可以得到磁场?

4

3 回答 3

13

PhoneGap 文档

指南针是一种传感器,可检测设备指向的方向或航向。它以 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

可以使用 html5 确定设备方向

访问这里了解更多详情。

由于我们可以通过 html5/phonegap 使用加速度计,我们可以从中获取方向角度和所有此类数据。

于 2012-12-18T14:25:30.667 回答
0

据我所知,在phonegap android中你可以获得加速度计数据

罗盘数据

于 2012-12-18T14:27:24.777 回答