diff options
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/DistanceUnits.js | 20 | ||||
-rw-r--r-- | web/app/store/SpeedUnits.js | 4 |
2 files changed, 21 insertions, 3 deletions
diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js index 506f1077c..653bf6efb 100644 --- a/web/app/store/DistanceUnits.js +++ b/web/app/store/DistanceUnits.js @@ -20,5 +20,23 @@ Ext.define('Traccar.store.DistanceUnits', { data: [ {'key': 'km', 'name': strings.sharedKm}, {'key': 'mi', 'name': strings.sharedMi} - ] + ], + + convert: function(value, unit) { + switch (unit) { + case 'km': + return Math.round(value * 0.1) / 100; + case 'mi': + return Math.round(value * 0.0621371) / 100; + } + return value; + }, + + getUnitName: function(unit) { + if (unit) { + return this.findRecord('key', unit).get('name'); + } else { + return ''; + } + } }); diff --git a/web/app/store/SpeedUnits.js b/web/app/store/SpeedUnits.js index 78686fbb9..15c52625f 100644 --- a/web/app/store/SpeedUnits.js +++ b/web/app/store/SpeedUnits.js @@ -25,9 +25,9 @@ Ext.define('Traccar.store.SpeedUnits', { convert: function(value, unit) { switch (unit) { case 'kmh': - return value * 1.852; + return Math.round(value * 1.852 * 10) / 10; case 'mph': - return value * 1.15078; + return Math.round(value * 1.15078 * 10) / 10; } return value; }, |