I have a google maps v2 in my android application and some markers on it. When user click one of these markers, a title popup comes. How can I show these ti
Something like that:
googleMap.addMarker(new MarkerOptions() .position(new LatLng(latitude, longitude)) .title("Your position")).showInfoWindow();