mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-05-07 13:37:47 +00:00
Improved TileImageLoader
This commit is contained in:
parent
d9c5455a83
commit
c6f7b2d665
9 changed files with 70 additions and 87 deletions
|
|
@ -21,7 +21,7 @@ namespace MapControl
|
|||
tile = new Tile(zoomLevel, x, y, columnCount);
|
||||
|
||||
var equivalentTile = this.FirstOrDefault(
|
||||
t => t.IsLoaded && t.ZoomLevel == tile.ZoomLevel && t.Column == tile.Column && t.Row == tile.Row);
|
||||
t => t.Image.Source != null && t.ZoomLevel == tile.ZoomLevel && t.Column == tile.Column && t.Row == tile.Row);
|
||||
|
||||
if (equivalentTile != null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue