forked from organicmaps/organicmaps-tmp
Removed annoying zoom in route planning mode
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
f1e342714c
commit
49593bb09b
1 changed files with 8 additions and 5 deletions
|
@ -999,11 +999,14 @@ void RoutingManager::BuildRoute(uint32_t timeoutSec)
|
|||
if (IsRoutingActive())
|
||||
CloseRouting(false /* remove route points */);
|
||||
|
||||
// Show preview.
|
||||
m2::RectD rect = ShowPreviewSegments(routePoints);
|
||||
rect.Scale(kRouteScaleMultiplier);
|
||||
m_drapeEngine.SafeCall(&df::DrapeEngine::SetModelViewRect, rect, true /* applyRotation */,
|
||||
-1 /* zoom */, true /* isAnim */, true /* useVisibleViewport */);
|
||||
// Route points preview.
|
||||
// Disabled preview zoom to fix https://github.com/organicmaps/organicmaps/issues/5409.
|
||||
// Uncomment next lines to enable back zoom on route point add/remove.
|
||||
|
||||
//m2::RectD rect = ShowPreviewSegments(routePoints);
|
||||
//rect.Scale(kRouteScaleMultiplier);
|
||||
//m_drapeEngine.SafeCall(&df::DrapeEngine::SetModelViewRect, rect, true /* applyRotation */,
|
||||
// -1 /* zoom */, true /* isAnim */, true /* useVisibleViewport */);
|
||||
|
||||
m_routingSession.ClearPositionAccumulator();
|
||||
m_routingSession.SetUserCurrentPosition(routePoints.front().m_position);
|
||||
|
|
Loading…
Add table
Reference in a new issue