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>
|
/// <summary>
|
||||||
/// IDistributedCache implementation based on local image files.
|
/// IDistributedCache implementation based on local image files.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class ImageFileCache : IDistributedCache
|
public class ImageFileCache : IDistributedCache
|
||||||
{
|
{
|
||||||
private static readonly byte[] expirationTag = Encoding.ASCII.GetBytes("EXPIRES:");
|
private static readonly byte[] expirationTag = Encoding.ASCII.GetBytes("EXPIRES:");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A MapPanel with a collection of GroundOverlay or GeoImage children.
|
/// A MapPanel with a collection of GroundOverlay or GeoImage children.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class MapOverlaysPanel : MapPanel
|
public class MapOverlaysPanel : MapPanel
|
||||||
{
|
{
|
||||||
public static readonly DependencyProperty SourcePathsProperty =
|
public static readonly DependencyProperty SourcePathsProperty =
|
||||||
DependencyPropertyHelper.Register<MapOverlaysPanel, IEnumerable<string>>(nameof(SourcePaths), null,
|
DependencyPropertyHelper.Register<MapOverlaysPanel, IEnumerable<string>>(nameof(SourcePaths), null,
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ using DispatcherTimer = Microsoft.UI.Dispatching.DispatcherQueueTimer;
|
||||||
|
|
||||||
namespace MapControl
|
namespace MapControl
|
||||||
{
|
{
|
||||||
public abstract partial class MapTileLayerBase : Panel, IMapLayer
|
public abstract class MapTileLayerBase : Panel, IMapLayer
|
||||||
{
|
{
|
||||||
public static readonly DependencyProperty TileSourceProperty =
|
public static readonly DependencyProperty TileSourceProperty =
|
||||||
DependencyPropertyHelper.Register<MapTileLayerBase, TileSource>(nameof(TileSource), null,
|
DependencyPropertyHelper.Register<MapTileLayerBase, TileSource>(nameof(TileSource), null,
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Displays a single map image from a Web Map Service (WMS).
|
/// Displays a single map image from a Web Map Service (WMS).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class WmsImageLayer : MapImageLayer
|
public class WmsImageLayer : MapImageLayer
|
||||||
{
|
{
|
||||||
public static readonly DependencyProperty ServiceUriProperty =
|
public static readonly DependencyProperty ServiceUriProperty =
|
||||||
DependencyPropertyHelper.Register<WmsImageLayer, Uri>(nameof(ServiceUri), null,
|
DependencyPropertyHelper.Register<WmsImageLayer, Uri>(nameof(ServiceUri), null,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue