This document is archived and information here might be outdated. Recommended version. |
Gets a tile for a given tile location from a given map; returns expiration date/time, if available; also, returns possible reason why tile fetching has failed.
[Visual Basic .NET] Public Sub GetMapTileEx ( _ ByVal MapName As String, _ ByVal Level As Integer, _ ByVal Row As Integer, _ ByVal Column As Integer, _ ByVal CacheFormat As Integer, _ ByRef Data As Byte[]&, _ ByRef pExpiryDateTime As Double, _ ByRef pTileState As esriTileState _ )
[C#] public void GetMapTileEx ( string MapName, int Level, int Row, int Column, int CacheFormat, ref Byte[]& Data, ref double pExpiryDateTime, ref esriTileState pTileState );
[C++]
HRESULT GetMapTileEx(
BSTR MapName,
long Level,
long Row,
long Column,
long CacheFormat,
SAFEARRAY(System.Byte)* Data,
System.Double* pExpiryDateTime,
esriTileState* pTileState
);
[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]
Data is a parameter of type SAFEARRAY(unsigned char)* pExpiryDateTime [out]
pExpiryDateTime is a parameter of type double* pTileState [out]
pTileState is a parameter of type esriTileState*