mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
15 lines
380 B
C#
15 lines
380 B
C#
// XAML Map Control - http://xamlmapcontrol.codeplex.com/
|
|
// © 2015 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MapControl
|
|
{
|
|
public interface ITileImageLoader
|
|
{
|
|
void BeginLoadTiles(TileLayer tileLayer, IEnumerable<Tile> tiles);
|
|
void CancelLoadTiles(TileLayer tileLayer);
|
|
}
|
|
}
|