toLatLngMany method

Iterable<LatLng> toLatLngMany(
  1. Iterable<Offset> positions
)

Converts many XY coordinates to LatLng.

Implementation

Iterable<LatLng> toLatLngMany(Iterable<Offset> positions) {
  return positions.map((e) => toLatLng(e));
}