A short look into providers objects

One of the benefits of contextily is that it interfaces with the popular XYZ tiling standard. This means that any tiles provided through this format can be accessed. To make your life easier, contextily comes with a set of providers included in `xyzservices <https://xyzservices.readthedocs.io/en/stable/index.html>`__ that makes including their maps much more straightforward and does not require you know any of the pesky details of the interface. These are all accessible in the contextily.providers submodule. The specification contextily uses to store these is defined in xyzservices so you can mimic it with an alternative provider that may not be built-in. This notebook will take a look at the providers, illustrating how it works, what’s available and how you can expand it if needed.

[1]:
import contextily as ctx
import xyzservices.providers as xyz

import matplotlib.pyplot as plt

Choosing a web tile provider

By default, if the user does not specify anything in this respect, the Stamen Terrain background is used:

[2]:
# we are using an extent around Mexico for the examples
extent = (-12600000, -10300000, 1800000, 3800000)
[3]:
fig, ax = plt.subplots(figsize=(8, 8))
ax.axis(extent)
ctx.add_basemap(ax)
_images/providers_deepdive_4_0.svg

The default can be modified by specifying a different provider with the source keyword.

For example, to use Stamen’s Toner Lite theme:

[4]:
fig, ax = plt.subplots(figsize=(8, 8))
ax.axis(extent)
ctx.add_basemap(ax, source=ctx.providers.Stamen.TonerLite)
_images/providers_deepdive_6_0.svg

Or the main theme by OpenStreetMap:

[5]:
fig, ax = plt.subplots(figsize=(8, 8))
ax.axis(extent)
ctx.add_basemap(ax, source=ctx.providers.OpenStreetMap.Mapnik)
_images/providers_deepdive_8_0.svg

Passing source=ctx.providers.OpenStreetMap.Mapnik is exactly the same as using xyzservices directly - source=xyz.OpenStreetMap.Mapnik. Under the hood, contextily.providers just wraps xyzservices.providers.

[6]:
fig, ax = plt.subplots(figsize=(8, 8))
ax.axis(extent)
ctx.add_basemap(ax, source=xyz.OpenStreetMap.Mapnik)
_images/providers_deepdive_10_0.svg

What is this “provider” object ?

The provider objects being passed to add_basemap are stored as xyzservices.TileProvider objects (enhanced dictionaries with attribute access for easy access), so we can explore them in Python (or using tab completion in an interactive session!):

[7]:
ctx.providers
[7]:
xyzservices.Bunch
38 items
  • xyzservices.Bunch
    7 items
    • xyzservices.TileProvider
      OpenStreetMap.Mapnik
      url
      https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
      max_zoom
      19
      html_attribution
      © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      OpenStreetMap.DE
      url
      https://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      OpenStreetMap.CH
      url
      https://tile.osm.ch/switzerland/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap contributors
      bounds
      [[45, 5], [48, 11]]
    • xyzservices.TileProvider
      OpenStreetMap.France
      url
      https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png
      max_zoom
      20
      html_attribution
      © OpenStreetMap France | © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap France | (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      OpenStreetMap.HOT
      url
      https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png
      max_zoom
      19
      html_attribution
      © OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
      attribution
      (C) OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
    • xyzservices.TileProvider
      OpenStreetMap.BZH
      url
      https://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png
      max_zoom
      19
      html_attribution
      © OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
      attribution
      (C) OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
      bounds
      [[46.2, -5.5], [50, 0.7]]
    • xyzservices.TileProvider
      OpenStreetMap.BlackAndWhite
      url
      http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png
      max_zoom
      18
      attribution
      (C) OpenStreetMap contributors
      html_attribution
      © OpenStreetMap contributors
  • xyzservices.TileProvider
    OpenSeaMap
    url
    https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png
    html_attribution
    Map data: © OpenSeaMap contributors
    attribution
    Map data: (C) OpenSeaMap contributors
  • xyzservices.TileProvider
    OpenPtMap
    url
    http://openptmap.org/tiles/{z}/{x}/{y}.png
    max_zoom
    17
    html_attribution
    Map data: © OpenPtMap contributors
    attribution
    Map data: (C) OpenPtMap contributors
    status
    broken
  • xyzservices.TileProvider
    OpenTopoMap
    url
    https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png
    max_zoom
    17
    html_attribution
    Map data: © OpenStreetMap contributors, SRTM | Map style: © OpenTopoMap (CC-BY-SA)
    attribution
    Map data: (C) OpenStreetMap contributors, SRTM | Map style: (C) OpenTopoMap (CC-BY-SA)
  • xyzservices.TileProvider
    OpenRailwayMap
    url
    https://{s}.tiles.openrailwaymap.org/standard/{z}/{x}/{y}.png
    max_zoom
    19
    html_attribution
    Map data: © OpenStreetMap contributors | Map style: © OpenRailwayMap (CC-BY-SA)
    attribution
    Map data: (C) OpenStreetMap contributors | Map style: (C) OpenRailwayMap (CC-BY-SA)
  • xyzservices.TileProvider
    OpenFireMap
    url
    http://openfiremap.org/hytiles/{z}/{x}/{y}.png
    max_zoom
    19
    html_attribution
    Map data: © OpenStreetMap contributors | Map style: © OpenFireMap (CC-BY-SA)
    attribution
    Map data: (C) OpenStreetMap contributors | Map style: (C) OpenFireMap (CC-BY-SA)
  • xyzservices.TileProvider
    SafeCast
    url
    https://s3.amazonaws.com/te512.safecast.org/{z}/{x}/{y}.png
    max_zoom
    16
    html_attribution
    Map data: © OpenStreetMap contributors | Map style: © SafeCast (CC-BY-SA)
    attribution
    Map data: (C) OpenStreetMap contributors | Map style: (C) SafeCast (CC-BY-SA)
  • xyzservices.Bunch
    4 items
    • xyzservices.TileProvider
      Stadia.AlidadeSmooth
      url
      https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png
      max_zoom
      20
      html_attribution
      © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
      attribution
      (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      Stadia.AlidadeSmoothDark
      url
      https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png
      max_zoom
      20
      html_attribution
      © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
      attribution
      (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      Stadia.OSMBright
      url
      https://tiles.stadiamaps.com/tiles/osm_bright/{z}/{x}/{y}{r}.png
      max_zoom
      20
      html_attribution
      © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
      attribution
      (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
    • xyzservices.TileProvider
      Stadia.Outdoors
      url
      https://tiles.stadiamaps.com/tiles/outdoors/{z}/{x}/{y}{r}.png
      max_zoom
      20
      html_attribution
      © Stadia Maps, © OpenMapTiles © OpenStreetMap contributors
      attribution
      (C) Stadia Maps, (C) OpenMapTiles (C) OpenStreetMap contributors
  • xyzservices.Bunch
    9 items
    • xyzservices.TileProvider
      Thunderforest.OpenCycleMap
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      cycle
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.Transport
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      transport
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.TransportDark
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      transport-dark
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.SpinalMap
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      spinal-map
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.Landscape
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      landscape
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.Outdoors
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      outdoors
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.Pioneer
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      pioneer
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.MobileAtlas
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      mobile-atlas
      apikey
      max_zoom
      22
    • xyzservices.TileProvider
      Thunderforest.Neighbourhood
      url
      https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}
      html_attribution
      © Thunderforest, © OpenStreetMap contributors
      attribution
      (C) Thunderforest, (C) OpenStreetMap contributors
      variant
      neighbourhood
      apikey
      max_zoom
      22
  • xyzservices.TileProvider
    CyclOSM
    url
    https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png
    max_zoom
    20
    html_attribution
    CyclOSM | Map data: © OpenStreetMap contributors
    attribution
    CyclOSM | Map data: (C) OpenStreetMap contributors
  • xyzservices.Bunch
    3 items
    • xyzservices.TileProvider
      Hydda.Full
      url
      https://{s}.tile.openstreetmap.se/hydda/{variant}/{z}/{x}/{y}.png
      max_zoom
      20
      variant
      full
      html_attribution
      Tiles courtesy of OpenStreetMap Sweden — Map data © OpenStreetMap contributors
      attribution
      Tiles courtesy of OpenStreetMap Sweden -- Map data (C) OpenStreetMap contributors
      status
      broken
    • xyzservices.TileProvider
      Hydda.Base
      url
      https://{s}.tile.openstreetmap.se/hydda/{variant}/{z}/{x}/{y}.png
      max_zoom
      20
      variant
      base
      html_attribution
      Tiles courtesy of OpenStreetMap Sweden — Map data © OpenStreetMap contributors
      attribution
      Tiles courtesy of OpenStreetMap Sweden -- Map data (C) OpenStreetMap contributors
      status
      broken
    • xyzservices.TileProvider
      Hydda.RoadsAndLabels
      url
      https://{s}.tile.openstreetmap.se/hydda/{variant}/{z}/{x}/{y}.png
      max_zoom
      20
      variant
      roads_and_labels
      html_attribution
      Tiles courtesy of OpenStreetMap Sweden — Map data © OpenStreetMap contributors
      attribution
      Tiles courtesy of OpenStreetMap Sweden -- Map data (C) OpenStreetMap contributors
      status
      broken
  • xyzservices.Bunch
    6 items
    • xyzservices.TileProvider
      Jawg.Streets
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-streets
      accessToken
    • xyzservices.TileProvider
      Jawg.Terrain
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-terrain
      accessToken
    • xyzservices.TileProvider
      Jawg.Sunny
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-sunny
      accessToken
    • xyzservices.TileProvider
      Jawg.Dark
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-dark
      accessToken
    • xyzservices.TileProvider
      Jawg.Light
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-light
      accessToken
    • xyzservices.TileProvider
      Jawg.Matrix
      url
      https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}
      html_attribution
      © JawgMaps © OpenStreetMap contributors
      attribution
      (C) **Jawg** Maps (C) OpenStreetMap contributors
      min_zoom
      0
      max_zoom
      22
      subdomains
      abcd
      variant
      jawg-matrix
      accessToken
  • xyzservices.TileProvider
    MapBox
    url
    https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}{r}?access_token={accessToken}
    html_attribution
    © Mapbox © OpenStreetMap contributors Improve this map
    attribution
    (C) Mapbox (C) OpenStreetMap contributors Improve this map
    tileSize
    512
    max_zoom
    18
    zoomOffset
    -1
    id
    mapbox/streets-v11
    accessToken
  • xyzservices.Bunch
    9 items
    • xyzservices.TileProvider
      MapTiler.Streets
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      streets
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Basic
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      basic
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Bright
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      bright
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Pastel
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      pastel
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Positron
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      positron
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Hybrid
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      hybrid
      ext
      jpg
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Toner
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      toner
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Topo
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      topo
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
    • xyzservices.TileProvider
      MapTiler.Voyager
      url
      https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}
      html_attribution
      © MapTiler © OpenStreetMap contributors
      attribution
      (C) MapTiler (C) OpenStreetMap contributors
      variant
      voyager
      ext
      png
      key
      tileSize
      512
      zoomOffset
      -1
      min_zoom
      0
      max_zoom
      21
  • xyzservices.Bunch
    12 items
    • xyzservices.TileProvider
      Stamen.Toner
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner
      ext
      png
    • xyzservices.TileProvider
      Stamen.TonerBackground
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner-background
      ext
      png
    • xyzservices.TileProvider
      Stamen.TonerHybrid
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner-hybrid
      ext
      png
    • xyzservices.TileProvider
      Stamen.TonerLines
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner-lines
      ext
      png
    • xyzservices.TileProvider
      Stamen.TonerLabels
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner-labels
      ext
      png
    • xyzservices.TileProvider
      Stamen.TonerLite
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toner-lite
      ext
      png
    • xyzservices.TileProvider
      Stamen.Watercolor
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      1
      max_zoom
      16
      variant
      watercolor
      ext
      jpg
    • xyzservices.TileProvider
      Stamen.Terrain
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      18
      variant
      terrain
      ext
      png
    • xyzservices.TileProvider
      Stamen.TerrainBackground
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      18
      variant
      terrain-background
      ext
      png
    • xyzservices.TileProvider
      Stamen.TerrainLabels
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      18
      variant
      terrain-labels
      ext
      png
    • xyzservices.TileProvider
      Stamen.TopOSMRelief
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toposm-color-relief
      ext
      jpg
      bounds
      [[22, -132], [51, -56]]
    • xyzservices.TileProvider
      Stamen.TopOSMFeatures
      url
      https://stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}{r}.{ext}
      html_attribution
      Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap contributors
      attribution
      Map tiles by Stamen Design, CC BY 3.0 -- Map data (C) OpenStreetMap contributors
      subdomains
      abcd
      min_zoom
      0
      max_zoom
      20
      variant
      toposm-features
      ext
      png
      bounds
      [[22, -132], [51, -56]]
      opacity
      0.9
  • xyzservices.Bunch
    3 items
    • xyzservices.TileProvider
      TomTom.Basic
      url
      https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
      variant
      basic
      max_zoom
      22
      html_attribution
      © 1992 - 2021 TomTom.
      attribution
      (C) 1992 - 2021 TomTom.
      subdomains
      abcd
      style
      main
      ext
      png
      apikey
    • xyzservices.TileProvider
      TomTom.Hybrid
      url
      https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
      variant
      hybrid
      max_zoom
      22
      html_attribution
      © 1992 - 2021 TomTom.
      attribution
      (C) 1992 - 2021 TomTom.
      subdomains
      abcd
      style
      main
      ext
      png
      apikey
    • xyzservices.TileProvider
      TomTom.Labels
      url
      https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}
      variant
      labels
      max_zoom
      22
      html_attribution
      © 1992 - 2021 TomTom.
      attribution
      (C) 1992 - 2021 TomTom.
      subdomains
      abcd
      style
      main
      ext
      png
      apikey
  • xyzservices.Bunch
    10 items
    • xyzservices.TileProvider
      Esri.WorldStreetMap
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Street_Map
      html_attribution
      Tiles © Esri — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012
      attribution
      Tiles (C) Esri -- Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012
    • xyzservices.TileProvider
      Esri.DeLorme
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      Specialty/DeLorme_World_Base_Map
      html_attribution
      Tiles © Esri — Copyright: ©2012 DeLorme
      attribution
      Tiles (C) Esri -- Copyright: (C)2012 DeLorme
      min_zoom
      1
      max_zoom
      11
    • xyzservices.TileProvider
      Esri.WorldTopoMap
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Topo_Map
      html_attribution
      Tiles © Esri — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community
      attribution
      Tiles (C) Esri -- Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community
    • xyzservices.TileProvider
      Esri.WorldImagery
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Imagery
      html_attribution
      Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community
      attribution
      Tiles (C) Esri -- Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community
    • xyzservices.TileProvider
      Esri.WorldTerrain
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Terrain_Base
      html_attribution
      Tiles © Esri — Source: USGS, Esri, TANA, DeLorme, and NPS
      attribution
      Tiles (C) Esri -- Source: USGS, Esri, TANA, DeLorme, and NPS
      max_zoom
      13
    • xyzservices.TileProvider
      Esri.WorldShadedRelief
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Shaded_Relief
      html_attribution
      Tiles © Esri — Source: Esri
      attribution
      Tiles (C) Esri -- Source: Esri
      max_zoom
      13
    • xyzservices.TileProvider
      Esri.WorldPhysical
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      World_Physical_Map
      html_attribution
      Tiles © Esri — Source: US National Park Service
      attribution
      Tiles (C) Esri -- Source: US National Park Service
      max_zoom
      8
    • xyzservices.TileProvider
      Esri.OceanBasemap
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      Ocean_Basemap
      html_attribution
      Tiles © Esri — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri
      attribution
      Tiles (C) Esri -- Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri
      max_zoom
      13
    • xyzservices.TileProvider
      Esri.NatGeoWorldMap
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      NatGeo_World_Map
      html_attribution
      Tiles © Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC
      attribution
      Tiles (C) Esri -- National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC
      max_zoom
      16
    • xyzservices.TileProvider
      Esri.WorldGrayCanvas
      url
      https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}
      variant
      Canvas/World_Light_Gray_Base
      html_attribution
      Tiles © Esri — Esri, DeLorme, NAVTEQ
      attribution
      Tiles (C) Esri -- Esri, DeLorme, NAVTEQ
      max_zoom
      16
  • xyzservices.Bunch
    11 items
    • xyzservices.TileProvider
      OpenWeatherMap.Clouds
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      clouds
    • xyzservices.TileProvider
      OpenWeatherMap.CloudsClassic
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      clouds_cls
    • xyzservices.TileProvider
      OpenWeatherMap.Precipitation
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      precipitation
    • xyzservices.TileProvider
      OpenWeatherMap.PrecipitationClassic
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      precipitation_cls
    • xyzservices.TileProvider
      OpenWeatherMap.Rain
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      rain
    • xyzservices.TileProvider
      OpenWeatherMap.RainClassic
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      rain_cls
    • xyzservices.TileProvider
      OpenWeatherMap.Pressure
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      pressure
    • xyzservices.TileProvider
      OpenWeatherMap.PressureContour
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      pressure_cntr
    • xyzservices.TileProvider
      OpenWeatherMap.Wind
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      wind
    • xyzservices.TileProvider
      OpenWeatherMap.Temperature
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      temp
    • xyzservices.TileProvider
      OpenWeatherMap.Snow
      url
      http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
      max_zoom
      19
      html_attribution
      Map data © OpenWeatherMap
      attribution
      Map data (C) OpenWeatherMap
      apiKey
      opacity
      0.5
      variant
      snow
  • xyzservices.Bunch
    30 items
    • xyzservices.TileProvider
      HERE.normalDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayCustom
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.custom
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayGrey
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayGreyMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.grey.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayTransit
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayTransitMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day.transit.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalDayTraffic
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      traffic
      variant
      normal.traffic.day
      max_zoom
      20
      type
      traffictile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNight
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNightMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNightGrey
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNightGreyMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night.grey.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNightTransit
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.normalNightTransitMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.night.transit.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.reducedDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      reduced.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.reducedNight
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      reduced.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.basicMap
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      basetile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.mapLabels
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      labeltile
      language
      eng
      format
      png
      size
      256
    • xyzservices.TileProvider
      HERE.trafficFlow
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      traffic
      variant
      normal.day
      max_zoom
      20
      type
      flowtile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.carnavDayGrey
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      carnav.day.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.hybridDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      hybrid.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.hybridDayMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      hybrid.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.hybridDayTransit
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      hybrid.day.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.hybridDayGrey
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      hybrid.grey.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.hybridDayTraffic
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      traffic
      variant
      hybrid.traffic.day
      max_zoom
      20
      type
      traffictile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.pedestrianDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      pedestrian.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.pedestrianNight
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      base
      variant
      pedestrian.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.satelliteDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      satellite.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.terrainDay
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      terrain.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HERE.terrainDayMobile
      url
      https://{s}.{base}.maps.api.here.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?app_id={app_id}&app_code={app_code}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      app_id
      app_code
      base
      aerial
      variant
      terrain.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
  • xyzservices.Bunch
    28 items
    • xyzservices.TileProvider
      HEREv3.normalDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayCustom
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.custom
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayGrey
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayGreyMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.grey.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayTransit
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalDayTransitMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day.transit.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNight
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNightMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNightGrey
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNightGreyMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night.grey.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNightTransit
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.normalNightTransitMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.night.transit.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.reducedDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      reduced.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.reducedNight
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      reduced.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.basicMap
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      basetile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.mapLabels
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      normal.day
      max_zoom
      20
      type
      labeltile
      language
      eng
      format
      png
      size
      256
    • xyzservices.TileProvider
      HEREv3.trafficFlow
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      traffic
      variant
      normal.day
      max_zoom
      20
      type
      flowtile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.carnavDayGrey
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      carnav.day.grey
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.hybridDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      hybrid.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.hybridDayMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      hybrid.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.hybridDayTransit
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      hybrid.day.transit
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.hybridDayGrey
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      hybrid.grey.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.pedestrianDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      pedestrian.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.pedestrianNight
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      base
      variant
      pedestrian.night
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.satelliteDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      satellite.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.terrainDay
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      terrain.day
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
    • xyzservices.TileProvider
      HEREv3.terrainDayMobile
      url
      https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?apiKey={apiKey}&lg={language}
      html_attribution
      Map © 1987-2021 HERE
      attribution
      Map (C) 1987-2021 HERE
      subdomains
      1234
      mapID
      newest
      apiKey
      base
      aerial
      variant
      terrain.day.mobile
      max_zoom
      20
      type
      maptile
      language
      eng
      format
      png8
      size
      256
  • xyzservices.TileProvider
    FreeMapSK
    url
    https://{s}.freemap.sk/T/{z}/{x}/{y}.jpeg
    min_zoom
    8
    max_zoom
    16
    subdomains
    abcd
    bounds
    [[47.204642, 15.996093], [49.830896, 22.576904]]
    html_attribution
    © OpenStreetMap contributors, vizualization CC-By-SA 2.0 Freemap.sk
    attribution
    (C) OpenStreetMap contributors, vizualization CC-By-SA 2.0 Freemap.sk
  • xyzservices.TileProvider
    MtbMap
    url
    http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png
    html_attribution
    © OpenStreetMap contributors & USGS
    attribution
    (C) OpenStreetMap contributors & USGS
  • xyzservices.Bunch
    10 items
    • xyzservices.TileProvider
      CartoDB.Positron
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      light_all
    • xyzservices.TileProvider
      CartoDB.PositronNoLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      light_nolabels
    • xyzservices.TileProvider
      CartoDB.PositronOnlyLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      light_only_labels
    • xyzservices.TileProvider
      CartoDB.DarkMatter
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      dark_all
    • xyzservices.TileProvider
      CartoDB.DarkMatterNoLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      dark_nolabels
    • xyzservices.TileProvider
      CartoDB.DarkMatterOnlyLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      dark_only_labels
    • xyzservices.TileProvider
      CartoDB.Voyager
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      rastertiles/voyager
    • xyzservices.TileProvider
      CartoDB.VoyagerNoLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      rastertiles/voyager_nolabels
    • xyzservices.TileProvider
      CartoDB.VoyagerOnlyLabels
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      rastertiles/voyager_only_labels
    • xyzservices.TileProvider
      CartoDB.VoyagerLabelsUnder
      url
      https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png
      html_attribution
      © OpenStreetMap contributors © CARTO
      attribution
      (C) OpenStreetMap contributors (C) CARTO
      subdomains
      abcd
      max_zoom
      19
      variant
      rastertiles/voyager_labels_under
  • xyzservices.Bunch
    2 items
    • xyzservices.TileProvider
      HikeBike.HikeBike
      url
      https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      19
      html_attribution
      © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap contributors
      variant
      hikebike
    • xyzservices.TileProvider
      HikeBike.HillShading
      url
      https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      15
      html_attribution
      © OpenStreetMap contributors
      attribution
      (C) OpenStreetMap contributors
      variant
      hillshading
  • xyzservices.Bunch
    7 items
    • xyzservices.TileProvider
      BasemapAT.basemap
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      20
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      normal
      format
      png
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      geolandbasemap
    • xyzservices.TileProvider
      BasemapAT.grau
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      19
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      normal
      format
      png
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmapgrau
    • xyzservices.TileProvider
      BasemapAT.overlay
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      19
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      normal
      format
      png
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmapoverlay
    • xyzservices.TileProvider
      BasemapAT.terrain
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      19
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      grau
      format
      jpeg
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmapgelaende
    • xyzservices.TileProvider
      BasemapAT.surface
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      19
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      grau
      format
      jpeg
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmapoberflaeche
    • xyzservices.TileProvider
      BasemapAT.highdpi
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      19
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      normal
      format
      jpeg
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmaphidpi
    • xyzservices.TileProvider
      BasemapAT.orthofoto
      url
      https://maps{s}.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}
      max_zoom
      20
      html_attribution
      Datenquelle: basemap.at
      attribution
      Datenquelle: basemap.at
      subdomains
      ['', '1', '2', '3', '4']
      type
      normal
      format
      jpeg
      bounds
      [[46.35877, 8.782379], [49.037872, 17.189532]]
      variant
      bmaporthofoto30cm
  • xyzservices.Bunch
    4 items
    • xyzservices.TileProvider
      nlmaps.standaard
      url
      https://geodata.nationaalgeoregister.nl/tiles/service/wmts/{variant}/EPSG:3857/{z}/{x}/{y}.png
      min_zoom
      6
      max_zoom
      19
      bounds
      [[50.5, 3.25], [54, 7.6]]
      html_attribution
      Kaartgegevens © Kadaster
      attribution
      Kaartgegevens (C) Kadaster
      variant
      brtachtergrondkaart
    • xyzservices.TileProvider
      nlmaps.pastel
      url
      https://geodata.nationaalgeoregister.nl/tiles/service/wmts/{variant}/EPSG:3857/{z}/{x}/{y}.png
      min_zoom
      6
      max_zoom
      19
      bounds
      [[50.5, 3.25], [54, 7.6]]
      html_attribution
      Kaartgegevens © Kadaster
      attribution
      Kaartgegevens (C) Kadaster
      variant
      brtachtergrondkaartpastel
    • xyzservices.TileProvider
      nlmaps.grijs
      url
      https://geodata.nationaalgeoregister.nl/tiles/service/wmts/{variant}/EPSG:3857/{z}/{x}/{y}.png
      min_zoom
      6
      max_zoom
      19
      bounds
      [[50.5, 3.25], [54, 7.6]]
      html_attribution
      Kaartgegevens © Kadaster
      attribution
      Kaartgegevens (C) Kadaster
      variant
      brtachtergrondkaartgrijs
    • xyzservices.TileProvider
      nlmaps.luchtfoto
      url
      https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts/2018_ortho25/EPSG:3857/{z}/{x}/{y}.png
      min_zoom
      6
      max_zoom
      19
      bounds
      [[50.5, 3.25], [54, 7.6]]
      html_attribution
      Kaartgegevens © Kadaster
      attribution
      Kaartgegevens (C) Kadaster
      status
      broken
  • xyzservices.Bunch
    11 items
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraTrueColorCR
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      9
      format
      jpg
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_CorrectedReflectance_TrueColor
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraBands367CR
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      9
      format
      jpg
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_CorrectedReflectance_Bands367
    • xyzservices.TileProvider
      NASAGIBS.ViirsEarthAtNight2012
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      8
      format
      jpg
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      VIIRS_CityLights_2012
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraLSTDay
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      7
      format
      png
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_Land_Surface_Temp_Day
      opacity
      0.75
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraSnowCover
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      8
      format
      png
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_Snow_Cover
      opacity
      0.75
      status
      broken
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraAOD
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      6
      format
      png
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_Aerosol
      opacity
      0.75
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraChlorophyll
      url
      https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{max_zoom}/{z}/{y}/{x}.{format}
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      bounds
      [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]]
      min_zoom
      1
      max_zoom
      7
      format
      png
      time
      tilematrixset
      GoogleMapsCompatible_Level
      variant
      MODIS_Terra_Chlorophyll_A
      opacity
      0.75
    • xyzservices.TileProvider
      NASAGIBS.ModisTerraBands721CR
      url
      https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Terra_CorrectedReflectance_Bands721/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
      max_zoom
      9
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      time
    • xyzservices.TileProvider
      NASAGIBS.ModisAquaTrueColorCR
      url
      https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_TrueColor/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
      max_zoom
      9
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      time
    • xyzservices.TileProvider
      NASAGIBS.ModisAquaBands721CR
      url
      https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/MODIS_Aqua_CorrectedReflectance_Bands721/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
      max_zoom
      9
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      time
    • xyzservices.TileProvider
      NASAGIBS.ViirsTrueColorCR
      url
      https://gibs.earthdata.nasa.gov/wmts/epsg3857/best/VIIRS_SNPP_CorrectedReflectance_TrueColor/default/{time}/GoogleMapsCompatible_Level9/{z}/{y}/{x}.jpg
      max_zoom
      9
      attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      html_attribution
      Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.
      time
  • xyzservices.TileProvider
    NLS
    url
    https://nls-{s}.tileserver.com/nls/{z}/{x}/{y}.jpg
    html_attribution
    National Library of Scotland Historic Maps
    attribution
    National Library of Scotland Historic Maps
    bounds
    [[49.6, -12], [61.7, 3]]
    min_zoom
    1
    max_zoom
    18
    subdomains
    0123
  • xyzservices.Bunch
    9 items
    • xyzservices.TileProvider
      JusticeMap.income
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      income
    • xyzservices.TileProvider
      JusticeMap.americanIndian
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      indian
    • xyzservices.TileProvider
      JusticeMap.asian
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      asian
    • xyzservices.TileProvider
      JusticeMap.black
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      black
    • xyzservices.TileProvider
      JusticeMap.hispanic
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      hispanic
    • xyzservices.TileProvider
      JusticeMap.multi
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      multi
    • xyzservices.TileProvider
      JusticeMap.nonWhite
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      nonwhite
    • xyzservices.TileProvider
      JusticeMap.white
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      white
    • xyzservices.TileProvider
      JusticeMap.plurality
      url
      http://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png
      html_attribution
      Justice Map
      attribution
      Justice Map
      size
      county
      bounds
      [[14, -180], [72, -56]]
      variant
      plural
  • xyzservices.Bunch
    3 items
    • xyzservices.TileProvider
      GeoportailFrance.plan
      url
      https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET=PM&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
      html_attribution
      Geoportail France
      attribution
      Geoportail France
      bounds
      [[-75, -180], [81, 180]]
      min_zoom
      2
      max_zoom
      18
      apikey
      choisirgeoportail
      format
      image/png
      style
      normal
      variant
      GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2
    • xyzservices.TileProvider
      GeoportailFrance.parcels
      url
      https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET=PM&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
      html_attribution
      Geoportail France
      attribution
      Geoportail France
      bounds
      [[-75, -180], [81, 180]]
      min_zoom
      2
      max_zoom
      20
      apikey
      choisirgeoportail
      format
      image/png
      style
      PCI vecteur
      variant
      CADASTRALPARCELS.PARCELLAIRE_EXPRESS
    • xyzservices.TileProvider
      GeoportailFrance.orthos
      url
      https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET=PM&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}
      html_attribution
      Geoportail France
      attribution
      Geoportail France
      bounds
      [[-75, -180], [81, 180]]
      min_zoom
      2
      max_zoom
      19
      apikey
      choisirgeoportail
      format
      image/jpeg
      style
      normal
      variant
      ORTHOIMAGERY.ORTHOPHOTOS
  • xyzservices.Bunch
    5 items
    • xyzservices.TileProvider
      OneMapSG.Default
      url
      https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
      variant
      Default
      min_zoom
      11
      max_zoom
      18
      bounds
      [[1.56073, 104.11475], [1.16, 103.502]]
      html_attribution
      New OneMap | Map data © contributors, Singapore Land Authority
      attribution
      ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
    • xyzservices.TileProvider
      OneMapSG.Night
      url
      https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
      variant
      Night
      min_zoom
      11
      max_zoom
      18
      bounds
      [[1.56073, 104.11475], [1.16, 103.502]]
      html_attribution
      New OneMap | Map data © contributors, Singapore Land Authority
      attribution
      ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
    • xyzservices.TileProvider
      OneMapSG.Original
      url
      https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
      variant
      Original
      min_zoom
      11
      max_zoom
      18
      bounds
      [[1.56073, 104.11475], [1.16, 103.502]]
      html_attribution
      New OneMap | Map data © contributors, Singapore Land Authority
      attribution
      ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
    • xyzservices.TileProvider
      OneMapSG.Grey
      url
      https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
      variant
      Grey
      min_zoom
      11
      max_zoom
      18
      bounds
      [[1.56073, 104.11475], [1.16, 103.502]]
      html_attribution
      New OneMap | Map data © contributors, Singapore Land Authority
      attribution
      ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
    • xyzservices.TileProvider
      OneMapSG.LandLot
      url
      https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png
      variant
      LandLot
      min_zoom
      11
      max_zoom
      18
      bounds
      [[1.56073, 104.11475], [1.16, 103.502]]
      html_attribution
      New OneMap | Map data © contributors, Singapore Land Authority
      attribution
      ![](https://docs.onemap.sg/maps/images/oneMap64-01.png) New OneMap | Map data (C) contributors, Singapore Land Authority
  • xyzservices.Bunch
    3 items
    • xyzservices.TileProvider
      USGS.USTopo
      url
      https://basemap.nationalmap.gov/arcgis/rest/services/USGSTopo/MapServer/tile/{z}/{y}/{x}
      max_zoom
      20
      html_attribution
      Tiles courtesy of the U.S. Geological Survey
      attribution
      Tiles courtesy of the U.S. Geological Survey
    • xyzservices.TileProvider
      USGS.USImagery
      url
      https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}
      max_zoom
      20
      html_attribution
      Tiles courtesy of the U.S. Geological Survey
      attribution
      Tiles courtesy of the U.S. Geological Survey
    • xyzservices.TileProvider
      USGS.USImageryTopo
      url
      https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryTopo/MapServer/tile/{z}/{y}/{x}
      max_zoom
      20
      html_attribution
      Tiles courtesy of the U.S. Geological Survey
      attribution
      Tiles courtesy of the U.S. Geological Survey
  • xyzservices.Bunch
    6 items
    • xyzservices.TileProvider
      WaymarkedTrails.hiking
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      hiking
    • xyzservices.TileProvider
      WaymarkedTrails.cycling
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      cycling
    • xyzservices.TileProvider
      WaymarkedTrails.mtb
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      mtb
    • xyzservices.TileProvider
      WaymarkedTrails.slopes
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      slopes
    • xyzservices.TileProvider
      WaymarkedTrails.riding
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      riding
    • xyzservices.TileProvider
      WaymarkedTrails.skating
      url
      https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors | Map style: © waymarkedtrails.org (CC-BY-SA)
      attribution
      Map data: (C) OpenStreetMap contributors | Map style: (C) waymarkedtrails.org (CC-BY-SA)
      variant
      skating
  • xyzservices.TileProvider
    OpenAIP
    url
    http://{s}.tile.maps.openaip.net/geowebcache/service/tms/1.0.0/openaip_basemap@EPSG%3A900913@png/{z}/{x}/{y}.{ext}
    html_attribution
    openAIP Data (CC-BY-NC-SA)
    attribution
    openAIP Data (CC-BY-NC-SA)
    ext
    png
    min_zoom
    4
    max_zoom
    14
    tms
    True
    detectRetina
    True
    subdomains
    12
  • xyzservices.Bunch
    1 items
    • xyzservices.TileProvider
      OpenSnowMap.pistes
      url
      https://tiles.opensnowmap.org/{variant}/{z}/{x}/{y}.png
      min_zoom
      9
      max_zoom
      18
      html_attribution
      Map data: © OpenStreetMap contributors & ODbL, © www.opensnowmap.org CC-BY-SA
      attribution
      Map data: (C) OpenStreetMap contributors & ODbL, (C) www.opensnowmap.org CC-BY-SA
      variant
      pistes
  • xyzservices.Bunch
    7 items
    • xyzservices.TileProvider
      AzureMaps.MicrosoftImagery
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      apiVersion
      2.0
      variant
      microsoft.imagery
      subscriptionKey
      language
      en-US
    • xyzservices.TileProvider
      AzureMaps.MicrosoftBaseDarkGrey
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      apiVersion
      2.0
      variant
      microsoft.base.darkgrey
      subscriptionKey
      language
      en-US
    • xyzservices.TileProvider
      AzureMaps.MicrosoftBaseRoad
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      apiVersion
      2.0
      variant
      microsoft.base.road
      subscriptionKey
      language
      en-US
    • xyzservices.TileProvider
      AzureMaps.MicrosoftBaseHybridRoad
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      apiVersion
      2.0
      variant
      microsoft.base.hybrid.road
      subscriptionKey
      language
      en-US
    • xyzservices.TileProvider
      AzureMaps.MicrosoftTerraMain
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview for details.
      apiVersion
      2.0
      variant
      microsoft.terra.main
      subscriptionKey
      language
      en-US
    • xyzservices.TileProvider
      AzureMaps.MicrosoftWeatherInfraredMain
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&timeStamp={timeStamp}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview#uri-parameters for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview#uri-parameters for details.
      apiVersion
      2.0
      variant
      microsoft.weather.infrared.main
      subscriptionKey
      language
      en-US
      timeStamp
      2021-05-08T09:03:00Z
    • xyzservices.TileProvider
      AzureMaps.MicrosoftWeatherRadarMain
      url
      https://atlas.microsoft.com/map/tile?api-version={apiVersion}&tilesetId={variant}&x={x}&y={y}&zoom={z}&timeStamp={timeStamp}&language={language}&subscription-key={subscriptionKey}
      html_attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview#uri-parameters for details.
      attribution
      See https://docs.microsoft.com/en-US/rest/api/maps/renderv2/getmaptilepreview#uri-parameters for details.
      apiVersion
      2.0
      variant
      microsoft.weather.radar.main
      subscriptionKey
      language
      en-US
      timeStamp
      2021-05-08T09:03:00Z
  • xyzservices.Bunch
    2 items
    • xyzservices.TileProvider
      Gaode.Normal
      url
      http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}
      max_zoom
      19
      attribution
      © Gaode.com
      html_attribution
      © Gaode.com
    • xyzservices.TileProvider
      Gaode.Satellite
      url
      http://webst01.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}
      max_zoom
      19
      attribution
      © Gaode.com
      html_attribution
      © Gaode.com
  • xyzservices.Bunch
    5 items
    • xyzservices.TileProvider
      Strava.All
      url
      https://heatmap-external-a.strava.com//tiles/all/hot/{z}/{x}/{y}.png?v=19
      max_zoom
      15
      attribution
      Map tiles by Strava 2017
      html_attribution
      Map tiles by Strava 2017
      status
      broken
    • xyzservices.TileProvider
      Strava.Ride
      url
      https://heatmap-external-a.strava.com//tiles/ride/hot/{z}/{x}/{y}.png?v=19
      max_zoom
      15
      attribution
      (C) OpenStreetMap contributors
      html_attribution
      © OpenStreetMap contributors
      status
      broken
    • xyzservices.TileProvider
      Strava.Run
      url
      https://heatmap-external-a.strava.com//tiles/run/bluered/{z}/{x}/{y}.png?v=19
      max_zoom
      15
      attribution
      Map tiles by Strava 2017
      html_attribution
      Map tiles by Strava 2017
      status
      broken
    • xyzservices.TileProvider
      Strava.Water
      url
      https://heatmap-external-a.strava.com//tiles/water/blue/{z}/{x}/{y}.png?v=19
      max_zoom
      15
      attribution
      Map tiles by Strava 2017
      html_attribution
      Map tiles by Strava 2017
      status
      broken
    • xyzservices.TileProvider
      Strava.Winter
      url
      https://heatmap-external-a.strava.com//tiles/winter/hot/{z}/{x}/{y}.png?v=19
      max_zoom
      15
      attribution
      Map tiles by Strava 2017
      html_attribution
      Map tiles by Strava 2017
      status
      broken

Most of those providers have themselves multiple options. For example, OpenStreetMap provides multiple background styles:

[8]:
ctx.providers.OpenStreetMap
[8]:
xyzservices.Bunch
7 items
  • xyzservices.TileProvider
    OpenStreetMap.Mapnik
    url
    https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
    max_zoom
    19
    html_attribution
    © OpenStreetMap contributors
    attribution
    (C) OpenStreetMap contributors
  • xyzservices.TileProvider
    OpenStreetMap.DE
    url
    https://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png
    max_zoom
    18
    html_attribution
    © OpenStreetMap contributors
    attribution
    (C) OpenStreetMap contributors
  • xyzservices.TileProvider
    OpenStreetMap.CH
    url
    https://tile.osm.ch/switzerland/{z}/{x}/{y}.png
    max_zoom
    18
    html_attribution
    © OpenStreetMap contributors
    attribution
    (C) OpenStreetMap contributors
    bounds
    [[45, 5], [48, 11]]
  • xyzservices.TileProvider
    OpenStreetMap.France
    url
    https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png
    max_zoom
    20
    html_attribution
    © OpenStreetMap France | © OpenStreetMap contributors
    attribution
    (C) OpenStreetMap France | (C) OpenStreetMap contributors
  • xyzservices.TileProvider
    OpenStreetMap.HOT
    url
    https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png
    max_zoom
    19
    html_attribution
    © OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
    attribution
    (C) OpenStreetMap contributors, Tiles style by Humanitarian OpenStreetMap Team hosted by OpenStreetMap France
  • xyzservices.TileProvider
    OpenStreetMap.BZH
    url
    https://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png
    max_zoom
    19
    html_attribution
    © OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
    attribution
    (C) OpenStreetMap contributors, Tiles courtesy of Breton OpenStreetMap Team
    bounds
    [[46.2, -5.5], [50, 0.7]]
  • xyzservices.TileProvider
    OpenStreetMap.BlackAndWhite
    url
    http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png
    max_zoom
    18
    attribution
    (C) OpenStreetMap contributors
    html_attribution
    © OpenStreetMap contributors

Looking at a single one of those options, for example “Mapnik” (the default OpenStreetMap background), we can see this is a TileProvider object, which behaves as a dict:

[9]:
type(ctx.providers.OpenStreetMap.Mapnik)
[9]:
xyzservices.lib.TileProvider

We can explore its contents:

[10]:
ctx.providers.OpenStreetMap.Mapnik
[10]:
xyzservices.TileProvider
OpenStreetMap.Mapnik
url
https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
max_zoom
19
html_attribution
© OpenStreetMap contributors
attribution
(C) OpenStreetMap contributors

A “provider object” is then a dictionary with a few required entries, such as the url (required, with {z}/{x}/{y} to be replaced), with some additional metadata information (optional). These can be the attribution text to be used on the plot (attribution), or the maximum zoom level available for these tiles (max_zoom). When this information is available, contextily is smart enough to access and use it automatically.

Specifying options for a provider

Some providers require additional information, such as an API access key. This can be specified by calling the provider object. Any keyword specified will override the default value in the provider object.

For example, the OpenWeatherMap requires an API key:

[11]:
ctx.providers.OpenWeatherMap.Clouds
[11]:
xyzservices.TileProvider
OpenWeatherMap.Clouds
url
http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
max_zoom
19
html_attribution
Map data © OpenWeatherMap
attribution
Map data (C) OpenWeatherMap
apiKey
opacity
0.5
variant
clouds

We can specify this API key by calling the object:

[12]:
ctx.providers.OpenWeatherMap.Clouds(apiKey="my-private-api-key")
[12]:
xyzservices.TileProvider
OpenWeatherMap.Clouds
url
http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}
max_zoom
19
html_attribution
Map data © OpenWeatherMap
attribution
Map data (C) OpenWeatherMap
apiKey
my-private-api-key
opacity
0.5
variant
clouds

This can then be specified where a source is expected. For example:

ctx.add_basemap(ax, source=ctx.providers.OpenWeatherMap.Clouds(apiKey="my-private-api-key"))

Manually specifying a provider

Since the provider definition is basically nothing more than an url with the {z}/{x}/{y} format, you can also specify such an url manually, in case the provider of your choice is not available in contextily (the provider is expected to follow the standard XYZ tile protocol):

[13]:
fig, ax = plt.subplots(figsize=(8, 8))
ax.axis(extent)
# using the url from `ctx.providers.OpenStreetMap.HOT` as example
ctx.add_basemap(ax, source='https://a.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png')
_images/providers_deepdive_29_0.svg

In addition, you could also construct a dictionary with the "url" key and additional information yourself, for example to provide a default attribution text for all your plots.

Overview of built-in providers

Let us create a flat dictionary of the built-in providers:

[14]:
providers = ctx.providers.flatten()

This results in quite a few of them already available:

[15]:
len(providers)
[15]:
219

For this illustration, let’s single out the following ones:

[16]:
selection = ['OpenStreetMap.Mapnik',
             'OpenTopoMap',
             'Stamen.Toner',
             'Stamen.TonerLite',
             'Stamen.Terrain',
             'Stamen.TerrainBackground',
             'Stamen.Watercolor',
             'NASAGIBS.ViirsEarthAtNight2012',
             'CartoDB.Positron',
             'CartoDB.Voyager'
            ]
[17]:
fig, axs = plt.subplots(2, 5, figsize=(25, 10))
axs = axs.flatten()
for name, ax in zip(selection, axs):
    ax.axis(extent)
    ctx.add_basemap(ax, source=providers[name])
    ax.set_title(name)
    ax.set_axis_off()
plt.show()
fig.savefig("tiles.png", bbox_inches="tight")

For more details on providers, see the documentation of `xyzservices <https://xyzservices.readthedocs.io/en/stable/index.html>`__.