0

我寻求在代表中引入条件。

这是一个简化的 main.qml

import QtQuick 2.6
import QtQuick.Window 2.2
import QtPositioning 5.5
import QtLocation 5.6

Window {
    width: 1440
    height: 900
    visible: true

    property variant topLeftEurope: QtPositioning.coordinate(60.5, 0.0)
    property variant bottomRightEurope: QtPositioning.coordinate(51.0, 14.0)
    property variant boundingBox: QtPositioning.rectangle(topLeftEurope, bottomRightEurope)

    Map {
        id: mainMap
        anchors.centerIn: parent;
        anchors.fill: parent
        plugin: Plugin {name: "osm"}

        MapItemView {

            model: myModel

            delegate: Marker{}   

        }
        visibleRegion: boundingBox
    }
}

它显示地图并定义一个边界框。

这是代表:Marker.qml

import QtQuick 2.4
import QtLocation 5.6



MapQuickItem {
    id: mark

coordinate: position //"position" is roleName

    ... all the stuff for the marker to be displayed on the map
}

我希望添加此条件以丢弃不在要显示的边界框内的点:

if (main.boundingBox.contains(position)){
    ... display the marker on the map
}

但是如果在我的代码中不能直接使用。

我试图添加一个功能:

function isMarkerViewable(){
    if (!main.boundingBox.contains(position))
        return;
}

但我也无法调用它。

是否可以在委托中添加条件,如果可以,该怎么做?

谢谢你的帮助

4

2 回答 2

1

正如@derM评论的那样,一个选项是使用加载器,在以下示例中,每个点都有一个名为 type 的属性,用于区分哪些项目应该绘制为矩形或圆形。

标记.qml

import QtQuick 2.0
import QtLocation 5.6

MapQuickItem {
    sourceItem: Loader{
        sourceComponent:
            if(type == 0)//some condition
                return idRect
            else if(type == 1) //another condition
                return idCircle

    }
    Component{
        id: idRect
        Rectangle{
            width: 20
            height: 20
            color: "blue"
        }
    }
    Component{
        id: idCircle
        Rectangle{
            color: "red"
            width: 20
            height: 20
            radius: 50
        }
    }
}

main.qml

MapItemView {
    model: navaidsModel
    delegate:  Marker{
        coordinate:  position
    }
}

输出:

在此处输入图像描述

您可以在以下链接中找到完整的示例。

于 2017-12-20T20:23:13.607 回答
0

如果您的目标与性能优化无关(不加载不需要的项目),而只是与您的业务逻辑相关,那么对我来说最简单的解决方案似乎是使用 MapQuickItem 或源组件的可见属性。像:

visible: main.boundingBox.contains(position)
于 2017-12-21T16:13:54.590 回答