Interface IFeature

interface IFeature {
    getGeometry?(): ISimpleGeometry;
    getId?(): number;
    getProperties?(): any;
    setProperties?(properties: Record<string, unknown>): any;
}

Hierarchy (view full)

Methods