GeoJSONMultiPoint constructor

GeoJSONMultiPoint(
  1. List<List<double>> coordinates
)

Constructs a GeoJSONMultiPoint from the provided list of coordinates.

Implementation

GeoJSONMultiPoint(this.coordinates)
    : assert(
          coordinates.isNotEmpty,
          'The coordinates is List<List<double>>. '
          'There MUST be one or more elements');