createPointAnnotationManager method
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);
}