Interface IFeature

interface IFeature {
    getGeometry?(): ISimpleGeometry;
    getId?(): number;
    getProperties?(): IProperties;
    setProperties?(properties: IProperties): void;
}

Hierarchy (view full)

Methods