创建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。
如何做到这一点,我的地图视图会有行车路线?