How to remove single marker using Google Maps V2? [duplicate]

After adding the marker it is possible to obtain its reference:

Marker marker = map.addMarker(..);

The Marker class has a remove method:


I got the same problem, so to fix it I'm doing

mMap = super.getMap();
map.clear();