One possibility is to call plt.figure(figsize=(WIDTH, HEIGHT))before you call any of the drawing methods of your map object, for example:
from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
plt.figure(figsize=(12,6))
map = Basemap()
map.drawcoastlines()
map.plot()
source
share