I have a map with lots of points on it added to an ItemizedOverlay.
OverlayItem overlayItem = new OverlayItem(theGeoPoint, title, description);
itemizedOverlay.addOverlay(overlayItem);
mapOverlays.add(itemizedOverlay);
Is there a way to remove a specific point from the itemizedOverlay?
Example, say I've added lots of point at different latitudes/longitudes and I wish to remove a point at latitude: 32.3121212 and longitude: 33.1230912, which was added earlier.
How can I remove JUST that point??
I really need this so I hope someone can help.
Thanks.
Full story scenario (in case you have a different idea on how to solve this): Adding events to a map that are caught from a database. Now when events are deleted from the database, I wish to sync the map and remove just those which were deleted. (please don't suggest I re-download all points excluding the deleted ones even though I've thought of that but it isn't an option concerning what I want to do. :p)
Create your MapOverlay with GeoPoints Array and override the draw function:
(I didn't test above class)
and then in your MapActivity class you can just:
Try google some GoogleMap tutorials and maybe you will find more solutions.