XMapTiledProviderBaseTileToPtvMercatorAtZoom Method |
Converts the tile position to PTV Mercator coordinates respecting the zoom factor.
Namespace:
Ptv.XServer.Controls.Map.TileProviders
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax protected void TileToPtvMercatorAtZoom(
int tileX,
int tileY,
int zoom,
out double xMin,
out double yMin,
out double xMax,
out double yMax
)
Protected Sub TileToPtvMercatorAtZoom (
tileX As Integer,
tileY As Integer,
zoom As Integer,
<OutAttribute> ByRef xMin As Double,
<OutAttribute> ByRef yMin As Double,
<OutAttribute> ByRef xMax As Double,
<OutAttribute> ByRef yMax As Double
)
protected:
void TileToPtvMercatorAtZoom(
int tileX,
int tileY,
int zoom,
[OutAttribute] double% xMin,
[OutAttribute] double% yMin,
[OutAttribute] double% xMax,
[OutAttribute] double% yMax
)
member TileToPtvMercatorAtZoom :
tileX : int *
tileY : int *
zoom : int *
xMin : float byref *
yMin : float byref *
xMax : float byref *
yMax : float byref -> unit
Parameters
- tileX
- Type: SystemInt32
X position of the tile. - tileY
- Type: SystemInt32
Y position of the tile. - zoom
- Type: SystemInt32
Zoom factor of the tile. - xMin
- Type: SystemDouble
Minimum x value of the returned map rectangle. - yMin
- Type: SystemDouble
Minimum y value of the returned map rectangle. - xMax
- Type: SystemDouble
Maximum x value of the returned map rectangle. - yMax
- Type: SystemDouble
Maximum y value of the returned map rectangle.
See Also