namespace Plane.Geography { public interface ILocation2D { /// /// 获取纬度。 /// double Latitude { get; } /// /// 获取经度。 /// double Longitude { get; } } }