forked from organicmaps/organicmaps-tmp
[search] Fix search synonyms for China
This commit is contained in:
parent
a785af047b
commit
b075f5f771
2 changed files with 6 additions and 4 deletions
|
@ -69,6 +69,6 @@ Yukon: YT
|
|||
Россия: РФ
|
||||
|
||||
Китайская Народная Република: Китай, КНР
|
||||
Китай: Китайская Народная Република, КНР
|
||||
Китай: КНР
|
||||
People's Republic of China: China, PRC
|
||||
China: People's Republic of China, PRC
|
||||
China: PRC
|
||||
|
|
|
@ -77,8 +77,10 @@ public:
|
|||
for (size_t i = 1; i < tokens.size(); ++i)
|
||||
{
|
||||
strings::Trim(tokens[i]);
|
||||
// synonym should not has any spaces
|
||||
ASSERT(tokens[i].find_first_of(" \t") == string::npos, ());
|
||||
// For consistency, synonyms should not have any spaces.
|
||||
// For example, the hypothetical "Russia" -> "Russian Federation" mapping
|
||||
// would have the feature with name "Russia" match the request "federation". It would be wrong.
|
||||
CHECK(tokens[i].find_first_of(" \t") == string::npos, ());
|
||||
m_map.insert(make_pair(tokens[0], tokens[i]));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue