Skip to content

Commit

Permalink
feat(basemaps): add dark baseman (#384)
Browse files Browse the repository at this point in the history
Co-authored-by: Patrick Mast <mast@ubilabs.net>
  • Loading branch information
pwambach and pmast authored Jul 15, 2020
1 parent 09668d9 commit 852f006
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/scripts/config/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,16 @@ const basemapUrls = {
land: `${baseUrlTiles}/basemaps/land`,
ocean: `${baseUrlTiles}/basemaps/ocean`,
atmosphere: `${baseUrlTiles}/basemaps/atmosphere`,
blue: `${baseUrlTiles}/basemaps/blue`
blue: `${baseUrlTiles}/basemaps/blue`,
dark: `${baseUrlTiles}/basemaps/dark`
};

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

export default {
Expand Down

0 comments on commit 852f006

Please sign in to comment.