mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
14 lines
318 B
C#
14 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; }
|
|
}
|
|
}
|