aboutsummaryrefslogtreecommitdiff
path: root/web/app/store
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/store')
-rw-r--r--web/app/store/MapTypes.js20
1 files changed, 14 insertions, 6 deletions
diff --git a/web/app/store/MapTypes.js b/web/app/store/MapTypes.js
index fbdc49acc..5f83940c9 100644
--- a/web/app/store/MapTypes.js
+++ b/web/app/store/MapTypes.js
@@ -17,10 +17,18 @@
Ext.define('Traccar.store.MapTypes', {
extend: 'Ext.data.Store',
fields: ['key', 'name'],
- data: [
- {'key': 'osm', 'name': strings.mapOsm},
- {'key': 'bingRoad', 'name': strings.mapBingRoad},
- {'key': 'bingAerial', 'name': strings.mapBingAerial},
- {'key': 'custom', 'name': strings.mapCustom},
- ]
+
+ data: [{
+ key: 'osm',
+ name: strings.mapOsm
+ }, {
+ key: 'bingRoad',
+ name: strings.mapBingRoad
+ }, {
+ key: 'bingAerial',
+ name: strings.mapBingAerial
+ }, {
+ key: 'custom',
+ name: strings.mapCustom
+ }]
});