Skip to content

Commit

Permalink
update stamen map tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed Nov 6, 2023
1 parent 66a9353 commit 35cb978
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/map/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const layers = (leaflet, map) => {
);

const toner = leaflet.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}{r}.{ext}',
'https://tiles.stadiamaps.com/tiles/stamen_toner/{z}/{x}/{y}{r}.png ',
{
noWrap: true,
maxZoom: 20,
Expand All @@ -108,7 +108,7 @@ export const layers = (leaflet, map) => {
);

const tonerLite = leaflet.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}{r}.{ext}',
'https://tiles.stadiamaps.com/tiles/stamen_toner_lite/{z}/{x}/{y}{r}.png ',
{
noWrap: true,
maxZoom: 20,
Expand All @@ -117,7 +117,7 @@ export const layers = (leaflet, map) => {
);

const watercolor = leaflet.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.{ext}',
'https://tiles.stadiamaps.com/tiles/stamen_watercolor/{z}/{x}/{y}.jpg ',
{
noWrap: true,
maxZoom: 16,
Expand All @@ -126,7 +126,7 @@ export const layers = (leaflet, map) => {
);

const terrain = leaflet.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}{r}.{ext}',
'https://tiles.stadiamaps.com/tiles/stamen_terrain/{z}/{x}/{y}{r}.png ',
{
noWrap: true,
maxZoom: 18,
Expand Down

0 comments on commit 35cb978

Please sign in to comment.