summaryrefslogtreecommitdiff
path: root/src/location/quickmapitems/qdeclarativegeomapitemutils_p.h
diff options
context:
space:
mode:
authorMatthias Rauter <matthias.rauter@qt.io>2023-01-26 17:18:50 +0100
committerMatthias Rauter <matthias.rauter@qt.io>2023-02-14 16:31:13 +0100
commit8b9ecad4bed0150adcbdf91db3f5f9507a156fd6 (patch)
tree6cd08872c366a32ed041701654d15559325fd464 /src/location/quickmapitems/qdeclarativegeomapitemutils_p.h
parentb842a6cdcce0ee43a48ec084180d9dc065b599a1 (diff)
downloadqtlocation-8b9ecad4bed0150adcbdf91db3f5f9507a156fd6.tar.gz
Correct and improve the rendering of QuickMapItems
Various MapItems were not rendered correctly, especially in corner cases. This change ensures that MapItems are rendered correctly in the vast majority of cases. All MapItems are shown correctly if they wrap around the globe and appear twice on the map. Circles that span around the globe or are located near poles are shown correclty and filled all the way to the border of the map. Polygons are shown correctly including their holes. The code was simplified and some artefacts of previous implementations were removed. Fixes: QTBUG-110701 Fixes: QTBUG-110511 Pick-to: 6.5 Change-Id: I1110659989436cd5a93f6ec26f75caa06d5f2b71 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/location/quickmapitems/qdeclarativegeomapitemutils_p.h')
-rw-r--r--src/location/quickmapitems/qdeclarativegeomapitemutils_p.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/location/quickmapitems/qdeclarativegeomapitemutils_p.h b/src/location/quickmapitems/qdeclarativegeomapitemutils_p.h
index 2f117520..50ece528 100644
--- a/src/location/quickmapitems/qdeclarativegeomapitemutils_p.h
+++ b/src/location/quickmapitems/qdeclarativegeomapitemutils_p.h
@@ -52,6 +52,14 @@ namespace QDeclarativeGeoMapItemUtils
}
};
+
+ double distanceSqrPointLine(double p0_x
+ , double p0_y
+ , double p1_x
+ , double p1_y
+ , double p2_x
+ , double p2_y);
+
void wrapPath(const QList<QGeoCoordinate> &perimeter
, const QGeoCoordinate &geoLeftBound
, const QGeoProjectionWebMercator &p
@@ -80,6 +88,8 @@ namespace QDeclarativeGeoMapItemUtils
, const QGeoProjectionWebMercator &p
, QPainterPath &projectedBbox);
+ QRectF boundingRectangleFromList(const QList<QDoubleVector2D> &list);
+
};
QT_END_NAMESPACE