mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
Async naming convention
This commit is contained in:
parent
2a4de62c45
commit
8948af0723
7 changed files with 37 additions and 37 deletions
|
|
@ -93,7 +93,7 @@ namespace MapControl
|
|||
return finalSize;
|
||||
}
|
||||
|
||||
protected override async Task UpdateTileLayer(bool tileSourceChanged)
|
||||
protected override async Task UpdateTileLayerAsync(bool tileSourceChanged)
|
||||
{
|
||||
// tileSourceChanged is ignored here because it is always false.
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ namespace MapControl
|
|||
{
|
||||
Children.Clear();
|
||||
|
||||
await LoadTiles(null, null); // stop TileImageLoader
|
||||
await LoadTilesAsync(null, null); // stop TileImageLoader
|
||||
}
|
||||
else if (UpdateChildLayers(tileMatrixSet))
|
||||
{
|
||||
|
|
@ -122,7 +122,7 @@ namespace MapControl
|
|||
|
||||
var tiles = ChildLayers.SelectMany(layer => layer.Tiles);
|
||||
|
||||
await LoadTiles(tiles, cacheName);
|
||||
await LoadTilesAsync(tiles, cacheName);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue