Phonegap - 以度为单位的设备方向&磁场

时间:2012-12-18 14:18:58

标签: cordova phonegap-plugins

有人能告诉我是否可以通过Phonegap获得以度为单位的Android设备方向(手机相对于地面的角度)?此外,是否有可能获得磁场?

3 个答案:

答案 0 :(得分:13)

PhoneGap Docs

  

指南针是一种传感器,可检测设备指向的方向或方向。它测量从0到359.99的度数。

     

指南针标题信息通过CompassHeading返回   使用compassSuccess回调函数的对象。

function onSuccess(heading) {
    alert('Heading: ' + heading.magneticHeading);
};

function onError(error) {
    alert('CompassError: ' + error.code);
};

navigator.compass.getCurrentHeading(onSuccess, onError);

如果要访问手机的x,y或z轴的旋转度,您只需使用裸HTML5即可。这是一篇很棒的文章:THIS END UP: USING DEVICE ORIENTATION

代码示例:

  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);

example

答案 1 :(得分:1)

可以使用html5

确定设备方向

访问 here了解详情。

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

答案 2 :(得分:0)

据我所知,在phonegap android中你可以得到accelerometer数据

compass数据