我想找到距离我的位置 4000 公里的地方的地理坐标,命名为newLocation
.
我需要它才能将结果转换成ViewportPoint
这样:
System.Windows.Point p1 =
mapControl.ConvertGeoCoordinateToViewportPoint(newLocation);
并假设我的位置定义为:
System.Windows.Point p2 =
radiusMap.ConvertGeoCoordinateToViewportPoint(myLocation);
newLocation
然后我可以简单地添加一个以我的位置为中心的圆圈,然后我需要计算的边界从那里经过,如下所示:
double radius = getDistance(p1, p2);
Ellipse circle = new Ellipse();
circle.Width = radius * 2;
circle.Height = radius * 2;
circle.Opacity = 0.4;
circle.Fill = new SolidColorBrush(Colors.Green);
MapOverlay mapOverLay = new MapOverlay();
mapOverLay.PositionOrigin = new System.Windows.Point(0.5, 0.5);
mapOverLay.Content = circle;
mapOverLay.GeoCoordinate = myLocation;
MyLayer.Add(mapOverLay);
radiusMap.Layers.Add(MyLayer);
所以,计算newLocation
就是我所需要的。
笔记:
- 我尝试了这个解决方案,但有一个限制。
我们可以在 Visual Studio 中执行以下操作:
GeoCoordinate location1 = ..., location2 = ...; double distance = location1.GetDistanceTo(location2);
我想知道逆向是否已经实现。
更新:我找到了 GetDistanceTo(...) 的实现,它是:
double d = this.Latitude * 0.017453292519943295;
double num3 = this.Longitude * 0.017453292519943295;
double num4 = other.Latitude * 0.017453292519943295;
double num5 = other.Longitude * 0.017453292519943295;
double num6 = num5 - num3;
double num7 = num4 - d;
double num8 = Math.Pow(Math.Sin(num7 / 2.0), 2.0) + ((Math.Cos(d) * Math.Cos(num4)) * Math.Pow(Math.Sin(num6 / 2.0), 2.0));
double num9 = 2.0 * Math.Atan2(Math.Sqrt(num8), Math.Sqrt(1.0 - num8));
return (6376500.0 * num9);
我想知道是否有可能得到相反的结果。即给它我的地理坐标,以及与我的距离,以便它返回新位置的地理坐标。