Options that can be passed into the various methods of data/FeatureSource!FeatureSource that retrieve features.

interface FeatureReadOptions {
    cancelToken?: CancelToken;
    outFields?: string[];
    returnGeometry?: boolean;
}

Properties

cancelToken?: CancelToken

An optional cancel token from a support/Cancellable!Cancellable that can be used to cancel the read operation.

outFields?: string[]

Fields that should be returned for each feature.

returnGeometry?: boolean

Whether geometry for features should be returned.