是否有适用于 iOS 的 Google 地图 API 可提供交通信息?

发布于 2024-12-26 02:42:00 字数 115 浏览 2 评论 0原文

我想知道是否有人有有关 Google Maps API 的文档,我只是在查找实时路况信息我想在我的 iOS 应用程序上实现它。

这样的API存在吗?

I would like to know if someone has got documentation about the Google Maps API, I'm only looking for the traffic live information I would like to implement it on my iOS application.

Does such an API exist?

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

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

发布评论

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

评论(1

想挽留 2025-01-02 02:42:00

我认为 Google 目前还没有提供独立的流量 API。然而,有几个选择。

  • 在 WebView 中渲染 Google 地图元素并使用 Google JavaScript API 启用流量层。这种方法的缺点是用户体验可能不如本机编程那么好。好处是减少编码。

http://code.google.com/apis/maps/documentation/javascript/

http://code.google.com/apis/maps/documentation/javascript/reference.html#TrafficLayer

  • 调用另一个流量提供商的 REST API 并覆盖在本机 iOS 地图组件之上。如果您收到 KML 响应,则通过代码可以非常简单地实现此叠加。我知道的两个是 MapQuest(是的,他们仍然存在!)和 Yahoo(尽管他们的 API 现在正在过渡)。

http://www.mapquestapi.com/traffic/

http://developer.yahoo.com/traffic/rest/V1/index.html

I don't think Google offers a standlone traffic API as of now. However there are a couple options.

  • Render the Google Maps element in a WebView and use the Google JavaScript API to enable the traffic layer. The downside of this approach is that the UX likely wont be as nice as native programming. The upside is less coding.

http://code.google.com/apis/maps/documentation/javascript/

http://code.google.com/apis/maps/documentation/javascript/reference.html#TrafficLayer

  • Call another traffic provider's REST API and overlay on top of the native iOS map component. This overlay is pretty straightforward through code if you get a KML response. The two I know of are MapQuest (yes, they are still around!) and Yahoo (though their API is in transition now).

http://www.mapquestapi.com/traffic/

http://developer.yahoo.com/traffic/rest/V1/index.html

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