| QuantizedMeshTerrainProviderLatitudeToYTileCoordinate Method  | 
 
            Gets the Y tile coordinate for a given latitude.
            
 
    Namespace: 
   AGI.Foundation.Terrain
    Assembly:
   AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
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: SystemInt32
 The zoom level.
- latitude
- Type: SystemDouble
 The latitude.
Return Value
Type: 
Int32The Y tile coordinate of the tile that contains that latitude.
 Exceptions
Exceptions Remarks
Remarks
            The Y coordinate increases from south to north.
            That is, the origin is in the south-west.
            
 See Also
See Also