使用 Javascript 从 Web 应用程序访问设备指南针
是否可以通过网络应用程序在 iPhone/Android 设备上使用 Javascript 访问指南针?在网上找了几个小时我知道你可以使用
window.ondevicemotion = function(event)
访问加速度计有谁知道你是否可以从指南针访问信息?
Is it possible to access the compass with Javascript on an iphone/ android device from a web app? Have been looking all over the net for hours I know you can access the accelerometer with
window.ondevicemotion = function(event)
Does anyone know if you can access the information from the compass??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 iPhone 上,您可以这样获取指南针值。
希望这有帮助。
On iPhone, you can get the compass value like this.
Hope this help.
现在看起来是跨平台的,请查看这篇优秀文章 作者:Ruadhán O'Donoghue。
对于 Android,它仍然使用
window.addEventListener('deviceorientation', ...)
但检查其他事件属性(event.alpha
这是指南针方向;beta
和gamma
也可用,它们代表倾斜)。如果链接不可用,以下是相关部分(已改编):
另一个使用示例可在 CodePen。
It looks to be cross platform now, check this excellent article by Ruadhán O'Donoghue.
For Android, it still uses
window.addEventListener('deviceorientation', ...)
but check for other event properties (event.alpha
which is compass orientation ;beta
andgamma
are also available, which represent the tilting).Here are the relevant parts (adapted) if the link becomes unavailable:
Another usage example is available on CodePen.