toAppleMapsAnnotationSet static method

Set<Annotation> toAppleMapsAnnotationSet(
  1. Set<Marker> markers
)

Implementation

static Set<appleMaps.Annotation> toAppleMapsAnnotationSet(
    Set<Marker> markers) {
  List<appleMaps.Annotation> _annotations = <appleMaps.Annotation>[];
  for (Marker marker in markers) {
    _annotations.add(appleMapsAnnotationFromMarker(marker));
  }
  return Set.from(_annotations);
}