如何在 iPhone 上查看汽车速度?

发布于 2024-10-31 14:10:41 字数 67 浏览 1 评论 0原文

我想在开车时在 iPhone 上查看车速,那么我应该使用什么以及如何操作? 核心运动还是核心位置?有文档或者示例代码吗?

I want to find the car speed on my iPhone when driving so what should I use and how?
Core Motion or Core Location? Is there any documentation or sample code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

嘦怹 2024-11-07 14:10:41

嘿 - 你需要核心位置。

这里有一个非常好的教程 - http://www. vellios.com/2010/08/16/core-location-gps-tutorial/ 我关注过一次。有一个完整的系列,但这个系列向您展示如何计算设备的位置和速度。还有一个示例项目可供下载。希望这有帮助!

Hey - You'll want core location for this.

There is a really good tutorial here - http://www.vellios.com/2010/08/16/core-location-gps-tutorial/ that I followed once. There is a whole series but this one shows you how to calculate the position and speed of your device. There is a sample project to download too. Hope this helps!

野の 2024-11-07 14:10:41

CoreMotion 不会对您有太大帮助,因为它是设备加速计和陀螺仪的抽象。你可以测量加速度和减速度,并根据基础物理计算速度,但我不会这样做。

我会使用 CoreLocation 框架并依赖 GPS 定位。这里有大量的示例代码以及 WWDC10 视频,所以请继续查找。

CoreMotion would not help you much, because it is an abstraction of the device's accelerometer and the gyroscope. You could measure acceleration and deceleration and computing the speed from basic physics, but I would not do so.

I would use the CoreLocation frameworkd and rely on GPS positioning. There is a ton of sample code out there and a WWDC10 video as well, so go ahead and look it up.

超可爱的懒熊 2024-11-07 14:10:41

CLLocation类中使用CLLocationManager和speed属性

- (void) locationManager:(CLLocationManager *)manager 
     didUpdateToLocation:(CLLocation *)newLocation 
            fromLocation:(CLLocation *)oldLocation{

    NSLog("[Location Updated] \n Speed: %.2fm/s (%.1fkm/h)", newLocation.speed, newLocation.speed*3600/1000);

}

Use CLLocationManager and speed property in CLLocation class

- (void) locationManager:(CLLocationManager *)manager 
     didUpdateToLocation:(CLLocation *)newLocation 
            fromLocation:(CLLocation *)oldLocation{

    NSLog("[Location Updated] \n Speed: %.2fm/s (%.1fkm/h)", newLocation.speed, newLocation.speed*3600/1000);

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文