// XAML Map Control - http://xamlmapcontrol.codeplex.com/ // Copyright © 2014 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) using System.Collections.Generic; namespace MapControl { public interface ITileImageLoader { void BeginLoadTiles(TileLayer tileLayer, IEnumerable tiles); void CancelLoadTiles(TileLayer tileLayer); } }