Creates and initializes an instance of TileMatrix.
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 TileMatrix(
string identifier,
double scaleDenominator,
double topLeftCornerX,
double topLeftCornerY,
int matrixWidth,
int matrixHeight
)
Public Sub New (
identifier As String,
scaleDenominator As Double,
topLeftCornerX As Double,
topLeftCornerY As Double,
matrixWidth As Integer,
matrixHeight As Integer
)
public:
TileMatrix(
String^ identifier,
double scaleDenominator,
double topLeftCornerX,
double topLeftCornerY,
int matrixWidth,
int matrixHeight
)
new :
identifier : string *
scaleDenominator : float *
topLeftCornerX : float *
topLeftCornerY : float *
matrixWidth : int *
matrixHeight : int -> TileMatrix
Parameters
- identifier
- Type: SystemString
The identifier of the matrix set. - scaleDenominator
- Type: SystemDouble
The scale denominator of the matrix set. - topLeftCornerX
- Type: SystemDouble
The x-coordinate of the top left corner. - topLeftCornerY
- Type: SystemDouble
The y-coordinate of the top left corner. - matrixWidth
- Type: SystemInt32
The matrix width. - matrixHeight
- Type: SystemInt32
The matrix height.
See Also