我想知道您是否可以帮助我正在开发一个项目,我正在使用Javascript为Android应用程序编码。我们正在寻找存储指南针/方向值的模型,并找到了2009年w3c文档The Compass API
该文档建议将以下模型用作Web IDL对象:
interface Orientation : Object {
readonly attribute DOMTimeStamp timestamp;
readonly attribute float declination;
readonly attribute float fieldStrength;
readonly attribute float horizontalStrength;
readonly attribute float inclination;
readonly attribute float x;
readonly attribute float y;
readonly attribute float z;
};
我们想知道这是否是用于创建指南针或方向对象的最佳模型,或者是否有任何更新或替代方案?
非常感谢
莱斯莉