如何更新ESRI传单归因小组

时间:2015-08-31 21:11:09

标签: leaflet

我正在使用Leftlet并创建一个像这样的地图

 var map = L.map('map').setView([54.793577, -126.687482], 6); 
 L.esri.basemapLayer('NationalGeographic').addTo(map); 

现在,请您告诉我如何更新传单控制属性 显示以下信息

 attribution: '© Thesite contributors, Points &copy 2012 LINZ' 

我试过这种方式

 var map = L.map('map').setView([54.793577, -126.687482], 6, {attribution: '© OpenStreetMap contributors, Points &copy 2012 LINZ'});

但它没有用

1 个答案:

答案 0 :(得分:1)

documentation for the attribution control会告诉你如何:

map.attributionControl.addAttribution('© Thesite contributors, Points &copy 2012 LINZ' );