ParseCoordsListListList typedef

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

A function to parse a list of a list of a list of coordinates from text.

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

Throws FormatException if cannot parse.

Implementation

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