removeAnnotation method
Removes an annotation from the spatial index.
Implementation
void removeAnnotation(String annotationId) {
_annotations.remove(annotationId);
_grid.remove(
AnnotationSpatialItem(annotationId: annotationId, bounds: Rect.zero).id,
);
_notifyChanged();
}