I'm trying to remove all my itemizedoverlay from my map, but I can't and I don't know why. I've read many tutorials and in all of them there is the following solution:
itemizedoverlay.clear();
mMapView.invalidate();
But it doesn't work!
I'm trying to do this in an AsyncTask in which first of all I do the (in the onPreExecute() ):
itemizedoverlay.clear();
mMapView.invalidate();
then I get all my geopoint from my server, I create a list of myitemizedoverlay object (in the doInBackground() ) and I put them in the map like this (in the onPostExecute() ):
for (int i = 0; i < myListOfOverlayItem.size(); i++) {
itemizedoverlay.addOverlay(myListOfOverlayItem.get(i));
}
overlays.add(itemizedoverlay);
Why my code doesn't update my map? :-/
This is the code of the clear:
public void clear(){
this.m_overlays.clear();
setLastFocusedIndex(-1);
populate();
}
Thanks
doInBackground()create the overlay, inonPostExecute()executeclear(), then add the overlay, then callinvalidate. Check the documentation ifonPreExecute()runs on the UI thread or on a background thread. I assume it is not safe to invalidate a map view if it runs on a background thread. – JJD Jul 18 '12 at 18:50