mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
14 lines
329 B
C#
14 lines
329 B
C#
|
|
using System.Windows.Media;
|
|||
|
|
using System.Windows.Media.Imaging;
|
|||
|
|
|
|||
|
|
namespace SampleApplication
|
|||
|
|
{
|
|||
|
|
public class ImageTileSource : MapControl.ImageTileSource
|
|||
|
|
{
|
|||
|
|
public override ImageSource GetImage(int x, int y, int zoomLevel)
|
|||
|
|
{
|
|||
|
|
return new BitmapImage(GetUri(x, y, zoomLevel));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|