From 7f338cabc69b6bffc7665eb890531d3ef301d13a Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Sat, 25 May 2024 19:01:00 +0200 Subject: [PATCH] Update MapTileLayerBase.cs --- MapControl/Shared/MapTileLayerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapControl/Shared/MapTileLayerBase.cs b/MapControl/Shared/MapTileLayerBase.cs index 69ec0878..2a2bbf7e 100644 --- a/MapControl/Shared/MapTileLayerBase.cs +++ b/MapControl/Shared/MapTileLayerBase.cs @@ -73,10 +73,10 @@ namespace MapControl updateTimer = this.CreateTimer(UpdateInterval); updateTimer.Tick += async (s, e) => await Update(false); + MapPanel.SetRenderTransform(this, new MatrixTransform()); #if UWP || WINUI MapPanel.InitMapElement(this); #endif - MapPanel.SetRenderTransform(this, new MatrixTransform()); } public ITileImageLoader TileImageLoader