I am adding markers to my MapWidget using following code snippet:

private void updateCenter(LatLng center) {
    MarkerOptions options = MarkerOptions.newInstance();
    options.setPosition(center);
    Marker markerBasic = Marker.newInstance(options);
    markerBasic.setMap(mapWidget);
}

But I am not sure how to remove a marker without redrawing/re-instantiating 
the Map.

Please provide GWT specific answers only.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to