QML LandmarkUnionFilter ElementThe LandmarkUnionFilter element specifies a union of landmark filters. More... Detailed DescriptionThis element is part of the QtMobility.location 1.1 module. Logical OR combinations of landmark filters can be formed using LandmarkUnionFilter. The following example creates a filter which filters for landmarks which are either named Nimbin, or located within 1500 metres from current location (or both). LandmarkUnionFilter {
id: landmarkUnionFilterNameAndProximity
LandmarkNameFilter {
name: "Nimbin"
}
LandmarkProximityFilter {
center: myPosition.position.coordinate
radius: 1500
}
}
See also LandmarkIntersectionFilter, LandmarkModel, and QLandmarkUnionFilter. © 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy X
|















