[test] Don't simplify line feature geometry for the last scale. Needed to test routing.

This commit is contained in:
Denis Koronchik 2014-07-09 18:26:40 +02:00 committed by Alex Zolotarev
parent 10acdf3b5f
commit bc8c0ddcaa

View file

@ -427,7 +427,8 @@ namespace feature
}
*/
for (int i = m_header.GetScalesCount()-1; i >= 0; --i)
int const scalesStart = m_header.GetScalesCount() - 1;
for (int i = scalesStart; i >= 0; --i)
{
int const level = m_header.GetScale(i);
if (fb.IsDrawableInRange(i > 0 ? m_header.GetScale(i-1) + 1 : 0, level))
@ -436,9 +437,14 @@ namespace feature
bool const isCoast = fb.GetCoastCell(dummy);
m2::RectD const rect = fb.GetLimitRect();
// simplify and serialize geometry
// Simplify and serialize geometry.
points_t points;
SimplifyPoints(holder.GetSourcePoints(), points, level, isCoast, rect);
// Do not change linear geometry for the upper scale.
if (isLine && i == scalesStart)
points = holder.GetSourcePoints();
else
SimplifyPoints(holder.GetSourcePoints(), points, level, isCoast, rect);
if (isLine)
holder.AddPoints(points, i);