Tile information, returned from the WMTS OGC Web Service. The tileInfo will contain the spatial reference of the layer. TileInfo is the same json representation as the ArcGIS Map/Image service tileInfo except that it may contain a levelValue on the lod objects that should be used instead of the level in the templateUrl.

See https://developers.arcgis.com/web-map-specification/objects/tileInfo/ https://developers.arcgis.com/web-scene-specification/objects/tileInfo/.

interface TileInfoJson {
    cols?: number;
    compressionQuality?: number;
    dpi?: number;
    format?: string;
    lods?: {
        level?: number;
        levelValue?: string;
        resolution?: number;
        scale?: number;
    }[];
    origin?: PointJson;
    rows?: number;
    spatialReference?: SpatialReferenceJson;
}

Properties

cols?: number

Requested tile's column.

compressionQuality?: number

Compression quality of the tile.

dpi?: number

The dpi of the tiling scheme.

format?: string

Image format of the cached tiles.

lods?: {
    level?: number;
    levelValue?: string;
    resolution?: number;
    scale?: number;
}[]

Type declaration

  • Optionallevel?: number

    ID for each level.

  • OptionallevelValue?: string

    String to be used when constructing URL to access a tile from this LOD.

  • Optionalresolution?: number

    Resolution in map units of each pixel in a tile for each level.

  • Optionalscale?: number

    Scale for each level.

origin?: PointJson

The tiling scheme origin.

rows?: number

Requested tile's row.

spatialReference?: SpatialReferenceJson

The spatial reference of the tiling schema.