forked from organicmaps/organicmaps
[geocoder] Fix street suffix ignoring in non street tokens
This commit is contained in:
parent
c5e9111019
commit
a33a7db094
1 changed files with 3 additions and 2 deletions
|
@ -260,10 +260,11 @@ void Geocoder::Go(Context & ctx, Type type) const
|
|||
vector<Type> allTypes;
|
||||
for (size_t tokId = 0; tokId < ctx.GetNumTokens(); ++tokId)
|
||||
{
|
||||
if (search::IsStreetSynonym(strings::MakeUniString(ctx.GetToken(tokId))))
|
||||
auto const t = ctx.GetTokenType(tokId);
|
||||
|
||||
if (t == Type::Street && search::IsStreetSynonym(strings::MakeUniString(ctx.GetToken(tokId))))
|
||||
continue;
|
||||
|
||||
auto const t = ctx.GetTokenType(tokId);
|
||||
certainty += GetWeight(t);
|
||||
if (t != Type::Count)
|
||||
allTypes.push_back(t);
|
||||
|
|
Loading…
Add table
Reference in a new issue