Interface DatasetItem<IdType>

An item from a Dataset.

interface DatasetItem<IdType> {
    attributes: {};
    geometry?: any;
    id: IdType;
}

Type Parameters

Properties

attributes: {}

The attributes of the item. Note this may only be a subset of attributes depending on the query options.

Type declaration

    geometry?: any

    Item geometry, if available

    id: IdType

    Unique id of the item

    Generated using TypeDoc