diff options
Diffstat (limited to 'web/app/view/MapController.js')
-rw-r--r-- | web/app/view/MapController.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js index 01cf7f46..ba72171d 100644 --- a/web/app/view/MapController.js +++ b/web/app/view/MapController.js @@ -114,8 +114,10 @@ Ext.define('Traccar.view.MapController', { } }, - followSelected: function () { - return Ext.getCmp('deviceFollowButton') && Ext.getCmp('deviceFollowButton').pressed; + onFollowClick: function (button, pressed) { + if (pressed && this.selectedMarker) { + this.getView().getMapView().setCenter(this.selectedMarker.getGeometry().getCoordinates()); + } }, showLiveRoutes: function (button) { @@ -168,7 +170,7 @@ Ext.define('Traccar.view.MapController', { } - if (marker === this.selectedMarker && this.followSelected()) { + if (marker === this.selectedMarker && this.lookupReference('deviceFollowButton').pressed) { this.getView().getMapView().setCenter(marker.getGeometry().getCoordinates()); } }, |