mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
GeoImage and GroundOverlay implementation
This commit is contained in:
parent
1b0e73dc35
commit
020a871714
4 changed files with 45 additions and 34 deletions
|
|
@ -74,11 +74,11 @@ namespace MapControl
|
|||
image.SetValue(SourcePathProperty, value);
|
||||
}
|
||||
|
||||
public static Image LoadGeoImage(string sourcePath)
|
||||
public static async Task<Image> CreateAsync(string sourcePath)
|
||||
{
|
||||
var image = new Image();
|
||||
|
||||
SetSourcePath(image, sourcePath);
|
||||
await LoadGeoImageAsync(image, sourcePath);
|
||||
|
||||
return image;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue