forked from organicmaps/organicmaps
Fix scale level for geometry during indexing.
This commit is contained in:
parent
741a005a41
commit
1aa1ef443b
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public:
|
|||
{
|
||||
if (FeatureShouldBeIndexed(f))
|
||||
{
|
||||
vector<int64_t> const cells = covering::CoverFeature(f, m_ScaleRange.second);
|
||||
vector<int64_t> const cells = covering::CoverFeature(f, m_ScaleRange.second-1);
|
||||
for (vector<int64_t>::const_iterator it = cells.begin(); it != cells.end(); ++it)
|
||||
m_Sorter.Add(CellFeaturePair(*it, offset));
|
||||
++m_NumFeatures;
|
||||
|
|
Loading…
Add table
Reference in a new issue