Click or drag to resize

ITileMatrix Interface

Defines a tile matrix as it is basically part of the WMTS service specification, modified to provide all necessary parameters for the WmtsMapService implementation to work properly.

Namespace:  Ptv.XServer.Controls.Map.Layers.WmtsLayer
Assembly:  Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax
public interface ITileMatrix

The ITileMatrix type exposes the following members.

Properties
  NameDescription
Public propertyBottomRightCorner
The bottom right coordinate of the area covered by the tiles of the matrix set (with bottom < top).
Public propertyIdentifier
Tile matrix identifier; value of the {z} URL template parameter.
Public propertyMatrixHeight
Number of vertical tiles.
Public propertyMatrixMaxX
Optionally limits the number of tiles by specifying a maximum value for the {x} URL template parameter.
Public propertyMatrixMaxY
Optionally limits the number of tiles by specifying a maximum value for the {y} URL template parameter.
Public propertyMatrixMinX
Optionally limits the number of tiles by specifying a minimum value for the {x} URL template parameter.
Public propertyMatrixMinY
Optionally limits the number of tiles by specifying a minimum value for the {y} URL template parameter.
Public propertyMatrixWidth
Number of horizontal tiles.
Public propertyTileHeight
Pixel height of a tile returned by the WMTS service.
Public propertyTileWidth
Pixel width of a tile returned by the WMTS service.
Public propertyTopLeftCorner
The top left coordinate of the area covered by the tiles of the matrix set (with top > bottom).
Top
Extension Methods
  NameDescription
Public Extension MethodMaxX
Determines the maximum value for the x-coordinate of a tile.
(Defined by WmtsMapServiceExtensions.)
Public Extension MethodMaxY
Determines the maximum value for the y-coordinate of a tile.
(Defined by WmtsMapServiceExtensions.)
Public Extension MethodMinX
Determines the minimum value for the x-coordinate of a tile.
(Defined by WmtsMapServiceExtensions.)
Public Extension MethodMinY
Determines the minimum value for the y-coordinate of a tile.
(Defined by WmtsMapServiceExtensions.)
Top
See Also