Qt Quick MapPolyLine insertCoordinate

时间:2017-02-26 17:40:00

标签: qt qt-quick qtlocation

我的地图上有PolyLine,当用户在两个现有点之间点击时,想要添加一个新的坐标。

我可以通过以下方式获得点击事件: -

 MouseArea {
    id: mouseArea
    anchors.fill: parent
    acceptedButtons: Qt.LeftButton | Qt.RightButton
    onClicked: {
        console.log('LINE');
    }
}

但是我无法弄清楚如何计算出 insertCoordinate()所需的索引,因为似乎没有一种方法来获取点击段的开始/结束顶点。这可能吗?

2 个答案:

答案 0 :(得分:1)

我有类似的问题。目前,如果不编写新的Map对象类型,则无法完成。所以我完全改变了方法并完成了以下工作: -

  • 暂停使用QtLocation作为地图,因为它目前限制太多
  • 将一个WebKit控件与Leaflet集成为浏览器HTML中的地图提供程序
  • 使用WebChannel和WebSocketServer通过javascript API与地图进行通信

这给了我在地图上所需的所有灵活性,因为Leaflet易于配置和扩展,同时允许我在Qt中编写其余桌面应用程序

答案 1 :(得分:0)

我已经重新访问了该项目,并找到了一种无需使用Webkit即可完成此工作的方法。它涉及很多:-

1)使用点击获取坐标

var mapCoord = gpxLine.mapToItem(mapView,mouseX,mouseY);
var coord = mapView.toCoordinate(Qt.point(mapCoord.x,mapCoord.y));

2)使用此坐标迭代路径并计算最接近的路径线段

 float distance = 1000000;
    float dx = 0;
    int index = 0;
    float x0 = coordinate.longitude(),
          y0 = coordinate.latitude(),
          x1y1x,
          x1y1y,
          x2y2x,
          x2y2y;

    double A,B,C,D,dot,len_sq,param,xx,yy,d_x,d_y;

    for(int i = 0; i < trackpoints.count() - 1; i++){
        //Distance from line algorithm https://stackoverflow.com/questions/849211/shortest-distance-between-a-point-and-a-line-segment
        x1y1x = trackpoints[i].latlon.longitude();
        x1y1y = trackpoints[i].latlon.latitude();
        x2y2x = trackpoints[i+1].latlon.longitude();
        x2y2y = trackpoints[i+1].latlon.latitude();

        A = x0 - x1y1x;
        B = y0 - x1y1y;
        C = x2y2x - x1y1x;
        D = x2y2y - x1y1y;

        dot = A * C + B * D;
        len_sq = C * C + D * D;
        param = dot /len_sq;

        if(param < 0  || (x1y1x == x2y2x && x1y1y == x2y2y)){
            xx = x1y1x;
            yy = x1y1y;
        } else if ( param > 1 ){
            xx = x2y2x;
            yy = x2y2y;
        } else {
            xx = x1y1x +param * C;
            yy = x1y1y + param * D;
        }

        d_x = x0 - xx;
        d_y = y0 - yy;
        dx = sqrt(d_x * d_x + d_y * d_y);

        if(dx < distance){
            distance = dx;
            index = i;
        }

    }

3)这给了我索引,所以我现在可以在该索引处插入坐标