Defines the markup image object of the viewpoint.

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

Properties

height?: number

Deprecated. Use position2 instead. Height of the image.

id?: string

Internal markup object identifier.

position: IPoint

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

position2: IPoint

Coordinates of the bottom-right point (position) of the image.

src: string

Image source as base64-encoded Data URL.

width?: number

Deprecated. Use position2 instead. Width of the image.