在 c# 的谷歌地图中获取像素的纬度/纬度



如何在谷歌地图的特定磁贴中获取像素的纬度/隆。

例如 - 我有缩放 5,x = 4,y = 5。

我想获取此图块的 256 X 256 矩阵中每个像素的 Lat/Lon

有没有一个包或一个公式来得到它?

这是C#中的答案

回应来自 https://help.openstreetmap.org/questions/747/given-a-latlon-how-do-i-find-the-precise-position-on-the-tile

static void PixelXYToLatLongOSM(int pixelX, int pixelY, int zoomLevel, out float latitude, out float longitude)
{
int mapSize = (int)Math.Pow(2, zoomLevel) * 256;
int tileX = (int)Math.Truncate((decimal)(pixelX / 256));
int tileY = (int)Math.Truncate((decimal)pixelY / 256);
float n = (float)Math.PI - ((2.0f * (float)Math.PI * (ClipByRange(pixelY, mapSize - 1) / 256)) / (float)Math.Pow(2.0, zoomLevel));
longitude = ((ClipByRange(pixelX, mapSize - 1) / 256) / (float)Math.Pow(2.0, zoomLevel) * 360.0f) - 180.0f;
latitude = (180.0f / (float)Math.PI * (float)Math.Atan(Math.Sinh(n)));
}
static float ClipByRange(float n, float range)
{
return n % range;
}
static float Clip(float n, float minValue, float maxValue)
{
return Math.Min(Math.Max(n, minValue), maxValue);
}
static void LatLongToPixelXYOSM(float latitude, float longitude, int zoomLevel, out int pixelX, out int pixelY)
{
float MinLatitude = -85.05112878f;
float MaxLatitude = 85.05112878f;
float MinLongitude = -180;
float MaxLongitude = 180;
float mapSize = (float)Math.Pow(2, zoomLevel) * 256;
latitude = Clip(latitude, MinLatitude, MaxLatitude);
longitude = Clip(longitude, MinLongitude, MaxLongitude);
float X = (float)((longitude + 180.0f) / 360.0f * (float)(1 << zoomLevel));
float Y = (float)((1.0 - Math.Log(Math.Tan(latitude * (Math.PI / 180.0)) + 1.0 / Math.Cos(latitude * (Math.PI / 180.0))) / Math.PI) / 2.0 * (1 << zoomLevel));
int tilex = (int)(Math.Truncate(X));
int tiley = (int)(Math.Truncate(Y));
pixelX = (int)ClipByRange((tilex * 256) + ((X - tilex) * 256), mapSize - 1);
pixelY = (int)ClipByRange((tiley * 256) + ((Y - tiley) * 256), mapSize - 1);
}

相关内容

  • 没有找到相关文章

最新更新