mplleaflet html プロットに凡例を追加する方法を教えてもらえますか。次に、最初のズームを選択する方法を教えてください。
geopanda でシェープファイルを開き、インタラクティブな Web マップにプロパティをプロットします
コード例:
import geopandas as gp
shapefile = 'shapefile/ne_50m_admin_0_countries.shp'
df_shapefile_countries = gpd.GeoDataFrame.from_file(shapefile)
import mplleaflet
ax = df_shapefile_countries .plot(column='pop_est')
mplleaflet.show(fig=ax.figure)
画像例: 東南アジアなどにすぐにズームしたい