featureCollection<T extends Geometry> abstract method

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

Parses a feature collection 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

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