我寻求在代表中引入条件。
这是一个简化的 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;
}
但我也无法调用它。
是否可以在委托中添加条件,如果可以,该怎么做?
谢谢你的帮助