forked from organicmaps/organicmaps
Simplified code to load cell tiles - now only 8 bucketing level is supported
This commit is contained in:
parent
48b2b004c7
commit
3032c87796
1 changed files with 1 additions and 14 deletions
|
@ -128,21 +128,8 @@ namespace storage
|
|||
TTilesContainer::const_iterator const first = sortedTiles.begin();
|
||||
TTilesContainer::const_iterator const last = sortedTiles.end();
|
||||
TTilesContainer::const_iterator found = lower_bound(first, last, TTile(line, 0));
|
||||
// @TODO current implementation supports only cellId level 8 and 7
|
||||
if (!(found != last && !(line < found->first)) && IsCellId(line))
|
||||
{
|
||||
line.resize(line.size() - 1);
|
||||
found = lower_bound(first, last, TTile(line, 0));
|
||||
}
|
||||
|
||||
if (found != last && !(line < found->first))
|
||||
{
|
||||
// fix extension for data files
|
||||
if (found->first.find_last_of(DATA_FILE_EXTENSION) == string::npos)
|
||||
currentCountry->AddTile(TTile(found->first + DATA_FILE_EXTENSION, found->second));
|
||||
else
|
||||
currentCountry->AddTile(*found);
|
||||
}
|
||||
currentCountry->AddTile(TTile(found->first + DATA_FILE_EXTENSION, found->second));
|
||||
}
|
||||
break;
|
||||
case 1: // country group
|
||||
|
|
Loading…
Add table
Reference in a new issue