marker.js for React Native Documentation
    Preparing search index...

    Represents marker's state used to save and restore state.

    The state can then be serialized and stored for future use like to continue annotation in the future, display it in a viewer or render as a static image.

    interface MarkerBaseState {
        "[markerIdSymbol]"?: string;
        notes?: string;
        opacity?: number;
        strokeColor?: string;
        strokeDasharray?: string;
        strokeWidth?: number;
        typeName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    "[markerIdSymbol]"?: string

    Internal unique marker ID. This ID is used to identify markers in the annotation when updating, etc.

    notes?: string

    Additional information about the marker.

    opacity?: number

    Marker's opacity.

    strokeColor?: string

    Marker's stroke (outline) color.

    strokeDasharray?: string

    Marker's stroke (outline) dash array.

    strokeWidth?: number

    Marker's stroke (outline) width.

    typeName: string

    Marker's type name.