Update MapTileLayer.cs

This commit is contained in:
ClemensFischer 2022-11-20 09:09:23 +01:00
parent 44ba57e92b
commit b5b1400cef

View file

@ -228,7 +228,7 @@ namespace MapControl
{
for (var x = x1; x <= x2; x++)
{
var tile = Tiles.FirstOrDefault(t => t.ZoomLevel == z && t.X == x && t.Y == y);
var tile = Tiles.FirstOrDefault(t => t.ZoomLevel == z && t.Y == y && t.X == x);
if (tile == null)
{