geoportal-access-lib
Version:
French Geoportal resources access library
15 lines (13 loc) • 590 B
JavaScript
/* eslint-disable no-unused-vars */
/**
* Object used to describe a layer extent on a Tile Matrix.
*
* @property {Number} minTileCol - minimum column index where tile can be found on the Tile matrix.
* @property {Number} maxTileCol - maximum column index where tile can be found on the Tile matrix.
* @property {Number} minTileRow - minimum row index where tile can be found on the Tile matrix.
* @property {Number} maxTileCol - maximum row index where tile can be found on the Tile matrix.
*
* @namespace
* @alias Gp.Services.Config.TileMatrixLimit
*/
var TileMatrixLimit = {};