diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-12-27 20:26:21 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 20:26:21 +1300 |
commit | ecdf23611e30707f1bc5f89420f9409acaa56652 (patch) | |
tree | 2bf13878f536d0b63e2b4645b57c264a171fb078 /web/app/store/DistanceUnits.js | |
parent | 082f7926b846f876613f27f21779b594e79ea0c7 (diff) | |
parent | 747c16cadc803fdf0e4de0dc331c84e29dd56e9c (diff) | |
download | trackermap-web-ecdf23611e30707f1bc5f89420f9409acaa56652.tar.gz trackermap-web-ecdf23611e30707f1bc5f89420f9409acaa56652.tar.bz2 trackermap-web-ecdf23611e30707f1bc5f89420f9409acaa56652.zip |
Merge pull request #371 from Abyss777/charts
Charts implementation
Diffstat (limited to 'web/app/store/DistanceUnits.js')
-rw-r--r-- | web/app/store/DistanceUnits.js | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/web/app/store/DistanceUnits.js b/web/app/store/DistanceUnits.js index cc9f1e92..0dcddbea 100644 --- a/web/app/store/DistanceUnits.js +++ b/web/app/store/DistanceUnits.js @@ -1,5 +1,5 @@ /* - * Copyright 2015 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -33,12 +33,21 @@ Ext.define('Traccar.store.DistanceUnits', { factor: 0.000539957 }], + convertValue: function (value, unit) { + var model; + if (!unit) { + unit = 'km'; + } + model = this.findRecord('key', unit); + return value * model.get('factor'); + }, + formatValue: function (value, unit) { var model; if (!unit) { unit = 'km'; } model = this.findRecord('key', unit); - return (value * model.get('factor')).toFixed(2) + ' ' + model.get('name'); + return this.convertValue(value, unit).toFixed(2) + ' ' + model.get('name'); } }); |