mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Update TileImageLoader.cs
This commit is contained in:
parent
c0d3635317
commit
16c0e04266
|
|
@ -60,10 +60,7 @@ namespace MapControl
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(cacheName) ||
|
if (Cache == null || tileSource.UriFormat == null || !tileSource.UriFormat.StartsWith("http"))
|
||||||
Cache == null ||
|
|
||||||
tileSource.UriFormat == null ||
|
|
||||||
!tileSource.UriFormat.StartsWith("http"))
|
|
||||||
{
|
{
|
||||||
cacheName = null; // no tile caching
|
cacheName = null; // no tile caching
|
||||||
}
|
}
|
||||||
|
|
@ -94,7 +91,7 @@ namespace MapControl
|
||||||
|
|
||||||
private static Task LoadTileAsync(Tile tile, TileSource tileSource, string cacheName)
|
private static Task LoadTileAsync(Tile tile, TileSource tileSource, string cacheName)
|
||||||
{
|
{
|
||||||
if (cacheName == null)
|
if (string.IsNullOrEmpty(cacheName))
|
||||||
{
|
{
|
||||||
return LoadTileAsync(tile, tileSource);
|
return LoadTileAsync(tile, tileSource);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue