sharee.bike-App/TINKLib/Model/Map/IMapSpan.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

15 lines
318 B
C#

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