Interface DetailFeatureLike

interface DetailFeatureLike {
    attributes?: Readonly<Record<string, unknown>>;
    geometry?: unknown;
    id?: FeatureId;
    properties?: Readonly<Record<string, unknown>>;
    sourceId?: string;
    sourceLayer?: string;
}

Properties

attributes?: Readonly<Record<string, unknown>>
geometry?: unknown
properties?: Readonly<Record<string, unknown>>
sourceId?: string
sourceLayer?: string