Avalonia MapPath

This commit is contained in:
ClemensFischer 2024-05-25 18:58:51 +02:00
parent 8e4110b600
commit 25d4d7f417
8 changed files with 120 additions and 11 deletions

View file

@ -65,6 +65,8 @@ namespace MapControl
public MapImageLayer()
{
IsHitTestVisible = false;
loadingProgress = new Progress<double>(p => SetValue(LoadingProgressProperty, p));
updateTimer = this.CreateTimer(UpdateInterval);
@ -145,7 +147,6 @@ namespace MapControl
{
Opacity = 0d,
Stretch = Stretch.Fill,
IsHitTestVisible = false // avoid touch capture issues
});
}
}