forked from organicmaps/organicmaps
Tune simplify scales array.
This commit is contained in:
parent
2a69582cc7
commit
1603d4e013
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ namespace feature
|
|||
}
|
||||
|
||||
|
||||
static int g_arrScales[] = { 5, 10, 14, 17 }; // 17 = scales::GetUpperScale()
|
||||
static int g_arrScales[] = { 7, 10, 14, 17 }; // 17 = scales::GetUpperScale()
|
||||
|
||||
inline string GetTagForIndex(char const * prefix, int ind)
|
||||
{
|
||||
|
|
|
@ -272,7 +272,7 @@ namespace feature
|
|||
|
||||
for (int i = m_scales-1; i >= 0; --i)
|
||||
{
|
||||
if (fb.IsDrawableInRange(i > 0 ? g_arrScales[i-1] : 0, g_arrScales[i]))
|
||||
if (fb.IsDrawableInRange(i > 0 ? g_arrScales[i-1] + 1 : 0, g_arrScales[i]))
|
||||
{
|
||||
// simplify and serialize geometry
|
||||
points_t points;
|
||||
|
|
Loading…
Add table
Reference in a new issue