[Experimental] Do no skip small coastline polygons with first scale level.

This commit is contained in:
vng 2011-10-17 15:47:30 +03:00 committed by Alex Zolotarev
parent 18104efd0d
commit 5561301959
2 changed files with 8 additions and 4 deletions

View file

@ -463,13 +463,17 @@ namespace feature
SimplifyPoints(*iH, simplified.back(), level, isCoast, rect);
if (!IsGoodArea(simplified.back(), level))
simplified.pop_back();
else
// Do not skip small coastline polygons for the first scale level.
if ((isCoast && i == 0) || IsGoodArea(simplified.back(), level))
{
// At this point we don't need last point equal to first.
simplified.back().pop_back();
}
else
{
// Remove small polygon.
simplified.pop_back();
}
}
if (!simplified.empty())

View file

@ -5,7 +5,7 @@
namespace feature
{
static int g_arrWorldScales[] = { 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
static int g_arrWorldScales[] = { 3, 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
static int g_arrCountryScales[] = { 12, 15, 17 }; // 17 = scales::GetUpperScale()
inline string GetTagForIndex(char const * prefix, int ind)