ArcObjects Library Reference (Carto)  

ITiledMapServer2.GetMapTileEx Method

Gets a tile for a given tile location from a given map.

[Visual Basic .NET]
Public Function GetMapTileEx ( _
    ByVal MapName As String, _
    ByVal Level As Integer, _
    ByVal Row As Integer, _
    ByVal Column As Integer, _
    ByVal CacheFormat As Integer _
) As Byte[]
[C#]
public Byte[] GetMapTileEx (
    string MapName,
    int Level,
    int Row,
    int Column,
    int CacheFormat
);
[C++]
HRESULT GetMapTileEx(
  BSTR MapName,
  long Level,
  long Row,
  long Column,
  long CacheFormat,
  Data* Data
);
[C++]

Parameters

MapName [in]   MapName is a parameter of type BSTR Level [in]   Level is a parameter of type long Row [in]   Row is a parameter of type long Column [in]   Column is a parameter of type long CacheFormat [in]   CacheFormat is a parameter of type long Data [out, retval]   Data is a parameter of type

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

This call gets the specified tile from a map service that has a single fused cache.

See Also

ITiledMapServer2 Interface