CustomMapTileDataSource CustomMapTileDataSource CustomMapTileDataSource CustomMapTileDataSource Class

Definition

Provides a source of custom tiles for a MapTileSource. Use this class when you can't use HttpMapTileDataSource or LocalMapTileDataSource. For example, CustomMapTileDataSource supports drawing tiles in memory and returning them as a stream of pixels.

public : class CustomMapTileDataSource : MapTileDataSource, ICustomMapTileDataSourcepublic class CustomMapTileDataSource : MapTileDataSource, ICustomMapTileDataSourcePublic Class CustomMapTileDataSource Inherits MapTileDataSource Implements ICustomMapTileDataSource// This API is not available in Javascript.
Inheritance
CustomMapTileDataSourceCustomMapTileDataSourceCustomMapTileDataSourceCustomMapTileDataSource
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Inherited Members

Inherited methods

Inherited properties

Remarks

For more info about using the CustomMapTileDataSource, see the PixelData property of the MapTileBitmapRequest.

Constructors

CustomMapTileDataSource() CustomMapTileDataSource() CustomMapTileDataSource() CustomMapTileDataSource()

Initializes a new instance of the CustomMapTileDataSource class.

public : CustomMapTileDataSource()public CustomMapTileDataSource()Public Sub New()// This API is not available in Javascript.
See Also

Events

BitmapRequested BitmapRequested BitmapRequested BitmapRequested

Occurs when the bitmap is requested for a CustomMapTileDataSource. An instance of MapTileBitmapRequestedEventArgs provides data for this event.

public : event TypedEventHandler BitmapRequested<CustomMapTileDataSource,  MapTileBitmapRequestedEventArgs>public event TypedEventHandler BitmapRequested<CustomMapTileDataSource,  MapTileBitmapRequestedEventArgs>Public Event BitmapRequested<CustomMapTileDataSource,  MapTileBitmapRequestedEventArgs>// This API is not available in Javascript.
See Also

See Also