Tile Sources#

Download this notebook from GitHub (right-click to download).


import geoviews as gv

from geoviews import opts, tile_sources as gvts

gv.extension('bokeh')

List#

gvts.tile_sources
{'CartoDark': :WMTS   [Longitude,Latitude],
 'CartoEco': :WMTS   [Longitude,Latitude],
 'CartoLight': :WMTS   [Longitude,Latitude],
 'CartoMidnight': :WMTS   [Longitude,Latitude],
 'EsriImagery': :WMTS   [Longitude,Latitude],
 'EsriNatGeo': :WMTS   [Longitude,Latitude],
 'EsriUSATopo': :WMTS   [Longitude,Latitude],
 'EsriTerrain': :WMTS   [Longitude,Latitude],
 'EsriReference': :WMTS   [Longitude,Latitude],
 'EsriOceanBase': :WMTS   [Longitude,Latitude],
 'EsriOceanReference': :WMTS   [Longitude,Latitude],
 'EsriWorldPhysical': :WMTS   [Longitude,Latitude],
 'EsriWorldShadedRelief': :WMTS   [Longitude,Latitude],
 'EsriWorldTopo': :WMTS   [Longitude,Latitude],
 'EsriWorldDarkGrayBase': :WMTS   [Longitude,Latitude],
 'EsriWorldDarkGrayReference': :WMTS   [Longitude,Latitude],
 'EsriWorldLightGrayBase': :WMTS   [Longitude,Latitude],
 'EsriWorldLightGrayReference': :WMTS   [Longitude,Latitude],
 'EsriWorldHillshadeDark': :WMTS   [Longitude,Latitude],
 'EsriWorldHillshade': :WMTS   [Longitude,Latitude],
 'EsriAntarcticImagery': :WMTS   [Longitude,Latitude],
 'EsriArcticImagery': :WMTS   [Longitude,Latitude],
 'EsriArcticOceanBase': :WMTS   [Longitude,Latitude],
 'EsriArcticOceanReference': :WMTS   [Longitude,Latitude],
 'EsriWorldBoundariesAndPlaces': :WMTS   [Longitude,Latitude],
 'EsriWorldBoundariesAndPlacesAlternate': :WMTS   [Longitude,Latitude],
 'EsriWorldTransportation': :WMTS   [Longitude,Latitude],
 'EsriDelormeWorldBaseMap': :WMTS   [Longitude,Latitude],
 'EsriWorldNavigationCharts': :WMTS   [Longitude,Latitude],
 'EsriWorldStreetMap': :WMTS   [Longitude,Latitude],
 'OSM': :WMTS   [Longitude,Latitude],
 'OpenTopoMap': :WMTS   [Longitude,Latitude]}

Plot#

opts.defaults(
    opts.WMTS(width=200, height=200, xaxis=None, yaxis=None, level='annotation'))

gv.NdLayout(gvts.tile_sources.items())
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).