如何使用 iPhone 计算汽车的速度
对于我的应用程序,我想使用 iPhone 计算我的汽车/自行车速度。我怎样才能做到这一点?理想情况下,它应该在后台持续运行。
For my application I want to calculate my car/bike speed using iphone. How can i do that? Ideally, it should run continuously in the background.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CLLocation 包括 速度 属性将为您提供设备的当前速度。 (请注意该链接上有关准确性的评论。)
要获取用户的当前位置,请按照 位置感知编程指南,位于“获取用户的当前位置”下。
最后,要在后台启用位置更新,请参阅 在后台接收位置事件。
CLLocation includes a speed property that will give you the current speed of the device. (Note the comment about the accuracy at that link.)
To get the user's current location, follow the steps in the Location Awareness Programming Guide, under "Getting the User's Current Location".
Finally, to enable location updates in the background, see Receiving Location Events in the Background in the iOS Application Programming Guide.
我能想到的唯一方法就是通过 GPS。加速度计坏了。但我不确定是否通过“GPS API”提供了足够的信息。
the only way i can think of is thru GPS. the accelerometer is out. but im not sure if enough information is provided thru "GPS API".