Skip to content

Commit

Permalink
feat(basemap): add new coloured baseman (#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwambach authored Mar 3, 2022
1 parent 311f281 commit 6613ddf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/scripts/config/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,17 @@ const basemapUrls = {
ocean: `${baseUrlTiles}/basemaps/ocean`,
atmosphere: `${baseUrlTiles}/basemaps/atmosphere`,
blue: `${baseUrlTiles}/basemaps/blue`,
dark: `${baseUrlTiles}/basemaps/dark`
dark: `${baseUrlTiles}/basemaps/dark`,
colored: `${baseUrlTiles}/basemaps/colored`
};

const basemapUrlsOffline = {
land: 'basemaps/land',
ocean: 'basemaps/ocean',
atmosphere: 'basemaps/atmosphere',
blue: 'basemaps/blue',
dark: 'basemaps/dark'
dark: 'basemaps/dark',
colored: 'basemaps/colored'
};

const downloadUrls = {
Expand All @@ -69,7 +71,7 @@ export default {
stories: `${baseUrlStorage}/stories/stories-{lang}.json`,
story: `${baseUrlStorage}/stories/{id}/{id}-{lang}.json`
},
defaultBasemap: 'land' as keyof typeof basemapUrls,
defaultBasemap: 'colored' as keyof typeof basemapUrls,
basemapUrls,
basemapUrlsOffline,
globe: globeState,
Expand Down

0 comments on commit 6613ddf

Please sign in to comment.