Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Geography/ILocation2D.cs

16 lines
292 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
namespace Plane.Geography
{
public interface ILocation2D
{
/// <summary>
/// 获取纬度。
/// </summary>
double Latitude { get; }
/// <summary>
/// 获取经度。
/// </summary>
double Longitude { get; }
}
}