ArcObjects Library Reference (Carto)  

ITiledMapServer2.GetTileImageInfo Method

Gets the cache tile image information for a given map.

[Visual Basic .NET]
Public Function GetTileImageInfo ( _
    ByVal MapName As String _
) As ITileImageInfo
[C#]
public ITileImageInfo GetTileImageInfo (
    string MapName
);
[C++]
HRESULT GetTileImageInfo(
  BSTR MapName,
  ITileImageInfo** ppCacheInfo
);
[C++]

Parameters

MapName [in]   MapName is a parameter of type BSTR ppCacheInfo [out, retval]

  ppCacheInfo is a parameter of type ITileImageInfo

Product Availability

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

Remarks

GetTileIMageInfo returns information describing the image format for the cached tiles. TileImageInfo has two main properties Format and Compression quality. Format can have values (PNG8, PNG24, PNG32 and JPEG). If the selected format is JPEG, then the compression quality can have a value from 0 to 100. The value of format must be used in constructing the url to the tile.

See Also

ITiledMapServer2 Interface