我正在使用Leftlet并创建一个像这样的地图
var map = L.map('map').setView([54.793577, -126.687482], 6);
L.esri.basemapLayer('NationalGeographic').addTo(map);
现在,请您告诉我如何更新传单控制属性 显示以下信息
attribution: '© Thesite contributors, Points © 2012 LINZ'
我试过这种方式
var map = L.map('map').setView([54.793577, -126.687482], 6, {attribution: '© OpenStreetMap contributors, Points © 2012 LINZ'});
但它没有用
答案 0 :(得分:1)
documentation for the attribution control会告诉你如何:
map.attributionControl.addAttribution('© Thesite contributors, Points © 2012 LINZ' );