XAML-Map-Control/MapControl/IMapElement.cs

17 lines
380 B
C#
Raw Normal View History

// XAML Map Control - http://xamlmapcontrol.codeplex.com/
2016-02-23 20:07:30 +01:00
// © 2016 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
namespace MapControl
{
public interface IMapElement
{
MapBase ParentMap { get; set; }
}
public interface IMapShape : IMapElement
{
void LocationChanged(Location oldValue, Location newValue);
}
}