maplibregl-recorder
    Preparing search index...

    Type Alias Recording

    The complete recording, as produced by Recorder.toJSON.

    type Recording = {
        container: { height: number; width: number } | null;
        createdAt: string;
        env: RecordingEnvironment;
        maplibre: string;
        maxDelay: number;
        ops: RecordedOp[];
        recorder: string;
        style: SerializedValue;
    }
    Index
    container: { height: number; width: number } | null

    Size of the map container at recording time.

    createdAt: string

    ISO timestamp of the export.

    Browser environment the recording was made in.

    maplibre: string

    Version of MapLibre GL JS that was recorded.

    maxDelay: number
    ops: RecordedOp[]

    The recorded timeline.

    recorder: string

    Version of the recorder that produced this recording.

    Inlined style, when inlineStyle was enabled.