/Main/src/DynamicDataDisplay.Maps/Servers/ITileServer.cs
# · C# · 19 lines · 16 code · 3 blank · 0 comment · 0 complexity · fadff02a2f05ab7524966193fa0f2983 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Microsoft.Research.DynamicDataDisplay.Maps.Servers;
-
- namespace Microsoft.Research.DynamicDataDisplay.Charts.Maps
- {
- public interface ITileServer
- {
- bool Contains(TileIndex id);
- void BeginLoadImage(TileIndex id);
- event EventHandler<TileLoadResultEventArgs> ImageLoaded;
-
- string ServerName { get; }
-
- event EventHandler Changed;
- }
- }