如何减少 cartopy GeoAxes 底部的上下文源页脚?

How can I reduce the contextily source footer at the bottom of a cartopy GeoAxes?

我正在尝试将上下文底图绘制到我的一个 cartopy GeoAxes 上,但问题是底部的源页脚太大了。有什么办法可以减小它的尺寸吗?谢谢!

这就是我将它简单地添加到我的轴上的方法:

import contextily as ctx

ax2=fig.add_subplot(gs01[:,0], projection=ccrs.PlateCarree())
ctx.add_basemap(ax2)

您可以在ctx.add_basemap中设置选项attribution_size,例如:-

ctx.add_basemap(ax2, attribution_size=6)