Please display this attribution

The XYZ URL is copied — but unlike a TileJSON URL, it carries no attribution metadata, so map clients can't show the credit automatically. Please display it on your map:

About Re:Earth Papers

Re:Earth Papers is an open tile service: a growing shelf of openly-licensed map data, served ready to use from one origin. Raster basemaps and painterly styles rendered here from vector data; satellite and thematic imagery from NASA, ESA, Natural Earth and Stamen; vector tilesets from Overture and Natural Earth for you to style yourself. Everything you see in this preview is a live endpoint — point any map client at it.

Endpoints

Pick a tileset in the gallery and the Copy buttons hand you its exact URLs. Every response is CORS-open.

Reading the gallery

Every card is tagged with what a client gets — raster or vector — and, where it applies, a suffix for where the bytes come from. Vector tilesets have no picture to preview, so their thumbnail shows MVT instead. Four arrangements sit behind those tags:

Hover a badge to see the same thing spelled out.

Sample code (MapLibre)

import maplibregl from "maplibre-gl";

const map = new maplibregl.Map({
  container: "map",
  center: [139.767, 35.681],
  zoom: 11,
  style: {
    version: 8,
    sources: {
      papers: {
        type: "raster",
        // Any tilejson.json from /catalog.json works here.
        url: "https://papers.reearth.land/styles/papers-light/tilejson.json",
      },
    },
    layers: [{ id: "papers", type: "raster", source: "papers" }],
  },
});

Attribution (required)

Each tileset carries its required credit in the attribution field of its TileJSON or style, and most clients render that automatically — which is why a TileJSON URL is the better thing to hand your map. A raw XYZ URL carries no such metadata, so if you use one, display the attribution for each tileset you use; Copy XYZ URL shows you the exact text.

Those credits are short because most licences allow it: only a licence that requires its notice on the map itself — ODbL, hence © OpenStreetMap contributors — stays in the line. The rest sit behind the Re:Earth Papers link every credit carries, which goes to /attribution: every source, with its licence, per tileset.

Operating policy

Operator

Operated by Eukarya Inc. as part of the Re:Earth ecosystem. Source, architecture notes and the full tileset table live in the repository; bugs and requests are welcome as issues there.