forked from organicmaps/organicmaps-tmp
Added unicode Compatible Composition for all features "name" to improve search
This commit is contained in:
parent
10be7ac8eb
commit
015250ae97
2 changed files with 10 additions and 3 deletions
|
@ -9,7 +9,7 @@ CONFIG += console
|
|||
CONFIG -= app_bundle
|
||||
TEMPLATE = app
|
||||
|
||||
# needed for Platform::WorkingDir()
|
||||
# needed for Platform::WorkingDir() and unicode combining
|
||||
QT += core
|
||||
|
||||
win32:LIBS += -lShell32
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include "../std/set.hpp"
|
||||
#include "../std/algorithm.hpp"
|
||||
|
||||
#include "../base/start_mem_debug.hpp"
|
||||
#include <QtCore/QString>
|
||||
|
||||
namespace ftype {
|
||||
|
||||
|
@ -548,7 +548,14 @@ namespace ftype {
|
|||
string lang;
|
||||
strings::Tokenize(k, "\t :", get_lang(lang));
|
||||
if (!lang.empty())
|
||||
m_params.name.AddString(lang, v);
|
||||
{
|
||||
// Unicode Compatibility Decomposition,
|
||||
// followed by Canonical Composition (NFKC).
|
||||
// Needed for better search matching
|
||||
QByteArray const normBytes = QString::fromUtf8(
|
||||
v.c_str()).normalized(QString::NormalizationForm_KC).toUtf8();
|
||||
m_params.name.AddString(lang, normBytes.constData());
|
||||
}
|
||||
|
||||
// get layer
|
||||
if (k == "layer" && m_params.layer == 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue