forked from jfmartinez4/stac-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
58 lines (58 loc) · 1.46 KB
/
config.js
File metadata and controls
58 lines (58 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export default {
catalogUrl: "https://ciesin.github.io/stac-browser/stac/catalog.json",
catalogTitle: "CIESIN STAC Browser - Alpha",
catalogImage: null,
allowExternalAccess: false, // Must be true if catalogUrl is not given
allowedDomains: ["ciesin.github.io"],
detectLocaleFromBrowser: true,
storeLocale: true,
locale: "en",
fallbackLocale: "en",
supportedLocales: [
"de",
"ar",
// "de-CH",
"es",
"en",
// "en-GB",
// "en-US",
"fr",
// "fr-CA",
// "fr-CH",
"it",
// "it-CH",
"ro",
"ja",
"pt",
// "pt-BR",
"id",
"pl"
],
apiCatalogPriority: null,
useTileLayerAsFallback: false,
displayGeoTiffByDefault: false,
displayPreview: true,
displayOverview: true,
buildTileUrlTemplate: null,
getMapSourceOptions: null,
pathPrefix: "/stac-browser/",
historyMode: "hash",
cardViewMode: "cards",
cardViewSort: "asc",
showKeywordsInItemCards: false,
showKeywordsInCatalogCards: false,
showThumbnailsAsAssets: false,
searchResultsPerPage: null,
itemsPerPage: null,
collectionsPerPage: null,
maxEntriesPerPage: 1000,
defaultThumbnailSize: null,
crossOriginMedia: null,
requestHeaders: {},
requestQueryParameters: {},
socialSharing: ['email', 'bsky', 'mastodon', 'x'],
preprocessSTAC: null,
authConfig: null,
crs: {},
footerLinks: null
};