使用 extendComponent引入leaflet地图,保存图片时没有地图背景echarts 配置项内容和展示

请问使用什么方法或者工具才能保存的echarts图中map也存在,谢谢!

配置项如下
      option={
        title: {
            text: 'map",
            left: 'center',
            textStyle: {
                color: 'red'
            }
        },
        leaflet: {
            center: [119.3, 36.55],
            zoom: 7,
            roam: true,
            layerControl: {
                position: 'topright'
            },
            tiles: [{
                
                urlTemplate: 'http://10.37.55.199:8002/Tiles/{z}/{x}/{y}.png',
                options: {
                    minZoom: 7,
                    maxZoom: 15,
                    attribution: '© OpenStreetMap contributors & sxh ',
                }
            }],
                toolbox: {
	        show : true,
            itemSize:30,
            x:15,
	        y:"center",
            iconStyle:{color:'rgba(193,210,240,1)'},
            feature : {
	            saveAsImage : {show: true}
	        }
	    },
        series: [],
};
       
    
截图如下