Project:
|
TCRS : Public abstract Class
A TCRS is a class that combines a traditional GIS CRS, such as EPSG:4326, with a set of defined-scale / defined resolution-per-pixel "zoom" levels, numbered by integers starting at 0 for the smallest scale and ranging up by increments of 1 to some defined maximum number.<br/><br/>A TCRS also has a defined origin property for the zoom / grid levels, as well as a defined bounds property for the "area of use".<br/><br/>Each TCRS has a set of nested/child coordinate (reference) systems, each of which having axes whose name, orientation and limits (min, max) are defined properties of the coordinate system. These coordinate systems are known as:<br/><br/><ul>
<li>pcrs</li><li>gcrs</li><li>map</li><li>tilematrix</li><li>tile</li><li>tcrs</li></ul> <br/>In addition to the TCRS.origin, TCRS.bounds and TCRS.resolutions[] properties, each coordinate system above is the case-sensitive name of a complex (object valued) property in the TCRS.crs interface property.<br/><br/>For example TCRS.crs.pcrs is the name of a property whose value is an object like this:<br/>{ <br/> horizontal: {name: "...", min: "...", max: "..."}, <br/> vertical: {name: "...", min: "...", max: "..."}, <br/> bounds: #lt;L.Bounds#gt;<br/>}<br/><br/>
|