mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
79 lines
2 KiB
C#
79 lines
2 KiB
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// Copyright © 2023 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using System;
|
|
#if WINUI
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
using Microsoft.UI.Xaml.Media;
|
|
using Microsoft.UI.Xaml.Media.Animation;
|
|
#elif UWP
|
|
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Controls;
|
|
using Windows.UI.Xaml.Media;
|
|
using Windows.UI.Xaml.Media.Animation;
|
|
#else
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Animation;
|
|
#endif
|
|
|
|
namespace MapControl
|
|
{
|
|
public partial class Tile
|
|
{
|
|
public Tile(int zoomLevel, int x, int y, int columnCount)
|
|
{
|
|
ZoomLevel = zoomLevel;
|
|
X = x;
|
|
Y = y;
|
|
Column = ((x % columnCount) + columnCount) % columnCount;
|
|
}
|
|
|
|
public int ZoomLevel { get; }
|
|
public int X { get; }
|
|
public int Y { get; }
|
|
public int Column { get; }
|
|
public int Row => Y;
|
|
|
|
public Image Image { get; } = new Image
|
|
{
|
|
Opacity = 0d,
|
|
Stretch = Stretch.Fill,
|
|
IsHitTestVisible = false // avoid touch capture issues
|
|
};
|
|
|
|
public bool IsLoaded { get; set; }
|
|
|
|
public void SetImageSource(ImageSource image, bool animateOpacity = true)
|
|
{
|
|
IsLoaded = true;
|
|
Image.Source = image;
|
|
|
|
if (image != null && animateOpacity && MapBase.ImageFadeDuration > TimeSpan.Zero)
|
|
{
|
|
AnimateImageOpacity();
|
|
}
|
|
else
|
|
{
|
|
Image.Opacity = 1d;
|
|
}
|
|
}
|
|
|
|
private void BeginOpacityAnimation()
|
|
{
|
|
Image.BeginAnimation(UIElement.OpacityProperty, new DoubleAnimation
|
|
{
|
|
From = 0d,
|
|
To = 1d,
|
|
Duration = MapBase.ImageFadeDuration,
|
|
FillBehavior = FillBehavior.Stop
|
|
});
|
|
|
|
Image.Opacity = 1d;
|
|
}
|
|
}
|
|
}
|