在我的android项目中,我想在Google地图上绘制路线。我有起点和终点的坐标。在这一点上,我得到km
- 来自Google网络服务的文件,其中包含跨越路线的分数。为了绘制路线的部分,我使用Overlay
类的实例。这个解决方案有效,但速度很慢。还有其他方法吗?可能是存在能力使用内置谷歌地图应用程序还是其他任何方式?
答案 0 :(得分:10)
是的,您可以通过以下目的使用内置的Google地图应用程序:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);
有关详细信息,请参阅this question
答案 1 :(得分:2)
这里有一个使用KML的教程: http://csie-tw.blogspot.com/2009/06/android-driving-direction-route-path.html
以及一些示例代码: How to draw a path on a map using kml file?
这看起来像是一些过于复杂的艰苦工作 - 谷歌应该为此提供API。