mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
Fixed MBTileSource
This commit is contained in:
parent
4912fa1e40
commit
76f920a053
2 changed files with 4 additions and 4 deletions
|
|
@ -159,7 +159,7 @@ namespace MapControl
|
|||
{
|
||||
var buffer = await LoadCachedBuffer(tile, uri, cacheName).ConfigureAwait(false);
|
||||
|
||||
if (buffer?.Length > 0)
|
||||
if (buffer != null)
|
||||
{
|
||||
await tile.LoadImageAsync(() => ImageLoader.LoadImageAsync(buffer)).ConfigureAwait(false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue