Skip to content

WmtsRowColumnRange

Namespace: ThinkGeo.Core

Describes the valid tile column and row indices for a WMTS tile matrix.

public class WmtsRowColumnRange

Inheritance ObjectWmtsRowColumnRange

Properties

MinTileRow

Gets the lowest row index available.

public double MinTileRow { get; }

Property Value

Double

MaxTileRow

Gets the highest row index available.

public double MaxTileRow { get; }

Property Value

Double

MinTileColumn

Gets the lowest column index available.

public double MinTileColumn { get; }

Property Value

Double

MaxTileColumn

Gets the highest column index available.

public double MaxTileColumn { get; }

Property Value

Double

Id

Gets the identifier for the tile matrix to which this range applies.

public string Id { get; }

Property Value

String

Constructors

WmtsRowColumnRange(String, Double, Double, Double, Double)

Initializes a new instance of the WmtsRowColumnRange class.

public WmtsRowColumnRange(string id, double minTileRow, double maxTileRow, double minTileColumn, double maxTileColumn)

Parameters

id String
Tile matrix identifier.

minTileRow Double
Lowest row index.

maxTileRow Double
Highest row index.

minTileColumn Double
Lowest column index.

maxTileColumn Double
Highest column index.