aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/attributes/useGeofenceAttributes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-15 13:04:00 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-15 13:04:00 -0700
commit6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc (patch)
tree8712dcf947f4e6fa0795faa4667e9bb787775d72 /modern/src/common/attributes/useGeofenceAttributes.js
parent5faf345b841da9af97a45cc057a58b63b2379388 (diff)
downloadtrackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.tar.gz
trackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.tar.bz2
trackermap-web-6af8b218a1d9be4d8dcf6a8398b08c874d8a12dc.zip
Update known attributes
Diffstat (limited to 'modern/src/common/attributes/useGeofenceAttributes.js')
-rw-r--r--modern/src/common/attributes/useGeofenceAttributes.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/modern/src/common/attributes/useGeofenceAttributes.js b/modern/src/common/attributes/useGeofenceAttributes.js
index 89908aa5..a5cd068b 100644
--- a/modern/src/common/attributes/useGeofenceAttributes.js
+++ b/modern/src/common/attributes/useGeofenceAttributes.js
@@ -1,8 +1,18 @@
import { useMemo } from 'react';
export default (t) => useMemo(() => ({
+ color: {
+ name: t('attributeColor'),
+ type: 'string',
+ },
speedLimit: {
name: t('attributeSpeedLimit'),
- type: 'string',
+ type: 'number',
+ subtype: 'speed',
+ },
+ polylineDistance: {
+ name: t('attributePolylineDistance'),
+ type: 'number',
+ subtype: 'distance',
},
}), [t]);