可以删除带图片的传单 link

Possible to remove leaflet link with image

我正在使用 leaflet-directive 使用传单创建地图。

是否可以从地图中删除传单 link 和 OSM 版权。

我想放入传单图片。

删除版权信息可能不合法,但如果您熟悉javascript,请在传单代码中搜索

'leaflet-control-attribution'

问候

对属性控制实例的引用存储在您的 L.Map 实例的 attributionControl 属性 中:

var map = new L.Map('map').setView([0, 0], 0);

attribution = map.attributionControl;

完成后,您可以使用 setPrefix 方法设置新前缀:

attribution.setPrefix('<img src="image.png">');

http://leafletjs.com/reference.html#control-attribution-setprefix

创建地图对象时,试试这个:

var map = L.map('map', { attributionControl:false });

对我有用