@inweb/viewer-visualize
    Preparing search index...

    Interface IImage

    Defines the markup image object of the viewpoint.

    interface IImage {
        height?: number;
        id?: string;
        position: IPoint;
        src: string;
        width?: number;
    }
    Index

    Properties

    height?: number

    Height of the image.

    id?: string

    Internal markup object identifier.

    position: IPoint

    Coordinates of the top-left point (position) of the image.

    src: string

    Image source as base64-encoded Data URL.

    width?: number

    Width of the image.