android intent to navigate to multiple destination

2019-03-31 03:42发布

is there any way to navigate to multiple destinations? like you can do on google maps?

2条回答
Emotional °昔
2楼-- · 2019-03-31 04:16

There are no documented and supported Intents for use with Google Navigation, sorry.

查看更多
做自己的国王
3楼-- · 2019-03-31 04:22

As you probably know you can use the following, undocumented, way to navigate to a destination

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("google.navigation:q=" + mLatitude + "," + mLongitude)));

but, as far as I know, navigation with intermediate points is not possible at the moment.

查看更多
登录 后发表回答