| 2612 | } |
| 2613 | |
| 2614 | void FrontendRenderer::CheckAndRunFirstLaunchAnimation() |
| 2615 | { |
| 2616 | if (!m_firstTilesReady || m_firstLaunchAnimationInterrupted || !m_myPositionController->IsModeHasPosition()) |
| 2617 | return; |
| 2618 | |
| 2619 | int constexpr kDesiredZoomLevel = 13; |
| 2620 | m2::PointD const pos = m_myPositionController->GetDrawablePosition(); |
| 2621 | AddUserEvent(make_unique_dp<SetCenterEvent>(pos, kDesiredZoomLevel, true /* isAnim */, |
| 2622 | false /* trackVisibleViewport */, nullptr /* parallelAnimCreator */)); |
| 2623 | } |
| 2624 | |
| 2625 | void FrontendRenderer::ScheduleOverlayCollecting() |
| 2626 | { |
nothing calls this directly
no test coverage detected