Java - 计算两个经纬度之间的直线距离
代码Github地址
https://github.com/FrankZuozuo/JavaSpecial
1.点接口
public interface Point {
double x();
double y();
}
2.地图点
@NoArgsConstructor
@AllArgsConstructor
public class MapPoint
代码Github地址
https://github.com/FrankZuozuo/JavaSpecial
1.点接口
public interface Point {
double x();
double y();
}
2.地图点
@NoArgsConstructor
@AllArgsConstructor
public class MapPoint