如何在mapview中打开谷歌获取方向?

时间:2011-11-24 13:55:27

标签: android android-intent uri android-mapview

创建Android应用以获取源和目标之间的路线(例如google map- getDirection)地址如下

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?saddr=12.84281852,80.22529753&daddr=13.00355419,80.200881958"));
              startActivity(intent);

但是我的源地址和目标地址经常会改变。所以每当位置发生变化时我就无法使用startActivity。

所以任何人都可以建议我如何实现这一点,而不使用startActivity或如何在mapview中显示生成的地图。这样mapview将显示source和dest之间的方向。参数更改时,应更新地址和mapview。

如何做到这一点,我的地图视图会有行车路线?

0 个答案:

没有答案