Interface KeplerFeatureShapeExperimental

The { attributes, geometry } shape every Kepler projection consumes.

interface KeplerFeatureShape {
    attributes: Readonly<Record<string, unknown>>;
    geometry?: unknown;
}

Properties

attributes: Readonly<Record<string, unknown>>
geometry?: unknown