diff --git a/iphone/Maps/Core/Search/MWMSearch.h b/iphone/Maps/Core/Search/MWMSearch.h index 2026d65619..225a5446ff 100644 --- a/iphone/Maps/Core/Search/MWMSearch.h +++ b/iphone/Maps/Core/Search/MWMSearch.h @@ -15,6 +15,8 @@ NS_SWIFT_NAME(Search) + (void)searchQuery:(NSString *)query forInputLocale:(NSString *)inputLocale withCategory:(BOOL)isCategory; + (void)showResultAtIndex:(NSUInteger)index; ++ (void)showEverywhereSearchResultsOnMap; ++ (void)showViewportSearchResultsOnMap; + (SearchItemType)resultTypeWithRow:(NSUInteger)row; + (NSUInteger)containerIndexWithRow:(NSUInteger)row; diff --git a/iphone/Maps/Core/Search/MWMSearch.mm b/iphone/Maps/Core/Search/MWMSearch.mm index 0f0c9fdba4..d640523c01 100644 --- a/iphone/Maps/Core/Search/MWMSearch.mm +++ b/iphone/Maps/Core/Search/MWMSearch.mm @@ -175,6 +175,18 @@ using Observers = NSHashTable; return result; } ++ (void)showEverywhereSearchResultsOnMap { + MWMSearch *manager = [MWMSearch manager]; + if (![MWMRouter isRoutingActive]) + GetFramework().ShowSearchResults(manager->m_everywhereResults); +} + ++ (void)showViewportSearchResultsOnMap { + MWMSearch *manager = [MWMSearch manager]; + if (![MWMRouter isRoutingActive]) + GetFramework().ShowSearchResults(manager->m_viewportResults); +} + + (NSArray *)getResults { NSMutableArray * results = [[NSMutableArray alloc] initWithCapacity:MWMSearch.resultsCount]; for (NSUInteger i = 0; i < MWMSearch.resultsCount; ++i) {