removeAnnotationManagerById method

Future<void> removeAnnotationManagerById(
  1. String id
)

Remove an AnnotationManager with the specified id and all the annotation created by it.

Implementation

Future<void> removeAnnotationManagerById(String id) async {
  return _mapboxMapsPlatform.removeAnnotationManager(id);
}