谷歌地图驾驶导航有官方API吗?

发布于 2024-11-16 18:23:05 字数 303 浏览 2 评论 0原文

我发现 Google 支持最新 Android 上的驾驶导航。 http://www.google.com/mobile/navigation/index.html

但是,我找不到任何类型的 API 集来提供这些类型的功能。有导航支持API吗?或者还没有发布?

我不明白为什么它不包含在姜面包版本中。他们表示Nexus S已经支持驾驶导航。

您有关于这个问题的信息吗?请告诉我。谢谢。

I've found that on Google support driving navigation on latest Android. http://www.google.com/mobile/navigation/index.html

But, I can't find any kinds of API set to provide those kinds of functions. Is there navigation support API? or isn't it released yet?

I can't understand why it's not included on Ginger bread version. They said that Nexus S already support Driving navigation.

Do you have any information about this issue? Please let me know. Thanks.

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

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

发布评论

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

评论(1

仲春光 2024-11-23 18:23:05

您是否正在尝试将意图发送到导航应用程序以导航到某个位置?显然它不受“官方”支持,但是以下是告诉导航应用程序导航到某个位置的方法。

String url = "google.navigation:q=" + lat + ","
            + lng;
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);

Are you trying to send intents to the navigation app to navigate to a location? Apparently it is not "officially" supported, however here is how you tell the navigation app to navigate to a location.

String url = "google.navigation:q=" + lat + ","
            + lng;
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文