Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
4f7b0ece
Commit
4f7b0ece
authored
Jul 09, 2017
by
Don Gagne
Committed by
GitHub
Jul 09, 2017
Browse files
Merge pull request #5421 from DonLakeFlyer/MapPolygnCenter
New polygon center calc
parents
d8fd83df
e20eedb0
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/MissionManager/QGCMapPolygon.cc
View file @
4f7b0ece
...
...
@@ -253,6 +253,8 @@ void QGCMapPolygon::removeVertex(int vertexIndex)
_polygonPath
.
removeAt
(
vertexIndex
);
emit
pathChanged
();
_updateCenter
();
}
void
QGCMapPolygon
::
_polygonModelCountChanged
(
int
count
)
...
...
@@ -265,9 +267,13 @@ void QGCMapPolygon::_updateCenter(void)
if
(
!
_ignoreCenterUpdates
)
{
QGeoCoordinate
center
;
if
(
_polygonPath
.
count
()
>
2
)
{
QPointF
centerPoint
=
_toPolygonF
().
boundingRect
().
center
();
center
=
_coordFromPointF
(
centerPoint
);
if
(
_polygonPath
.
count
()
>
2
)
{
QPointF
centroid
(
0
,
0
);
QPolygonF
polygonF
=
_toPolygonF
();
for
(
int
i
=
0
;
i
<
polygonF
.
count
();
i
++
)
{
centroid
+=
polygonF
[
i
];
}
center
=
_coordFromPointF
(
QPointF
(
centroid
.
x
()
/
polygonF
.
count
(),
centroid
.
y
()
/
polygonF
.
count
()));
}
_center
=
center
;
...
...
src/MissionManager/QGCMapPolygonTest.cc
View file @
4f7b0ece
...
...
@@ -171,7 +171,8 @@ void QGCMapPolygonTest::_testVertexManipulation(void)
// Vertex removal testing
_mapPolygon
->
removeVertex
(
1
);
QVERIFY
(
_multiSpyPolygon
->
checkOnlySignalByMask
(
pathChangedMask
|
polygonDirtyChangedMask
|
polygonCountChangedMask
|
centerChangedMask
));
// There is some double signalling on centerChanged which is not yet fixed, hence checkOnlySignals
QVERIFY
(
_multiSpyPolygon
->
checkOnlySignalsByMask
(
pathChangedMask
|
polygonDirtyChangedMask
|
polygonCountChangedMask
|
centerChangedMask
));
QVERIFY
(
_multiSpyModel
->
checkOnlySignalByMask
(
modelDirtyChangedMask
|
modelCountChangedMask
));
QCOMPARE
(
_mapPolygon
->
count
(),
3
);
polyList
=
_mapPolygon
->
path
();
...
...
src/MissionManager/QGCMapPolygonVisuals.qml
View file @
4f7b0ece
...
...
@@ -35,8 +35,9 @@ Item {
property
var
_splitHandlesComponent
property
var
_centerDragHandleComponent
property
real
_zorderDragHandle
:
QGroundControl
.
zOrderMapItems
+
2
property
real
_zorderSplitHandle
:
QGroundControl
.
zOrderMapItems
+
1
property
real
_zorderDragHandle
:
QGroundControl
.
zOrderMapItems
+
3
// Highest to prevent splitting when items overlap
property
real
_zorderSplitHandle
:
QGroundControl
.
zOrderMapItems
+
2
property
real
_zorderCenterHandle
:
QGroundControl
.
zOrderMapItems
+
1
// Lowest such that drag or split takes precedence
function
addVisuals
()
{
_polygonComponent
=
polygonComponent
.
createObject
(
mapControl
)
...
...
@@ -281,7 +282,7 @@ Item {
id
:
centerDragAreaComponent
MissionItemIndicatorDrag
{
z
:
_zorder
Drag
Handle
z
:
_zorder
Center
Handle
onItemCoordinateChanged
:
mapPolygon
.
center
=
itemCoordinate
onDragStart
:
mapPolygon
.
centerDrag
=
true
onDragStop
:
mapPolygon
.
centerDrag
=
false
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment