From 3a5c9aee89873bfac6e8647b10a5c7811d29c4d4 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Thu, 28 Nov 2024 17:41:38 +0400 Subject: [PATCH] [map] enable track selection for ios Signed-off-by: Kiryl Kaveryn --- map/framework.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/map/framework.cpp b/map/framework.cpp index 9c519027fc..4f84c70135 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2240,7 +2240,12 @@ place_page::Info Framework::BuildPlacePageInfo(place_page::BuildInfo const & bui // @TODO: (KK) Enable track selection. // The isTrackSelectionEnabled should be removed to enable the track selection when the UI will be implemented. - const bool isTrackSelectionEnabled = false; + #if defined(TARGET_OS_IPHONE) + bool constexpr isTrackSelectionEnabled = true; + #else + bool constexpr isTrackSelectionEnabled = false; + #endif + // Using VisualParams inside FindTrackInTapPosition/GetDefaultTapRect requires drapeEngine. if (isTrackSelectionEnabled && m_drapeEngine != nullptr && buildInfo.IsTrackMatchingEnabled() && !(isFeatureMatchingEnabled && selectedFeature.IsValid()))