On this page

Type Alias KeyframeableGeoJSONFeature

KeyframeableGeoJSONFeature: Feature<KeyframeableGeometry> & {
    properties: Record<
        string,
        number[]
        | boolean
        | number
        | EasingFunctionName[],
    > & {
        "@autoplay"?: boolean;
        "@delay"?: number;
        "@delta"?: number[];
        "@duration"?: number;
        "@easing"?: EasingFunctionName[];
        "@iterations"?: number;
        altitude?: (number | null)[];
    };
}

Represents a GeoJSON Feature that can be animated with keyframes. Extends the standard GeoJSON Feature with animation-specific properties.

Was this helpful?
SDK JS
Reference
KeyframeableGeoJSONFeature