diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-09-06 23:33:09 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-06 23:33:09 +1200 |
commit | 5e6a5e69994aff3c1fe9aca427c746438a22c325 (patch) | |
tree | ae00dce3f93e1a1b44de84dc1f38aa0cdc4be43b /web/app/view/ServerDialog.js | |
parent | 0d3c05a24992eeeba02032e474d3a9bbb3239f10 (diff) | |
parent | d7afbb815c7d185df9143f886a7494cb73a69ac1 (diff) | |
download | trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.tar.gz trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.tar.bz2 trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.zip |
Merge pull request #2287 from Abyss777/get_center_from_map
Retrieve map state for user and server
Diffstat (limited to 'web/app/view/ServerDialog.js')
-rw-r--r-- | web/app/view/ServerDialog.js | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/web/app/view/ServerDialog.js b/web/app/view/ServerDialog.js index dd4579168..46c76ffa8 100644 --- a/web/app/view/ServerDialog.js +++ b/web/app/view/ServerDialog.js @@ -18,10 +18,10 @@ Ext.define('Traccar.view.ServerDialog', { extend: 'Traccar.view.BaseEditDialog', requires: [ - 'Traccar.view.BaseEditDialogController' + 'Traccar.view.MapPickerDialogController' ], - controller: 'baseEditDialog', + controller: 'mapPickerDialog', title: Strings.serverTitle, items: { @@ -67,16 +67,19 @@ Ext.define('Traccar.view.ServerDialog', { valueField: 'key' }, { xtype: 'numberfield', + reference: 'latitude', name: 'latitude', fieldLabel: Strings.positionLatitude, decimalPrecision: Traccar.Style.coordinatePrecision }, { xtype: 'numberfield', + reference: 'longitude', name: 'longitude', fieldLabel: Strings.positionLongitude, decimalPrecision: Traccar.Style.coordinatePrecision }, { xtype: 'numberfield', + reference: 'zoom', name: 'zoom', fieldLabel: Strings.serverZoom }, { @@ -85,5 +88,24 @@ Ext.define('Traccar.view.ServerDialog', { fieldLabel: Strings.settingsTwelveHourFormat, allowBlank: false }] - } + }, + + buttons: [{ + text: Strings.sharedAttributes, + handler: 'showAttributesView' + }, { + glyph: 'xf041@FontAwesome', + minWidth: 0, + handler: 'getMapState', + tooltip: Strings.sharedGetMapState, + tooltipType: 'title' + }, { + xtype: 'tbfill' + }, { + text: Strings.sharedSave, + handler: 'onSaveClick' + }, { + text: Strings.sharedCancel, + handler: 'closeView' + }] }); |