fig = plt.figure()
ax = fig.add_subplot(projection=ccrs.Miller())
ax.coastlines()
ax.gridlines(draw_labels=['right', 'bottom'],
             xlocs=np.linspace(-180,180,13), ylocs=np.linspace(-90,90,7),
             linewidth=0.5, color='silver', xlabel_style={'rotation':270})