From e637bd7c022560dcc9c48516dc22a884a5de8122 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 25 Jul 2015 19:43:16 +1200 Subject: Convert speed value to units --- web/app/store/SpeedUnits.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'web/app/store') diff --git a/web/app/store/SpeedUnits.js b/web/app/store/SpeedUnits.js index b658fc936..ee345621b 100644 --- a/web/app/store/SpeedUnits.js +++ b/web/app/store/SpeedUnits.js @@ -20,5 +20,19 @@ Ext.define('Traccar.store.SpeedUnits', { data : [ {'key': 'kph', 'name': strings.shared_kph}, {'key': 'mph', 'name': strings.shared_mph} - ] + ], + + convert: function(value, unit) { + switch (unit) { + case 'kph': + return value * 1.852; + case 'mph': + return value * 1.15078; + } + return value; + }, + + getUnitName: function(unit) { + return this.findRecord('key', unit).get('name'); + } }); -- cgit v1.2.3