%matplotlib inline %config InlineBackend.figure_format = 'svg' import matplotlib.pyplot as plt from geopandas import * shpfile = 'natural_regions/Natural_Regions_Maj.shp' regions = GeoDataFrame.from_file(shpfile) regions regions.plot() regions[regions.REGIONS.notnull()].plot() import mplleaflet ax = regions.plot() mplleaflet.display(fig=ax.figure)