Table of Contents

Class RasterTile

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

This class represents a NativeImageTile, which is defined as scale, RectangleBox and a byte array for its tileView bitmap.

public class RasterTile : Tile, IDisposable
Inheritance
RasterTile
Implements
Inherited Members

Constructors

RasterTile()

This is the default constructor without passing any parameters. All its properties should be set via the properties.

public RasterTile()

RasterTile(GeoImage, int, long, long)

This is the constructor for Tile by passing image bitmap and the boundingBox and scale.

public RasterTile(GeoImage image, int zoom, long column, long row)

Parameters

image GeoImage
zoom int
column long
row long

Properties

Bitmap

This property is the Bitmap showing the tileView image.

public GeoImage Bitmap { get; set; }

Property Value

GeoImage

Methods

Dispose()

This method is targeting releasing or resetting unmanaged resources.

public void Dispose()

~RasterTile()

This method is the destructorof this class. Destructor cannot be called and only will be invoked automatically.

protected ~RasterTile()