我想使用2个停止点的意图在位智地图中导航。 有可能吗?
我尝试使用以下代码进行位智导航。
try {
Uri wazeIntentUri = Uri.parse("https://waze.com/ul?q=" + mDestination + "&navigate=yes");
Intent wazeintent = new Intent(Intent.ACTION_VIEW, wazeIntentUri);
startActivity(wazeintent);
} catch (ActivityNotFoundException ex) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=com.waze&hl=en"));
startActivity(intent);
}
此代码仅适用于通过目的地点。但是我想在来源和目的地之间添加停止点。