Photo Sphere Viewer
    Preparing search index...

    Interface MarkerAbstract

    Base class for all markers

    interface Marker {
        config: ParsedMarkerConfig;
        definition: any;
        element: any;
        plugin: MarkersPlugin;
        type: MarkerType;
        viewer: Viewer;
        get data(): any;
        get domElement(): HTMLElement | SVGElement;
        get id(): string;
        get threeElement(): Object3D;
        get video(): HTMLVideoElement;
        is3d(): boolean;
        isCss3d(): boolean;
        isNormal(): boolean;
        isPoly(): boolean;
        isSvg(): boolean;
    }
    Index

    Properties

    definition: any

    The final description of the marker. Either text content, image, url, SVG attributes, etc.

    element: any
    viewer: Viewer

    Accessors

    Methods