浏览器<-> 客户端硬件API?
是否有任何举措来实施/商定用于 Web 浏览器和客户端硬件之间连接的标准 API。
示例:iPhone 内有 GPS/摄像头/加速计。 如果我的 Web 应用程序可以与它们通信(而不是我必须编写厚重的 ObjectiveC 应用程序),那就太酷了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我见过的最接近的东西是 Android 手机 API,它可以让您的程序(相对)轻松地访问其硬件。 谷歌正在推动它成为新标准,但它与网络应用程序几乎没有什么区别(根据大多数定义,它完全在浏览器中运行?)。
The closest thing I've seen to that is the Android phone API, which lets your programs access its hardware (relatively) painlessly. Google's pushing for it to become the new standard, but its hardly the same thing as a web-app (which, by most definitions, runs entirely in your browser?).
即将推出的 FireFox 版本有一个 API,可以从 GPS 设备读取您的纬度/经度。
The upcoming version of FireFox has an API to read your lat/long off a GPS device.
添加我自己的问题; 雅虎提供了名为 FireEagle 的地理定位服务,可以充当中介并提供类似的功能。
本质上,手机与更新其位置的中央雅虎服务器进行通信。 然后,您的网络应用程序可以从该中央服务器确定您的大致位置。
To add to my own question; Yahoo provides a geolocation service called FireEagle that could act as a mediator and provide similar functionality.
In essence the phone communicates with a central Yahoo server updating its location. Your web app can then determine your approx location from that central server.