Minor changes

This commit is contained in:
ClemensFischer 2025-11-13 23:55:47 +01:00
parent b44018ac8f
commit ef7849948e
3 changed files with 4 additions and 4 deletions

View file

@ -188,9 +188,9 @@ namespace MapControl
}
}
public abstract IReadOnlyCollection<string> SupportedCrsIds { get; }
public bool IsBaseMapLayer => parentMap != null && parentMap.Children.Count > 0 && parentMap.Children[0] == this;
protected bool IsBaseMapLayer => parentMap != null && parentMap.Children.Count > 0 && parentMap.Children[0] == this;
public abstract IReadOnlyCollection<string> SupportedCrsIds { get; }
protected void BeginLoadTiles(IEnumerable<Tile> tiles, string cacheName)
{