featureSeries<T extends Geometry> abstract method

BoundedSeries<Feature<T>> featureSeries<T extends Geometry>(
  1. dynamic data, {
  2. Range? range,
})

Parses a series of features from a data object.

An optional range specificies start offset and optional limit count specifying a feature range to be returned on a collection.

Throws FormatException if parsing fails.

Implementation

BoundedSeries<Feature<T>> featureSeries<T extends Geometry>(
  dynamic data, {
  Range? range,
});