ParseCoordsListList typedef

ParseCoordsListList = Iterable<Iterable<Iterable<num>>> Function(String text)

A function to parse a list of a list of coordinate values from text.

Such values can be used to create for example a list of rings (or closed liner strings) for a polygon.

Throws FormatException if cannot parse.

Implementation

typedef ParseCoordsListList = Iterable<Iterable<Iterable<num>>> Function(
  String text,
);