Display unit number only if <= 100 in the navigation maneuver panel.

Display only decade between 101 and 999.

Signed-off-by: FILLAU Jean-Maxime <jean-maxime.fillau@mapotempo.com>
This commit is contained in:
FILLAU Jean-Maxime 2016-08-16 14:07:27 +02:00
parent d1e38fffba
commit 3dd4db3346

View file

@ -44,7 +44,10 @@ bool FormatDistanceImpl(double m, string & res,
res = ToStringPrecision(v, v >= 10.0 ? 0 : 1) + high;
}
else
res = ToStringPrecision(lowV, 0) + low;
{
// To display unit number only if <= 100.
res = ToStringPrecision(lowV <= 100.0 ? lowV : round(lowV / 10) * 10, 0) + low;
}
return true;
}