Interface TerraDrawSketchFeatureExperimental

GeoJSON-shaped feature as stored by terra-draw.

interface TerraDrawSketchFeature {
    geometry: Record<string, unknown>;
    id?: TerraDrawSketchFeatureId;
    properties?: Record<string, unknown>;
    type?: string;
}

Properties

geometry: Record<string, unknown>
properties?: Record<string, unknown>
type?: string