I am able to launch Google Maps intent with
Uri location = Uri.parse("geo:0,0");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);
startActivity(mapIntent);
How can I launch the intent in Driving mode (with no destination, unless previously set in Maps) so that it looks like on the screenshot below?
I tried setting mode=driving
but that just opens the regular map with the "driving" tab selected:
Uri location = Uri.parse("geo:0,0?mode=driving");