android intent to navigate to multiple destination

2019-03-31 03:48发布

问题:

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

回答1:

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.



回答2:

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