diff options
author | Abyss777 <abyss@fox5.ru> | 2018-05-14 08:47:34 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-05-14 08:47:34 +0500 |
commit | 48988890f126bcc9da8f440c7f57201f9f992d49 (patch) | |
tree | 0255fe77c2e0f87785cb9db35ad67997bbb87427 /web/app | |
parent | f1cc162fcaeed2173b70637ef3f0e8b6ad8c8104 (diff) | |
download | trackermap-web-48988890f126bcc9da8f440c7f57201f9f992d49.tar.gz trackermap-web-48988890f126bcc9da8f440c7f57201f9f992d49.tar.bz2 trackermap-web-48988890f126bcc9da8f440c7f57201f9f992d49.zip |
Add speedLimit attribute to Geofence
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/store/GeofenceAttributes.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/app/store/GeofenceAttributes.js b/web/app/store/GeofenceAttributes.js index 2b8d2d89..b8e15357 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' }] }); |