Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
Sorry for my english.
This code is working fine, however, its opening multiple routes. If I click on routes its going on map.
My question is there any way by which I directly jump to map without user interaction.