aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/app/view/DevicesController.js1
-rw-r--r--web/app/view/MapController.js6
2 files changed, 4 insertions, 3 deletions
diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js
index aa8e788..a31ceb7 100644
--- a/web/app/view/DevicesController.js
+++ b/web/app/view/DevicesController.js
@@ -147,6 +147,7 @@ Ext.define('Traccar.view.DevicesController', {
selectDevice: function (device, center) {
this.getView().getSelectionModel().select([device], false, true);
+ this.updateButtons(this.getView().getSelectionModel());
this.getView().getView().focusRow(device);
},
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js
index 103d62e..c981fab 100644
--- a/web/app/view/MapController.js
+++ b/web/app/view/MapController.js
@@ -86,12 +86,12 @@ Ext.define('Traccar.view.MapController', {
}
},
- changeMarkerColor: function (style, color) {
+ changeMarkerColor: function (style, color, category) {
var newStyle = new ol.style.Style({
image: Traccar.DeviceImages.getImageIcon(color,
style.getImage().zoom,
style.getImage().angle,
- style.getImage().category),
+ category),
text: style.getText()
});
return newStyle;
@@ -111,7 +111,7 @@ Ext.define('Traccar.view.MapController', {
if (deviceId in this.latestMarkers) {
marker = this.latestMarkers[deviceId];
marker.setStyle(
- this.changeMarkerColor(marker.getStyle(), this.getDeviceColor(device)));
+ this.changeMarkerColor(marker.getStyle(), this.getDeviceColor(device), device.get('category')));
}
}
},