I am using the below code to draw a marker on Google Maps in a android navigation app.
Marker marker = mMap.addMarker(
new MarkerOptions().position(current)
.anchor(0.5f, 0.3f)
.icon(BitmapDescriptorFactory.fromResource(
R.drawable.navigation_marker)));
This marker appears successfully, but the default small-sized marker does not get removed. So, eventually I have two markers at the same time. Can you please help on how to remove the default marker?