createPointAnnotationManager method

Future<PointAnnotationManager> createPointAnnotationManager({
  1. String? id,
  2. String? below,
})

Creates a PointAnnotationManager for point annotations.

Implementation

Future<PointAnnotationManager> createPointAnnotationManager({
  String? id,
  String? below,
}) async {
  final impl = await _impl.createPointAnnotationManager(id: id, below: below);
  return PointAnnotationManager(impl);
}