When i was trying to display multiple titles(like hello1 and hello2 in code) on google map it shows last title(hello2) only.
Here is my code:
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.addMarker(new MarkerOptions()
.position(new LatLng(40.444310, -75.858923))
.title("Hello1"))
.showInfoWindow();
mMap.addMarker(new MarkerOptions()
.position(new LatLng(40.303626, -75.592905))
.title("Hello2"))
.showInfoWindow();