0

我问你是因为我现在挣扎了几天;我搜索了互联网和stackoverflow,没有找到任何东西。

我需要在地图上非常精确地放置标记/圆圈/任何东西。但是,似乎我只能在精确度取决于我所在位置的网格上绘制它们。因此,它们的位置不够准确。

我正在使用 Wt (C++),但这似乎不是问题的一部分。我编写的代码绘制了一个 20*20 的圆数组,其坐标是等距的。无论我是在巴黎还是在纽约,我都不会得到相同的结果。

在巴黎:(不能发布图片,因为这是我的第一个问题) http://img818.imageshack.us/img818/7841/parism.png

在纽约:http: //img193.imageshack.us/img193/9822/newyorkq.png

在巴黎,我得到了经度的准确性,但没有得到纬度。在纽约,我无法获得纬度和经度的准确性。

这是我使用的代码:

    /*Choose between both*/
    double centerLat = 40.714468; double centerLng = -74.005966;//New-York
    //double centerLat = 48.854607; double centerLng = 2.347126;//Paris

    /*Other parameters*/
    double lngMargin = 0.000400;
    double latMargin = 0.000400;
    int granularity = 20;

    int i,j;
    WVBoxLayout* layout = new WVBoxLayout();
    WColor::WColor myBlue = WColor::WColor(0,0,255,255);
    WColor::WColor myRed  = WColor::WColor(255,0,0,255);
    WColor::WColor myTransparent = WColor::WColor(0,0,0,0);
    WGoogleMap::Coordinate coordArray[granularity][granularity];

    /* Creating and configuring the map */
    WGoogleMap *map = new WGoogleMap(WGoogleMap::Version3);
    WGoogleMap::Coordinate centerCoord = WGoogleMap::Coordinate(centerLat,centerLng);
    setLayout(layout);
    resize(height,width);
    map->setCenter(centerCoord,19);
    map->setMapTypeControl(WGoogleMap::DefaultControl);
    map->enableScrollWheelZoom();
    map->addCircle(centerCoord,2,myBlue,2,myTransparent);

    /* Here is the loop that draws the circles */
    for(i=0 ; i<=granularity-1 ; i++){
            for(j=0 ; j<=granularity-1 ; j++){

                    coordArray[i][j] = WGoogleMap::Coordinate(centerLat + beforeOrAfterTheCenter_Lat * (latMargin/granularity) * i,
                                    centerLng + beforeOrAfterTheCenter_Lng * (lngMargin/granularity) * j); 

                    map->addCircle(coordArray[i][j],1,myRed,2,myTransparent);
            }
    }

该代码应该可以正常工作。您对我可以做些什么来获得更高的准确性有任何线索吗?这是一个众所周知的问题吗?

非常感谢您提供的任何帮助,

L.

4

1 回答 1

2

经过几个小时的挣扎,我终于发现了问题所在。

我正在使用 Wt (C++),但这似乎不是问题的一部分

嗯,实际上是。Wt 使用 std::stringstream 来生成 JavaScript 代码,当你给他一个 double 时,这个对象没有默认的无限精度:它只需要 6 位数字。这意味着如果您在该点之前有 1 个数字,则在该点之后有 5 个,如果在该点之前有 2 个数字,则在该点之后有 4 个。这就是为什么我们在巴黎的经度上有很高的精度,但纬度却没有(lng 是 6,而 lat 是 45)。这就是为什么纽约的纬度和经度精度都很差(在点前都有 2 位数字)

为了解决这个问题,我只是用我的自定义函数重载了 addCircle(以及 addMarker 和所有其他函数),并设置了与 std::stringstream::precision(int n) 一起使用的 std::stringstream 的精度我还不知道的方法。

我在 Wt redmine 上报告了这个问题,它可能很快就会得到纠正。

Heitor, muito obrigado pela ajuda。

再见,

于 2012-04-24T09:29:41.233 回答