0
I have the following method for creating the Marker in the App:
private void createMarker()
{
MarkerOptions mo = new MarkerOptions();
LatLng latLng = new LatLng(mObjetoResumo.getLatitude(), mObjetoResumo.getLongitude());
mo.position(latLng);
mo.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
final Marker m = mMap.addMarker(mo);
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, Constants.MAX_ZOOM));
m.showInfoWindow();
}
What do I call the showInfoWindow
Pin information is displayed smoothly, my question and how do I automatically display the route button?
This, appears only after the user clicks on the Marker
.
I would like to know how to display these buttons without the need for another click by the user?