0

I have created a map view application and overlay some images on the map view. While clicking a button, all the images should disappear. How to do this?..Please help

indira
  • 6,569
  • 18
  • 65
  • 80

1 Answers1

0

Got it.

listOfOverlays = mapView.getOverlays();
listOfOverlays.clear();
mapView.invalidate();
indira
  • 6,569
  • 18
  • 65
  • 80