geoportal-access-lib
Version:
French Geoportal resources access library
18 lines (16 loc) • 752 B
JavaScript
/* eslint-disable no-unused-vars */
/**
* Object used to describe a TileMatrix.
*
* @property {String} matrixId - matrix Identifier
* @property {Number} matrixHeight - Number of tiles from the top to the bottom of the matrix.
* @property {Number} matrixWidth - Number of tiles from the left to the right of the matrix.
* @property {Number} scaleDenominator - Scale denominator associated to that matrix.
* @property {Number} tileHeight - tile height in number of pixels
* @property {Number} tileWidth - tile width in number of pixels
* @property {Gp.Point} topLeftCorner - Top Left Corner Point of the matrix expressed in the tileMatrixSet coordinates system.
*
* @namespace
* @alias Gp.Services.Config.TileMatrix
*/
var TileMatrix = {};