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)
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)
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)
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)
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.Bunch7 items
-
xyzservices.TileProviderOpenStreetMap.Mapnik
- url
- https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenSeaMap
- url
- https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png
- html_attribution
- Map data: © OpenSeaMap contributors
- attribution
- Map data: (C) OpenSeaMap contributors
-
xyzservices.TileProviderOpenPtMap
- 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.TileProviderOpenTopoMap
- 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.TileProviderOpenRailwayMap
- 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.TileProviderOpenFireMap
- 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.TileProviderSafeCast
- 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.Bunch4 items
-
xyzservices.TileProviderStadia.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.TileProviderStadia.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.TileProviderStadia.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.TileProviderStadia.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.Bunch9 items
-
xyzservices.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderThunderforest.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.TileProviderCyclOSM
- 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.Bunch3 items
-
xyzservices.TileProviderHydda.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.TileProviderHydda.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.TileProviderHydda.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.Bunch6 items
-
xyzservices.TileProviderJawg.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.TileProviderJawg.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.TileProviderJawg.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.TileProviderJawg.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.TileProviderJawg.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.TileProviderJawg.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.TileProviderMapBox
- 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.Bunch9 items
-
xyzservices.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.TileProviderMapTiler.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.Bunch12 items
-
xyzservices.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.TileProviderStamen.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.Bunch3 items
-
xyzservices.TileProviderTomTom.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.TileProviderTomTom.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.TileProviderTomTom.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.Bunch10 items
-
xyzservices.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.TileProviderEsri.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.Bunch11 items
-
xyzservices.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.TileProviderOpenWeatherMap.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.Bunch30 items
-
xyzservices.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.TileProviderHERE.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.Bunch28 items
-
xyzservices.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderHEREv3.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.TileProviderFreeMapSK
- 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.TileProviderMtbMap
- url
- http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png
- html_attribution
- © OpenStreetMap contributors & USGS
- attribution
- (C) OpenStreetMap contributors & USGS
-
xyzservices.Bunch10 items
-
xyzservices.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.TileProviderCartoDB.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.Bunch2 items
-
xyzservices.TileProviderHikeBike.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.TileProviderHikeBike.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.Bunch7 items
-
xyzservices.TileProviderBasemapAT.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.TileProviderBasemapAT.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.TileProviderBasemapAT.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.TileProviderBasemapAT.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.TileProviderBasemapAT.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.TileProviderBasemapAT.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.TileProviderBasemapAT.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.Bunch4 items
-
xyzservices.TileProvidernlmaps.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.TileProvidernlmaps.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.TileProvidernlmaps.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.TileProvidernlmaps.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.Bunch11 items
-
xyzservices.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNASAGIBS.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.TileProviderNLS
- 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.Bunch9 items
-
xyzservices.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.TileProviderJusticeMap.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.Bunch3 items
-
xyzservices.TileProviderGeoportailFrance.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.TileProviderGeoportailFrance.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.TileProviderGeoportailFrance.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.Bunch5 items
-
xyzservices.TileProviderOneMapSG.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
-  New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.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
-  New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.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
-  New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.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
-  New OneMap | Map data (C) contributors, Singapore Land Authority
-
xyzservices.TileProviderOneMapSG.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
-  New OneMap | Map data (C) contributors, Singapore Land Authority
-
-
xyzservices.Bunch3 items
-
xyzservices.TileProviderUSGS.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.TileProviderUSGS.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.TileProviderUSGS.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.Bunch6 items
-
xyzservices.TileProviderWaymarkedTrails.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.TileProviderWaymarkedTrails.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.TileProviderWaymarkedTrails.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.TileProviderWaymarkedTrails.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.TileProviderWaymarkedTrails.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.TileProviderWaymarkedTrails.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.TileProviderOpenAIP
- 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.Bunch1 items
-
xyzservices.TileProviderOpenSnowMap.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.Bunch7 items
-
xyzservices.TileProviderAzureMaps.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.TileProviderAzureMaps.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.TileProviderAzureMaps.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.TileProviderAzureMaps.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.TileProviderAzureMaps.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.TileProviderAzureMaps.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.TileProviderAzureMaps.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.Bunch2 items
-
xyzservices.Bunch5 items
-
xyzservices.TileProviderStrava.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.TileProviderStrava.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.TileProviderStrava.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.TileProviderStrava.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.TileProviderStrava.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.TileProviderOpenStreetMap.Mapnik
- url
- https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
- max_zoom
- 19
- html_attribution
- © OpenStreetMap contributors
- attribution
- (C) OpenStreetMap contributors
-
xyzservices.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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.TileProviderOpenStreetMap.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]:
- 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]:
- 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]:
- 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')
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>`__.