所以我有一张地图。在它上面我有一些按地理位置定位的 XAML 元素。我需要以像素为单位找到它们的坐标,以便检测它们何时相互重叠(出于分组目的)我似乎找不到方法。如果我得到MyMap.MapItems
了,我只会得到绑定到地图的对象集合。任何想法如何做到这一点?
user6760141
问问题
650 次
2 回答
1
为什么不使用 GetOffsetFromLocation 方法的@Clemens建议?
它为您完成所有数学运算,即使 MapControl 远离墨卡托投影,它仍然可以工作。
于 2016-09-08T06:42:47.873 回答
1
好问题。我目前有这样的问题。这是一篇准确描述您需要做什么的文章。https://msdn.microsoft.com/en-us/library/bb259689.aspx?f=255&MSPPError=-2147217396
如果您没有时间阅读代码:
private const double EarthRadius = 6378137;
private const double MinLatitude = -85.05112878;
private const double MaxLatitude = 85.05112878;
private const double MinLongitude = -180;
private const double MaxLongitude = 180;
private static double Clip(double n, double minValue, double maxValue)
{
return Math.Min(Math.Max(n, minValue), maxValue);
}
public static uint MapSize(int levelOfDetail)
{
return (uint) 256 << levelOfDetail;
}
public static void LatLongToPixelXY(double latitude, double longitude, int levelOfDetail, out int pixelX, out int pixelY)
{
latitude = Clip(latitude, MinLatitude, MaxLatitude);
longitude = Clip(longitude, MinLongitude, MaxLongitude);
double x = (longitude + 180) / 360;
double sinLatitude = Math.Sin(latitude * Math.PI / 180);
double y = 0.5 - Math.Log((1 + sinLatitude) / (1 - sinLatitude)) / (4 * Math.PI);
uint mapSize = MapSize(levelOfDetail);
pixelX = (int) Clip(x * mapSize + 0.5, 0, mapSize - 1);
pixelY = (int) Clip(y * mapSize + 0.5, 0, mapSize - 1);
}
于 2016-08-26T07:02:20.457 回答