How to disappear images on a map view?
I have created a map view application and overlay some images on the map v开发者_运维问答iew. While clicking a button, all the images should disappear. How to do this?..Please help
Got it.
listOfOverlays = mapView.getOverlays();
listOfOverlays.clear();
mapView.invalidate();
精彩评论