fillcontinents

Muestra los continentes rellenándolos con un cierto color. Permite especificar el color de los lagos también:

fig = plt.figure(figsize = (10, 6))
m = Basemap()
m.fillcontinents(color = 'NavajoWhite', lake_color = "DodgerBlue");

fillcontinents