如何在Google Maps API上计算Lat,Lng的像素? C#

时间:2017-01-06 08:00:00

标签: c# google-maps math

我有一张关于纬度和经度值的地图的自定义投影:

double MinLatitude = -32768.0;
double MaxLatitude = 32768.0;
double MinLongitude = -32768.0;
double MaxLongitude = 32768.0;

形成界限。

我现在如何从Lat,Lng位置计算X,Y?

这是一个预制的墨卡托投影方法来做到这一点,但似乎没有正常工作,没有返回预期的坐标。

public override GPoint FromLatLngToPixel(double lat, double lng, int zoom)
{
    GPoint ret = GPoint.Empty;

    lat = Clip(lat, MinLatitude, MaxLatitude);
    lng = Clip(lng, MinLongitude, MaxLongitude);

    double x = (lng + 180) / 360;
    double sinLatitude = Math.Sin(lat * Math.PI / 180);
    double y = 0.5 - Math.Log((1 + sinLatitude) / (1 - sinLatitude)) / (4 * Math.PI);

    GSize s = GetTileMatrixSizePixel(zoom);
    long mapSizeX = s.Width;
    long mapSizeY = s.Height;

    ret.X = (long)Clip(x * mapSizeX + 0.5, 0, mapSizeX - 1);
    ret.Y = (long)Clip(y * mapSizeY + 0.5, 0, mapSizeY - 1);

    return ret;
}

我做错了什么?

0 个答案:

没有答案