2013-11-12 21:14:53 +01:00
|
|
|
|
// XAML Map Control - http://xamlmapcontrol.codeplex.com/
|
2016-02-23 20:07:30 +01:00
|
|
|
|
// © 2016 Clemens Fischer
|
2013-11-12 21:14:53 +01:00
|
|
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
|
|
|
|
|
|
|
|
namespace MapControl
|
|
|
|
|
|
{
|
2014-07-01 18:57:44 +02:00
|
|
|
|
public interface IMapElement
|
2013-11-12 21:14:53 +01:00
|
|
|
|
{
|
2014-11-19 21:11:14 +01:00
|
|
|
|
MapBase ParentMap { get; set; }
|
2013-11-12 21:14:53 +01:00
|
|
|
|
}
|
2016-04-19 19:36:03 +02:00
|
|
|
|
|
|
|
|
|
|
public interface IMapShape : IMapElement
|
|
|
|
|
|
{
|
|
|
|
|
|
void LocationChanged(Location oldValue, Location newValue);
|
|
|
|
|
|
}
|
2013-11-12 21:14:53 +01:00
|
|
|
|
}
|