Android 谷歌地图 API 获取路线编程

发布于 2024-11-19 08:16:11 字数 444 浏览 1 评论 0原文


我是 Android 谷歌地图 API 的新手。我正在从这个 TUT 中学习它: http://mobiforge.com/developing/story /using-google-maps-android 但没有提到获取两点之间的方向。 http:// 中是否有 API 可以执行此任务code.google.com/android/add-ons/google-apis/reference/index.html

提前致谢!

I am new to Android google maps APIs. I am learning it from this TUT : http://mobiforge.com/developing/story/using-google-maps-android but there isn't any mention of getting the direction between 2 points. Is there any APIs can do this task in http://code.google.com/android/add-ons/google-apis/reference/index.html ?

Thank in advance !

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

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

发布评论

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

评论(2

-残月青衣踏尘吟 2024-11-26 08:16:11

Google 地图 API 不提供任何路由功能。您可以使用意图来触发谷歌导航器(假设它在您的设备上)或谷歌地图版本(如 Hwa Rang 提到的)

有一些教程可以在 API 之外执行此操作,但请注意,谷歌禁止实现转向通过转弯导航,显然简单的路线就可以了。

如何向 Google 地图添加路线

Google maps API does not provide any routing capabilities. You can use an intent to fire the google navigator (assuming it's on your device) or the the google maps version (as mentioned by Hwa Rang)

There are some tutorials to do this outside of the API, but be advised the google prohibits implementing turn by turn navigation, apparently simple routing is ok though.

How to add routing to google maps

等数载,海棠开 2024-11-26 08:16:11

您可以使用 Google 地图应用程序。

Intent i = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=" + saddr + "&daddr=" + daddr));

There is an intent to the Google Maps app you can use.

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