mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
- IMapElement interface with readonly ParentMap property and SetParentMap method that is explicitly implemented - Removed MetersPerDegree from MapBase - Set StrokeThickness instead of Stroke in MapGraticule ctor in SL/WinRT
14 lines
306 B
C#
14 lines
306 B
C#
// XAML Map Control - http://xamlmapcontrol.codeplex.com/
|
|
// Copyright © 2014 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
namespace MapControl
|
|
{
|
|
public interface IMapElement
|
|
{
|
|
MapBase ParentMap { get; }
|
|
|
|
void SetParentMap(MapBase parentMap);
|
|
}
|
|
}
|