parseMarkersToAnnotations method
Implementation
Future<List<mapbox.PointAnnotationOptions>> parseMarkersToAnnotations(
List<CustomMarker> markers,
) async {
return await Future.wait(
markers.map((e) => parseMarkerToMapbox(e)),
);
}
Future<List<mapbox.PointAnnotationOptions>> parseMarkersToAnnotations(
List<CustomMarker> markers,
) async {
return await Future.wait(
markers.map((e) => parseMarkerToMapbox(e)),
);
}