interface GeoreferenceJson {
    coefficients?: number[];
    controlPoints?: {
        x: number;
        y: number;
    }[];
    height?: number;
    spatialReference?: SpatialReferenceJson;
    width?: number;
}

Properties

coefficients?: number[]

An array of 8 coefficients representing the projective transformation..

controlPoints?: {
    x: number;
    y: number;
}[]

An array of 4 user defined control points placed on the media..

height?: number

Numeric value indicating the height of media in pixels.

spatialReference?: SpatialReferenceJson

Image format of the cached tiles.

width?: number

Numeric value indicating the width of media in pixels.