I am using google map in my app and i want to show route between two points.below are the latitudes and longitude.
LatLng pune = new LatLng(18.6099, 73.8171);
map.addMarker(new MarkerOptions().position(pune).title("Marker in pune"));
map.moveCamera(CameraUpdateFactory.newLatLng(pune));
mo.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
LatLng mumbai = new LatLng(19.0829, 72.8831);
map.addMarker(new MarkerOptions().position(mumbai).title("Marker in mumbai"));
map.moveCamera(CameraUpdateFactory.newLatLng(mumbai));
mo.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
Please help