QuantizedMeshTerrainProvider.LatitudeToYTileCoordinate Method |
Gets the Y tile coordinate for a given latitude.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic static int LatitudeToYTileCoordinate(
int level,
double latitude
)
Public Shared Function LatitudeToYTileCoordinate (
level As Integer,
latitude As Double
) As Integer
public:
static int LatitudeToYTileCoordinate(
int level,
double latitude
)
static member LatitudeToYTileCoordinate :
level : int *
latitude : float -> int
Parameters
- level
- Type: System.Int32
The zoom level. - latitude
- Type: System.Double
The latitude.
Return Value
Type:
Int32The Y tile coordinate of the tile that contains that latitude.
Exceptions
Remarks
The Y coordinate increases from south to north.
That is, the origin is in the south-west.
See Also