aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map/MapController.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-04-25 18:34:38 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2019-04-25 18:34:38 -0700
commiteb4c3b7910312d0f75ee358cd5607dd68e5400cf (patch)
tree6b24de1d1541920bb4ca71fcb877376c17311389 /web/app/view/map/MapController.js
parent17c237aa7bfc1956ef231f42bfb31d911eb8ad3a (diff)
downloadetbsa-traccar-web-eb4c3b7910312d0f75ee358cd5607dd68e5400cf.tar.gz
etbsa-traccar-web-eb4c3b7910312d0f75ee358cd5607dd68e5400cf.tar.bz2
etbsa-traccar-web-eb4c3b7910312d0f75ee358cd5607dd68e5400cf.zip
Fix map labels encoding (fix #737)
Diffstat (limited to 'web/app/view/map/MapController.js')
-rw-r--r--web/app/view/map/MapController.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/app/view/map/MapController.js b/web/app/view/map/MapController.js
index 38b2340..7ba0ee3 100644
--- a/web/app/view/map/MapController.js
+++ b/web/app/view/map/MapController.js
@@ -83,7 +83,8 @@ Ext.define('Traccar.view.map.MapController', {
var feature = new ol.Feature(
Traccar.GeofenceConverter.wktToGeometry(this.getView().getMapView(), geofence.get('area')));
feature.setStyle(this.getAreaStyle(
- geofence.get('name'), geofence.get('attributes') ? geofence.get('attributes').color : null));
+ Ext.String.htmlDecode(geofence.get('name')),
+ geofence.get('attributes') ? geofence.get('attributes').color : null));
this.getView().getGeofencesSource().addFeature(feature);
return true;
}, this);