4

Metro 风格的 Windows 8 应用程序中 System.Device.Location.GeoCoordinate.GetDistanceTo 方法的等价物是什么。

Metro 应用程序具有 Geocoordinate 类(使用小写“C”),但没有 GetDistanceTo 方法。

其次,Metro Geocoordinate 类没有构造函数。我怎样才能创建它的一个实例。

4

3 回答 3

25

我根据 BlackLight 反编译了 .NET 4.5 GetDistanceTo 方法。在这里复制以节省人们的一些精力。

public double GetDistanceTo(GeoCoordinate other)
{
    if (double.IsNaN(this.Latitude) || double.IsNaN(this.Longitude) || double.IsNaN(other.Latitude) || double.IsNaN(other.Longitude))
    {
        throw new ArgumentException(SR.GetString("Argument_LatitudeOrLongitudeIsNotANumber"));
    }
    else
    {
        double latitude = this.Latitude * 0.0174532925199433;
        double longitude = this.Longitude * 0.0174532925199433;
        double num = other.Latitude * 0.0174532925199433;
        double longitude1 = other.Longitude * 0.0174532925199433;
        double num1 = longitude1 - longitude;
        double num2 = num - latitude;
        double num3 = Math.Pow(Math.Sin(num2 / 2), 2) + Math.Cos(latitude) * Math.Cos(num) * Math.Pow(Math.Sin(num1 / 2), 2);
        double num4 = 2 * Math.Atan2(Math.Sqrt(num3), Math.Sqrt(1 - num3));
        double num5 = 6376500 * num4;
        return num5;
    }
}
于 2012-11-17T09:28:16.347 回答
2

一年前我写了一个小库来处理坐标,或者可以帮助你计算坐标之间距离的东西。它在 CodePlex 上可用:http: //beavergeodesy.codeplex.com/

然后计算距离就这么简单。

// Create a pair of coordinates
GeodeticCoordinate coordinate1 = new GeodeticCoordinate() { Latitude = 63.83451d, Longitude = 20.24655d };
GeodeticCoordinate coordinate2 = new GeodeticCoordinate() { Latitude = 63.85763d, Longitude = 20.33569d };
// Calculate the distance between the coordinates using the haversine formula
double distance = DistanceCalculator.Haversine(coordinate1, coordinate2);
于 2012-09-16T12:15:14.087 回答
2

由于某种原因,MetroGeocoordinate没有构造函数。public在我看来,实现这一点的最好方法是使用 Reflector 并复制它的实现System.Device.Location.GeoCoordinate也会给你GetDistanceTo

希望这将在以后重新添加到 API 中。

于 2012-09-17T09:33:45.247 回答