.. _sphx_glr_gallery_wms.py: Interactive WMS (Web Map Service) --------------------------------- This example demonstrates the interactive pan and zoom capability supported by an OGC web services Web Map Service (WMS) aware axes. .. image:: /gallery/images/sphx_glr_wms_001.png :align: center .. code-block:: python import cartopy.crs as ccrs import matplotlib.pyplot as plt def main(): fig = plt.figure(figsize=(10, 5)) ax = fig.add_subplot(1, 1, 1, projection=ccrs.InterruptedGoodeHomolosine()) ax.coastlines() ax.add_wms(wms='http://vmap0.tiles.osgeo.org/wms/vmap0', layers=['basic']) plt.show() if __name__ == '__main__': main() **Total running time of the script:** ( 0 minutes 1.215 seconds) .. container:: sphx-glr-footer .. container:: sphx-glr-download :download:`Download Python source code: wms.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: wms.ipynb ` .. rst-class:: sphx-glr-signature `Generated by Sphinx-Gallery `_