WmtsRowColumnRange¶
Namespace: ThinkGeo.Core
Describes the valid tile column and row indices for a WMTS tile matrix.
public class WmtsRowColumnRange
Inheritance Object → WmtsRowColumnRange
Properties¶
MinTileRow¶
Gets the lowest row index available.
public double MinTileRow { get; }
Property Value¶
MaxTileRow¶
Gets the highest row index available.
public double MaxTileRow { get; }
Property Value¶
MinTileColumn¶
Gets the lowest column index available.
public double MinTileColumn { get; }
Property Value¶
MaxTileColumn¶
Gets the highest column index available.
public double MaxTileColumn { get; }
Property Value¶
Id¶
Gets the identifier for the tile matrix to which this range applies.
public string Id { get; }
Property Value¶
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.