如何在Android中的Google地图中找到从当前位置到给定位置的路线

时间:2012-10-31 05:46:53

标签: android google-maps overlay android-mapview draw

  

可能重复:
  Google Maps output=kml broken?
  Why retrieving Google Directions for Android using KML data is not working anymore?

我刚刚开始使用Google地图,刚开始使用google地图我现在在Overlay上找到当前位置,我正在尝试如何在Google地图中找到从当前位置到指定位置的路线,他们也会在地图中的地图覆盖android,我读了很多文章,但我确实得到了好的,如果有人有好的教程请与我分享或有很好的源代码。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码直接调用内置的Google地图应用程序。

  String uri = "http://maps.google.com/maps?f=d&hl=en&saddr="+curretnlatitude+","+currentlongitude+"&daddr="+destlocation.getLatitude()+","+destlocation.getLongitude();
  Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));
  intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
  startActivity(intent);