diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-03 13:39:33 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-03 13:39:33 +1200 |
commit | 79f8c34319053236ee03359b1ecf38e065206485 (patch) | |
tree | 9760d8d0a0cfc8a8ff04ac770c472bf2923560ae /web/app/view/GeofenceDialogController.js | |
parent | 7ae587d430e793bbd9afd5607f7d266816af127a (diff) | |
download | trackermap-server-79f8c34319053236ee03359b1ecf38e065206485.tar.gz trackermap-server-79f8c34319053236ee03359b1ecf38e065206485.tar.bz2 trackermap-server-79f8c34319053236ee03359b1ecf38e065206485.zip |
Start geofence drawing implementation
Diffstat (limited to 'web/app/view/GeofenceDialogController.js')
-rw-r--r-- | web/app/view/GeofenceDialogController.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/GeofenceDialogController.js b/web/app/view/GeofenceDialogController.js index 96be0d3a5..d8597457f 100644 --- a/web/app/view/GeofenceDialogController.js +++ b/web/app/view/GeofenceDialogController.js @@ -19,14 +19,14 @@ Ext.define('Traccar.view.GeofenceDialogController', { alias: 'controller.geofenceDialog', requires: [ - 'Traccar.view.BaseMap' + 'Traccar.view.GeofenceMap' ], onAreaClick: function (button) { Ext.create('Traccar.view.BaseWindow', { title: Strings.sharedArea, items: { - xtype: 'baseMapView' + xtype: 'geofenceMapView' } }).show(); } |