marker.js 3 Documentation
    Preparing search index...

    Interface PolygonMarkerState

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

    interface PolygonMarkerState {
        notes?: string;
        opacity?: number;
        points: IPoint[];
        strokeColor?: string;
        strokeDasharray?: string;
        strokeWidth?: number;
        typeName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    notes?: string

    Additional information about the marker.

    opacity?: number

    Marker's opacity.

    points: IPoint[]

    Polygon points.

    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.