mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Removed partial class declarations
This commit is contained in:
parent
82466bbab7
commit
186f734bcc
|
|
@ -18,7 +18,7 @@ namespace MapControl.Caching
|
|||
/// <summary>
|
||||
/// IDistributedCache implementation based on local image files.
|
||||
/// </summary>
|
||||
public partial class ImageFileCache : IDistributedCache
|
||||
public class ImageFileCache : IDistributedCache
|
||||
{
|
||||
private static readonly byte[] expirationTag = Encoding.ASCII.GetBytes("EXPIRES:");
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ namespace MapControl
|
|||
/// <summary>
|
||||
/// A MapPanel with a collection of GroundOverlay or GeoImage children.
|
||||
/// </summary>
|
||||
public partial class MapOverlaysPanel : MapPanel
|
||||
public class MapOverlaysPanel : MapPanel
|
||||
{
|
||||
public static readonly DependencyProperty SourcePathsProperty =
|
||||
DependencyPropertyHelper.Register<MapOverlaysPanel, IEnumerable<string>>(nameof(SourcePaths), null,
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ using DispatcherTimer = Microsoft.UI.Dispatching.DispatcherQueueTimer;
|
|||
|
||||
namespace MapControl
|
||||
{
|
||||
public abstract partial class MapTileLayerBase : Panel, IMapLayer
|
||||
public abstract class MapTileLayerBase : Panel, IMapLayer
|
||||
{
|
||||
public static readonly DependencyProperty TileSourceProperty =
|
||||
DependencyPropertyHelper.Register<MapTileLayerBase, TileSource>(nameof(TileSource), null,
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ namespace MapControl
|
|||
/// <summary>
|
||||
/// Displays a single map image from a Web Map Service (WMS).
|
||||
/// </summary>
|
||||
public partial class WmsImageLayer : MapImageLayer
|
||||
public class WmsImageLayer : MapImageLayer
|
||||
{
|
||||
public static readonly DependencyProperty ServiceUriProperty =
|
||||
DependencyPropertyHelper.Register<WmsImageLayer, Uri>(nameof(ServiceUri), null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue