首页 / 浏览问题 / 云GIS / 问题详情
leaflet 切换专题图时绑定事件
17EXP 2020年04月03日

举例https://iclient.supermap.io/examples/leaflet/editor.html#controler_layerswitcher ,在做China和ChinaDark切换专题图时,我想触发事件加载专题图的一些信息,我应该怎么做?我需要对不同的专题图加载不同信息。

1个回答

网上找了找API,找到了方法。

 map.on('baselayerchange', function(l){
           console.log("baselayerchange",l);
           console.log("baselayerchange",l.layer.options);
           console.log("CONTROLS:", controls)
       })
17EXP 2020年04月03日
...