mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 06:26:41 +00:00
Fixed moving transform center across dateline.
This commit is contained in:
parent
7fbbf66acb
commit
afc93704d9
7 changed files with 63 additions and 55 deletions
|
|
@ -94,14 +94,11 @@ namespace MapControl
|
|||
return UpdateTiles(null);
|
||||
}
|
||||
|
||||
if (UpdateChildLayers(tileMatrixSet))
|
||||
{
|
||||
SetRenderTransform();
|
||||
var updateTiles = UpdateChildLayers(tileMatrixSet);
|
||||
|
||||
return UpdateTiles(tileMatrixSet);
|
||||
}
|
||||
SetRenderTransform();
|
||||
|
||||
return Task.CompletedTask;
|
||||
return updateTiles ? UpdateTiles(tileMatrixSet) : Task.CompletedTask;
|
||||
}
|
||||
|
||||
protected override void SetRenderTransform()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue