android intent to navigate to multiple destinations?
is th开发者_开发技巧ere any way to navigate to multiple destinations? like you can do on google maps?
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.
There are no documented and supported Intents
for use with Google Navigation, sorry.
精彩评论