Skip to content

Web Map Tile Service URLs

Kim Pevey edited this page Jul 6, 2018 · 4 revisions

Web Map Tile Service URLs

These WMTS URLS can be used via the Earthsim Annotators or with Geoviews WMTS directly.

World Imagery:
https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{Z}/{Y}/{X}

Stamen maps (maps.stamen.com):
http://tile.stamen.com/toner/{Z}/{X}/{Y}.png # available in 6 flavors (no labels, lines, labels only, etc)
http://tile.stamen.com/terrain/{Z}/{X}/{Y}.jpg # available in 4 flavors (no labels, lines, labels only, etc) http://tile.stamen.com/watercolor/{Z}/{X}/{Y}.jpg

Wikimedia maps:
https://maps.wikimedia.org/osm-intl/{Z}/{X}/{Y}@2x.png

National Geographic World Map (terrain):
https://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{Z}/{Y}/{X}

USA TOPO maps:
https://server.arcgisonline.com/ArcGIS/rest/services/USA_Topo_Maps/MapServer/tile/{Z}/{Y}/{X}

World_Terrain_Base:
https://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{Z}/{Y}/{X}

As of geoviews 1.5, the first four items in this list are available a bit more conveniently:

import geoviews.tile_sources as gvts
gvts.ESRI + gvts.StamenToner + gvts.StamenTerrain + gvts.StamenWatercolor

The rest will be available in the subsequent geoviews release (already in master), as:

gvts.EsriNatGeo + gvts.EsriUSATopo + gvts.EsriTerrain

See https://github.com/ioam/geoviews/blob/master/geoviews/tile_sources.py for the full list of servers provided.

Clone this wiki locally