Google android maps api v2 Show Marker Title Always Google android maps api v2 Show Marker Title Always android android

Google android maps api v2 Show Marker Title Always


Something like that:

googleMap.addMarker(new MarkerOptions()    .position(new LatLng(latitude, longitude))    .title("Your position")).showInfoWindow();


You can do this:

Marker marker = mMap.addMarker(new MarkerOptions().position(currentPosition).title("Your text"));marker.showInfoWindow();