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)[];
};
}
properties: Record<
string,
number[]
| boolean
| number
| EasingFunctionName[],
> & {
"@autoplay"?: boolean;
"@delay"?: number;
"@delta"?: number[];
"@duration"?: number;
"@easing"?: EasingFunctionName[];
"@iterations"?: number;
altitude?: (number | null)[];
};
}
Was this helpful?
Represents a GeoJSON Feature that can be animated with keyframes. Extends the standard GeoJSON Feature with animation-specific properties.