supervision-js
    Preparing search index...

    Interface BaseMarkerStyleOptions

    interface BaseMarkerStyleOptions {
        center?: DetectionStyleValue<Point | undefined, AnnotationStyleContext>;
        shape?: DetectionStyleValue<MarkerShape, AnnotationStyleContext>;
        size?: DetectionStyleValue<number, AnnotationStyleContext>;
        sizeSpace?: DetectionStyleValue<MarkerSizeSpace, AnnotationStyleContext>;
        rotation?: DetectionStyleValue<number | undefined, AnnotationStyleContext>;
        fill?: DetectionStyleValue<
            Partial<FillStyle>
            | null,
            AnnotationStyleContext,
        >;
        stroke?: DetectionStyleValue<
            Partial<StrokeStyle>
            | null,
            AnnotationStyleContext,
        >;
        shouldRender?: DetectionStylePredicate<AnnotationStyleContext>;
    }
    Index
    center?: DetectionStyleValue<Point | undefined, AnnotationStyleContext>

    Optional media-space anchor. The default is the detection-rect center.

    shape?: DetectionStyleValue<MarkerShape, AnnotationStyleContext>
    size?: DetectionStyleValue<number, AnnotationStyleContext>
    sizeSpace?: DetectionStyleValue<MarkerSizeSpace, AnnotationStyleContext>
    rotation?: DetectionStyleValue<number | undefined, AnnotationStyleContext>
    fill?: DetectionStyleValue<Partial<FillStyle> | null, AnnotationStyleContext>
    stroke?: DetectionStyleValue<
        Partial<StrokeStyle>
        | null,
        AnnotationStyleContext,
    >
    shouldRender?: DetectionStylePredicate<AnnotationStyleContext>