Map for WinForms | ComponentOne
C1.FlexMap Namespace / ITileSource Interface / GetTile Method
The zoom level of the tile.
The row index of the tile.
The column index of the tile.
The uri of the tile.
The image of the tile. The uri is ignored if the tile image is returned.

In This Topic
    GetTile Method (ITileSource)
    In This Topic
    Gets the uri for the specified tile.
    Syntax
    'Declaration
     
    
    Sub GetTile( _
       ByVal level As Integer, _
       ByVal x As Integer, _
       ByVal y As Integer, _
       ByRef uri As String, _
       ByRef image As Object _
    ) 
    void GetTile( 
       int level,
       int x,
       int y,
       out string uri,
       out object image
    )

    Parameters

    level
    The zoom level of the tile.
    x
    The row index of the tile.
    y
    The column index of the tile.
    uri
    The uri of the tile.
    image
    The image of the tile. The uri is ignored if the tile image is returned.
    See Also