forked from organicmaps/organicmaps
[map] enable track selection for ios
Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
parent
4082a783dc
commit
3a5c9aee89
1 changed files with 6 additions and 1 deletions
|
@ -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()))
|
||||
|
|
Loading…
Add table
Reference in a new issue