diff options
-rw-r--r-- | web/app/view/Map.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/app/view/Map.js b/web/app/view/Map.js index 22ba3b2b7..849f678a7 100644 --- a/web/app/view/Map.js +++ b/web/app/view/Map.js @@ -52,7 +52,10 @@ Ext.define('Traccar.view.Map', { if (type === 'custom') { layer = new ol.layer.Tile({ source: new ol.source.XYZ({ - url: server.get('mapUrl') + url: server.get('mapUrl'), + attributions: [new ol.Attribution({ + html: '' + })] }) }); } else if (type === 'bingRoad') { @@ -93,8 +96,7 @@ Ext.define('Traccar.view.Map', { this.map = new ol.Map({ target: this.body.dom.id, layers: [layer, vectorLayer], - view: this.mapView, - controls: ol.control.defaults({ attribution: false }) + view: this.mapView }); this.map.on('click', function (e) { |