我正在使用谷歌地图来获取方向。问题在于,无论我在谷歌地图应用程序上搜索的最后一种方向是什么,这些方向都会出现。
例如,如果我最后使用谷歌地图获取步行路线,当我使用我的应用程序时,路线将自动搜索步行路线。
我想让用户能够选择他们的方向类型。
这是一个代码片段:
String directions = "http://maps.google.com/maps?saddr=" + myLocationString + "&daddr=" + officeLocationString;
// Create Google Maps intent from current location to target location
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(directions));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
fcontext.startActivity(intent);