ArcObjects Library Reference  (GlobeCore)    

IGlobeServer.GetTile Method

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

[Visual Basic 6.0]
Function GetTile(
    ByVal LayerID As Long, _
    ByVal face As Long, _
    ByVal level As Long, _
    ByVal row As Long, _
    ByVal column As Long _
)() As Byte
[Visual Basic .NET]
Public Function GetTile ( _
    ByVal LayerID As Integer, _
    ByVal face As Integer, _
    ByVal level As Integer, _
    ByVal row As Integer, _
    ByVal column As Integer _
) As Byte[]
[C#]
public Byte[] GetTile (
    int LayerID,
    int face,
    int level,
    int row,
    int column
);
[Java]
public Byte[] getTile (
    int LayerID,
    int face,
    int level,
    int row,
    int column
)
throws
    IOException,
    AutomationException
[C++]
HRESULT GetTile(
  long LayerID,
  long face,
  long level,
  long row,
  long column,
  Data* Data
);
[C++]

Parameters

LayerID [in]

  LayerID is a parameter of type long

face [in]

  face is a parameter of type long

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

Data [out, retval]

  Data is a parameter of type

Product Availability

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

See Also

IGlobeServer Interface