BasicFeatureSource<ItemType extends FeatureItem, ItemsType extends FeatureItems> class abstract

A basic feature source providing geospatial features.

This feature source has operations to get feature items by id or to get all items. The FeatureSource extends this with queryable access to items.

Implementers

Constructors

BasicFeatureSource()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

itemById(Object id) Future<ItemType>
Fetches a single feature by id from this source.
itemsAll({int? limit}) Future<ItemsType>
Fetches all features items from this source.
itemsAllPaged({int? limit}) Future<Paged<ItemsType>>
Fetches all features as paged sets from this source.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited