forked from organicmaps/organicmaps
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:
parent
d1e38fffba
commit
3dd4db3346
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue