diff --git a/src/config-examples/app-config-example.js b/src/config-examples/app-config-example.js
index 349526ff5..23a7a9381 100755
--- a/src/config-examples/app-config-example.js
+++ b/src/config-examples/app-config-example.js
@@ -75,36 +75,28 @@ const appConfig = {
maxZoom: 19
},
{
- name: 'Topography',
- id: 'topography',
+ name: 'Lite contrast',
+ id: 'stamen-toner-lite',
visible: false,
- url: 'https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
- attribution: 'Map data: © OpenStreetMap, SRTM | Map style: © OpenTopoMap (CC-BY-SA)',
- maxZoom: 18
- },
- {
- name: 'Transport Dark',
- id: 'transport-dark',
- visible: false,
- url: 'https://{s}.tile.thunderforest.com/transport-dark/{z}/{x}/{y}.png?apikey=13efc496ac0b486ea05691c820824f5f',
- attribution: 'Maps © Thunderforest, Data © OpenStreetMap contributors',
- maxZoom: 18
+ url: 'https://tiles.stadiamaps.com/tiles/stamen_toner_lite/{z}/{x}/{y}{r}.png',
+ attribution: '© Stadia Maps © Stamen Design © OpenMapTiles © OpenStreetMap contributors',
+ maxZoom: 19
},
{
- name: 'Outdoors',
- id: 'outdoors',
+ name: 'High contrast',
+ id: 'stamen-toner',
visible: false,
- url: 'https://{s}.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png?apikey=13efc496ac0b486ea05691c820824f5f',
- attribution: 'Maps © Thunderforest, Data © OpenStreetMap contributors',
- maxZoom: 18
+ url: 'https://tiles.stadiamaps.com/tiles/stamen_toner/{z}/{x}/{y}{r}.png',
+ attribution: '© Stadia Maps © Stamen Design © OpenMapTiles © OpenStreetMap contributors',
+ maxZoom: 19
},
{
- name: 'Cyclosm',
- id: 'cyclosm',
+ name: 'Light color',
+ id: 'cartodb-positron',
visible: false,
- url: 'https://{s}.tile-openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
- attribution: 'CyclOSM | Map data: © OpenStreetMap contributors',
- maxZoom: 20
+ url: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png',
+ attribution: '© OpenStreetMap contributors © CARTO',
+ maxZoom: 19
}
],
wpsOverlayerTileProviders: []
diff --git a/src/config-examples/settings-options-example.js b/src/config-examples/settings-options-example.js
index 1e3d0ffc7..e3f6baa70 100644
--- a/src/config-examples/settings-options-example.js
+++ b/src/config-examples/settings-options-example.js
@@ -45,10 +45,9 @@ const settingsOptions = {
tileServices: [
{ text: 'OpenStreetMap', value: 'osm' },
{ text: 'World Imagery', value: 'world-imagery' },
- { text: 'Topography', value: 'topography' },
- { text: 'Transport Dark', value: 'transport-dark' },
- { text: 'Cyclosm', value: 'cyclosm' },
- { text: 'Custom', value: 'custom' }
+ { text: 'Lite contrast', value: 'stamen-toner-lite' },
+ { text: 'High contrast', value: 'stamen-toner' },
+ { text: 'Light color', value: 'cartodb-positron' }
]
}