MapTileSource Constructors

Definition

Overloads

MapTileSource()

Initializes a new instance of the MapTileSource class.

MapTileSource(MapTileDataSource)

Initializes a new instance of the MapTileSource class with the specified data source.

MapTileSource(MapTileDataSource, MapZoomLevelRange)

Initializes a new instance of the MapTileSource class with the specified data source and zoom level range.

MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)

Initializes a new instance of the MapTileSource class with the specified data source, zoom level range, and bounding rectangle.

MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)

Initializes a new instance of the MapTileSource class with the specified data source, zoom level range, bounding rectangle, and tile size.

MapTileSource()

MapTileSource(MapTileDataSource)

Initializes a new instance of the MapTileSource class with the specified data source.

 MapTileSource(MapTileDataSource const& dataSource);
public MapTileSource(MapTileDataSource dataSource);
function MapTileSource(dataSource)
Public Sub New (dataSource As MapTileDataSource)

Parameters

dataSource
MapTileDataSource

The data source to use for the tiles.

See also

Applies to

MapTileSource(MapTileDataSource, MapZoomLevelRange)

Initializes a new instance of the MapTileSource class with the specified data source and zoom level range.

 MapTileSource(MapTileDataSource const& dataSource, MapZoomLevelRange const& zoomLevelRange);
public MapTileSource(MapTileDataSource dataSource, MapZoomLevelRange zoomLevelRange);
function MapTileSource(dataSource, zoomLevelRange)
Public Sub New (dataSource As MapTileDataSource, zoomLevelRange As MapZoomLevelRange)

Parameters

dataSource
MapTileDataSource

The data source to use for the tiles.

zoomLevelRange
MapZoomLevelRange

The zoom level range for the tiles.

See also

Applies to

MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)

Initializes a new instance of the MapTileSource class with the specified data source, zoom level range, and bounding rectangle.

 MapTileSource(MapTileDataSource const& dataSource, MapZoomLevelRange const& zoomLevelRange, GeoboundingBox const& bounds);
public MapTileSource(MapTileDataSource dataSource, MapZoomLevelRange zoomLevelRange, GeoboundingBox bounds);
function MapTileSource(dataSource, zoomLevelRange, bounds)
Public Sub New (dataSource As MapTileDataSource, zoomLevelRange As MapZoomLevelRange, bounds As GeoboundingBox)

Parameters

dataSource
MapTileDataSource

The data source to use for the tiles.

zoomLevelRange
MapZoomLevelRange

The zoom level range for the tiles.

bounds
GeoboundingBox

The geographic area of tiles requested.

See also

Applies to

MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)

Initializes a new instance of the MapTileSource class with the specified data source, zoom level range, bounding rectangle, and tile size.

 MapTileSource(MapTileDataSource const& dataSource, MapZoomLevelRange const& zoomLevelRange, GeoboundingBox const& bounds, int const& tileSizeInPixels);
public MapTileSource(MapTileDataSource dataSource, MapZoomLevelRange zoomLevelRange, GeoboundingBox bounds, int tileSizeInPixels);
function MapTileSource(dataSource, zoomLevelRange, bounds, tileSizeInPixels)
Public Sub New (dataSource As MapTileDataSource, zoomLevelRange As MapZoomLevelRange, bounds As GeoboundingBox, tileSizeInPixels As Integer)

Parameters

dataSource
MapTileDataSource

The data source to use for the tiles.

zoomLevelRange
MapZoomLevelRange

The zoom level range for the tiles.

bounds
GeoboundingBox

The geographic area of tiles requested.

tileSizeInPixels
Int32

int

The size of individual square tiles in pixels.

See also

Applies to