Maps 如何修复多个地图的同一图例

Maps 如何修复多个地图的同一图例,maps,Maps,我正在处理几个地图,但我想确定图例的间隔 没有那么多代码,只有以下代码: fig,ax = plt.subplots(nrows=1 , ncols =2, figsize =(25,16), constrained_layout=False) #fig.suptitle('Domestic Violence', fontsize=24) #fig.subplots_adjust(bottom=0.2) region_geojson.plot(column='VIOLENCIA_2013',

我正在处理几个地图,但我想确定图例的间隔

没有那么多代码,只有以下代码:

fig,ax = plt.subplots(nrows=1 , ncols =2, figsize =(25,16), constrained_layout=False)
#fig.suptitle('Domestic Violence', fontsize=24)
#fig.subplots_adjust(bottom=0.2) 

region_geojson.plot(column='VIOLENCIA_2013',scheme="percentiles",legend=True, edgecolor=u'black',cmap='Set1', ax = ax[0])
#region_geojson.plot(column='VIOLENCIA_2014',scheme="percentiles",legend=True, edgecolor=u'black',cmap='Set1', ax = ax[0,1])
#region_geojson.plot(column='VIOLENCIA_2015',scheme="percentiles",legend=True, edgecolor=u'black',cmap='Set1', ax = ax[1,0])
region_geojson.plot(column='VIOLENCIA_2017',scheme="percentiles",legend=True, edgecolor=u'black',cmap='Set1', ax = ax[1])
plt.show()
提前谢谢