mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Removed unused files
This commit is contained in:
parent
ace1057669
commit
cacb42106a
|
|
@ -1,20 +0,0 @@
|
|||
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
||||
// © 2017 Clemens Fischer
|
||||
// Licensed under the Microsoft Public License (Ms-PL)
|
||||
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml;
|
||||
|
||||
namespace MapControl
|
||||
{
|
||||
public partial class WmsImageLayer
|
||||
{
|
||||
private static async Task<XmlDocument> LoadDocument(Uri requestUri)
|
||||
{
|
||||
var document = new XmlDocument();
|
||||
await Task.Run(() => document.Load(requestUri.ToString()));
|
||||
return document;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
||||
// © 2017 Clemens Fischer
|
||||
// Licensed under the Microsoft Public License (Ms-PL)
|
||||
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Windows.Data.Xml.Dom;
|
||||
|
||||
namespace MapControl
|
||||
{
|
||||
public partial class WmsImageLayer
|
||||
{
|
||||
private static async Task<XmlDocument> LoadDocument(Uri requestUri)
|
||||
{
|
||||
return await XmlDocument.LoadFromUriAsync(requestUri);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue