forked from organicmaps/organicmaps
Assume "lit" type as useless for POI.
This commit is contained in:
parent
eb80547d63
commit
46b5341027
1 changed files with 2 additions and 2 deletions
|
@ -49,12 +49,12 @@ public:
|
|||
{
|
||||
Classificator const & c = classif();
|
||||
|
||||
char const * arr1[][1] = { { "building" }, { "oneway" } };
|
||||
char const * arr1[][1] = { { "building" }, { "oneway" }, { "lit" } };
|
||||
|
||||
for (size_t i = 0; i < ARRAY_SIZE(arr1); ++i)
|
||||
m_types.push_back(c.GetTypeByPath(vector<string>(arr1[i], arr1[i] + 1)));
|
||||
}
|
||||
bool operator()(uint32_t t) const
|
||||
bool operator() (uint32_t t) const
|
||||
{
|
||||
return (find(m_types.begin(), m_types.end(), t) != m_types.end());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue