namespace TINK.Model.Map { public interface IMapSpan { /// Center of map displayed area. IPosition Center { get; } /// Radius of displayed map area. double Radius { get; } /// Gets if map span is valid or not. bool IsValid { get; } } }