|
|
@ -495,19 +495,22 @@ FlightMap { |
|
|
|
anchorPoint.x: sourceItem.anchorPointX |
|
|
|
anchorPoint.x: sourceItem.anchorPointX |
|
|
|
anchorPoint.y: sourceItem.anchorPointY |
|
|
|
anchorPoint.y: sourceItem.anchorPointY |
|
|
|
|
|
|
|
|
|
|
|
sourceItem: MissionItemIndexLabel { |
|
|
|
MouseArea { |
|
|
|
checked: true |
|
|
|
anchors.fill: parent |
|
|
|
index: -1 |
|
|
|
onClicked: { |
|
|
|
label: qsTr("ROI here", "Make this a Region Of Interest") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onClicked: (position) => { |
|
|
|
|
|
|
|
var roiEditMenu = popupMenuComponent.createObject(_root, { coord: roiLocationItem.coordinate, contentItemComponent: roiEditMenuComponent }) |
|
|
|
var roiEditMenu = popupMenuComponent.createObject(_root, { coord: roiLocationItem.coordinate, contentItemComponent: roiEditMenuComponent }) |
|
|
|
var clickPoint = mapToItem(_root, position.x, position.y) |
|
|
|
var clickPoint = mapToItem(_root, mouse.x, mouse.y) |
|
|
|
roiEditMenu.setPosition(clickPoint.x, clickPoint.y) |
|
|
|
roiEditMenu.setPosition(clickPoint.x, clickPoint.y) |
|
|
|
roiEditMenu.open() |
|
|
|
roiEditMenu.open() |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sourceItem: MissionItemIndexLabel { |
|
|
|
|
|
|
|
checked: true |
|
|
|
|
|
|
|
index: -1 |
|
|
|
|
|
|
|
label: qsTr("ROI here", "Make this a Region Of Interest") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//-- Visibilty controlled by actual state |
|
|
|
//-- Visibilty controlled by actual state |
|
|
|
function show(coord) { |
|
|
|
function show(coord) { |
|
|
|
roiLocationItem.coordinate = coord |
|
|
|
roiLocationItem.coordinate = coord |
|
|
|