summaryrefslogtreecommitdiff
path: root/src/location
diff options
context:
space:
mode:
Diffstat (limited to 'src/location')
-rw-r--r--src/location/maps/qgeoprojection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/location/maps/qgeoprojection.cpp b/src/location/maps/qgeoprojection.cpp
index a99656c6..74736cef 100644
--- a/src/location/maps/qgeoprojection.cpp
+++ b/src/location/maps/qgeoprojection.cpp
@@ -685,7 +685,7 @@ void QGeoProjectionWebMercator::updateVisibleRegion()
m_visibleRegionExpanded.clear();
for (const QDoubleVector2D &v: qAsConst(m_visibleRegion)) {
const QDoubleVector2D vc = v - centroid;
- m_visibleRegionExpanded.push_back(centroid + vc * 1.05); // fixing expansion factor to 1.05
+ m_visibleRegionExpanded.push_back(centroid + vc * 1.2); // fixing expansion factor to 1.2
}
c2t::clip2tri clipperExpanded;