sharee.bike-App/TINKLib/Model/Map/IMapSpan.cs

15 lines
318 B
C#
Raw Normal View History

2022-01-22 18:16:10 +01:00
namespace TINK.Model.Map
{
2022-09-06 16:08:19 +02:00
public interface IMapSpan
{
/// <summary> Center of map displayed area.</summary>
IPosition Center { get; }
2022-01-22 18:16:10 +01:00
2022-09-06 16:08:19 +02:00
/// <summary> Radius of displayed map area. </summary>
double Radius { get; }
2022-01-22 18:16:10 +01:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets if map span is valid or not. </summary>
bool IsValid { get; }
}
2022-01-22 18:16:10 +01:00
}