forked from organicmaps/organicmaps-tmp
Always show rounded current speed
Signed-off-by: TobiPeterG <tobi.goergens@gmail.com>
This commit is contained in:
parent
80add2247f
commit
df258d545f
1 changed files with 2 additions and 1 deletions
|
@ -202,7 +202,8 @@ double MpsToUnits(double metersPerSecond, Units units)
|
|||
std::string FormatSpeedNumeric(double metersPerSecond, Units units)
|
||||
{
|
||||
double const unitsPerHour = MpsToUnits(metersPerSecond, units);
|
||||
return ToStringPrecision(unitsPerHour, unitsPerHour >= 10.0 ? 0 : 1);
|
||||
double roundedValue = std::round(unitsPerHour);
|
||||
return std::to_string(static_cast<int>(roundedValue));
|
||||
}
|
||||
|
||||
std::string FormatOsmLink(double lat, double lon, int zoom)
|
||||
|
|
Loading…
Add table
Reference in a new issue