我正在使用 CLLocationDistance 计算两个 lat 和 lng 之间的距离,我给第一个 lat 和 lng 提供了一些静态值,第二个 lat 和 lng 是我当前的位置,即使我到达确切位置,lat 和 lng 之间的差异是20 英尺或 15 英尺。
正在使用公式将 CLLocationDistance 输出转换为英尺
CLLocationDistance distance = [locA distanceFromLocation:locB];
float feet= distance *3.28084;
如何获得两个 lat 和 lng 之间的准确距离?