aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-05-13 22:31:02 -0700
committerGitHub <noreply@github.com>2018-05-13 22:31:02 -0700
commit9af405a391f61f32d1ed2d8d4a7a839dea8572ed (patch)
tree0255fe77c2e0f87785cb9db35ad67997bbb87427 /web
parentf1cc162fcaeed2173b70637ef3f0e8b6ad8c8104 (diff)
parent48988890f126bcc9da8f440c7f57201f9f992d49 (diff)
downloadetbsa-traccar-web-9af405a391f61f32d1ed2d8d4a7a839dea8572ed.tar.gz
etbsa-traccar-web-9af405a391f61f32d1ed2d8d4a7a839dea8572ed.tar.bz2
etbsa-traccar-web-9af405a391f61f32d1ed2d8d4a7a839dea8572ed.zip
Merge pull request #675 from Abyss777/geo_speedLimit
Add speedLimit attribute to Geofence
Diffstat (limited to 'web')
-rw-r--r--web/app/store/GeofenceAttributes.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/app/store/GeofenceAttributes.js b/web/app/store/GeofenceAttributes.js
index 2b8d2d8..b8e1535 100644
--- a/web/app/store/GeofenceAttributes.js
+++ b/web/app/store/GeofenceAttributes.js
@@ -24,5 +24,10 @@ Ext.define('Traccar.store.GeofenceAttributes', {
key: 'color',
name: Strings.attributeColor,
valueType: 'color'
+ }, {
+ key: 'speedLimit',
+ name: Strings.attributeSpeedLimit,
+ valueType: 'number',
+ dataType: 'speed'
}]
});