Version 4.12.2 Added TileQueue.

This commit is contained in:
ClemensF 2019-06-10 17:20:21 +02:00
parent a7d3edf154
commit 716adff1d1
7 changed files with 113 additions and 66 deletions

View file

@ -44,6 +44,11 @@ namespace MapControl
}
}
public override string ToString()
{
return string.Format("{0}/{1}/{2}", ZoomLevel, XIndex, Y);
}
private void FadeIn()
{
Image.BeginAnimation(UIElement.OpacityProperty, new DoubleAnimation { From = 0d, To = 1d, Duration = FadeDuration, FillBehavior = FillBehavior.Stop });