mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Fixed method accessibility in TileLayer.
This commit is contained in:
parent
472658a6d9
commit
300c22a2e7
|
|
@ -417,7 +417,7 @@ namespace Caching
|
|||
try
|
||||
{
|
||||
fileDb.DeleteRecords(new FilterExpression(expiresField, DateTime.UtcNow, EqualityEnum.LessThanOrEqual));
|
||||
Trace.TraceInformation("FileDbCache: Deleting {0} expired items", fileDb.NumDeleted);
|
||||
Trace.TraceInformation("FileDbCache: Deleted {0} expired items", fileDb.NumDeleted);
|
||||
fileDb.Clean();
|
||||
}
|
||||
catch
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ namespace MapControl
|
|||
set { ((MatrixTransform)VisualTransform).Matrix = value; }
|
||||
}
|
||||
|
||||
public void UpdateTiles(int zoomLevel, Int32Rect grid)
|
||||
internal void UpdateTiles(int zoomLevel, Int32Rect grid)
|
||||
{
|
||||
this.grid = grid;
|
||||
this.zoomLevel = zoomLevel;
|
||||
|
|
@ -68,7 +68,7 @@ namespace MapControl
|
|||
}
|
||||
}
|
||||
|
||||
public void ClearTiles()
|
||||
internal void ClearTiles()
|
||||
{
|
||||
tiles.Clear();
|
||||
tileImageLoader.CancelDownloadTiles();
|
||||
|
|
|
|||
Loading…
Reference in a new issue