MapTileSource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
Initializes a new instance of the MapTileSource class.
public:
MapTileSource();
MapTileSource();
public MapTileSource();
function MapTileSource()
Public Sub New ()
See also
- MapTileSource(MapTileDataSource)
- MapTileSource(MapTileDataSource, MapZoomLevelRange)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)
- Overlay tiled images on a map
Applies to
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
- MapTileSource(MapTileDataSource, MapZoomLevelRange)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)
- Overlay tiled images on a map
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
- MapTileSource(MapTileDataSource)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)
- Overlay tiled images on a map
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
- MapTileSource(MapTileDataSource)
- MapTileSource(MapTileDataSource, MapZoomLevelRange)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox, Int32)
- Overlay tiled images on a map
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
- MapTileSource(MapTileDataSource)
- MapTileSource(MapTileDataSource, MapZoomLevelRange)
- MapTileSource(MapTileDataSource, MapZoomLevelRange, GeoboundingBox)
- Overlay tiled images on a map