有人能告诉我是否可以通过Phonegap获得以度为单位的Android设备方向(手机相对于地面的角度)?此外,是否有可能获得磁场?
答案 0 :(得分:13)
指南针是一种传感器,可检测设备指向的方向或方向。它测量从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);
答案 1 :(得分:1)
答案 2 :(得分:0)
据我所知,在phonegap android中你可以得到accelerometer数据
和 compass数据