Tile Constructor (CartographicExtent, Int32, Int32, Int16, Object) |
Initializes a
Tile with the provided values.
Namespace:
AGI.Foundation.Graphics.Advanced
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Tile(
CartographicExtent extent,
int width,
int height,
short children,
Object data
)
Public Sub New (
extent As CartographicExtent,
width As Integer,
height As Integer,
children As Short,
data As Object
)
public:
Tile(
CartographicExtent^ extent,
int width,
int height,
short children,
Object^ data
)
new :
extent : CartographicExtent *
width : int *
height : int *
children : int16 *
data : Object -> Tile
Parameters
- extent
- Type: AGI.Foundation.CoordinatesCartographicExtent
The extent in radians. - width
- Type: SystemInt32
Width of the tile in pixels. This number must be between 1 and 512. - height
- Type: SystemInt32
Height of the tile in pixels. This number must be between 1 and 512. - children
- Type: SystemInt16
Number of child tiles. Specify 0 for a leaf tile. - data
- Type: SystemObject
Data specific to the tiler.
See Also