|
1 | 1 | module.exports = { |
2 | | - catalogUrl: "http://0.0.0.0:8081", |
3 | | - catalogTitle: "eoAPI STAC Browser", |
4 | | - allowExternalAccess: true, // Must be true if catalogUrl is not given |
5 | | - allowedDomains: [], |
6 | | - detectLocaleFromBrowser: true, |
7 | | - storeLocale: true, |
8 | | - locale: "en", |
9 | | - fallbackLocale: "en", |
10 | | - supportedLocales: [ |
11 | | - "de", |
12 | | - "es", |
13 | | - "en", |
14 | | - "fr", |
15 | | - "it", |
16 | | - "ro" |
17 | | - ], |
18 | | - apiCatalogPriority: null, |
19 | | - useTileLayerAsFallback: true, |
20 | | - displayGeoTiffByDefault: false, |
21 | | - buildTileUrlTemplate: ({href, asset}) => "http://0.0.0.0:8082/cog/tiles/{z}/{x}/{y}@2x?url=" + encodeURIComponent(asset.href.startsWith("/vsi") ? asset.href : href), |
22 | | - stacProxyUrl: null, |
23 | | - pathPrefix: "/", |
24 | | - historyMode: "history", |
25 | | - cardViewMode: "cards", |
26 | | - cardViewSort: "asc", |
27 | | - showThumbnailsAsAssets: false, |
28 | | - stacLint: true, |
29 | | - geoTiffResolution: 128, |
30 | | - redirectLegacyUrls: false, |
31 | | - itemsPerPage: 12, |
32 | | - defaultThumbnailSize: null, |
33 | | - maxPreviewsOnMap: 50, |
34 | | - crossOriginMedia: null, |
35 | | - requestHeaders: {}, |
36 | | - requestQueryParameters: {}, |
37 | | - preprocessSTAC: null, |
38 | | - authConfig: null |
| 2 | + catalogUrl: "http://localhost:8081", |
| 3 | + catalogTitle: "eoAPI STAC Browser", |
| 4 | + allowExternalAccess: true, // Must be true if catalogUrl is not given |
| 5 | + allowedDomains: [], |
| 6 | + detectLocaleFromBrowser: true, |
| 7 | + storeLocale: true, |
| 8 | + locale: "en", |
| 9 | + fallbackLocale: "en", |
| 10 | + supportedLocales: ["de", "es", "en", "fr", "it", "ro"], |
| 11 | + apiCatalogPriority: null, |
| 12 | + useTileLayerAsFallback: false, |
| 13 | + displayGeoTiffByDefault: false, |
| 14 | + buildTileUrlTemplate: ({ href, asset }) => |
| 15 | + "http://localhost:8082/external/tiles/WebMercatorQuad/{z}/{x}/{y}@2x?url=" + |
| 16 | + encodeURIComponent(asset.href.startsWith("/vsi") ? asset.href : href), |
| 17 | + stacProxyUrl: null, |
| 18 | + pathPrefix: "/", |
| 19 | + historyMode: "history", |
| 20 | + cardViewMode: "cards", |
| 21 | + cardViewSort: "asc", |
| 22 | + showThumbnailsAsAssets: false, |
| 23 | + stacLint: true, |
| 24 | + geoTiffResolution: 128, |
| 25 | + redirectLegacyUrls: false, |
| 26 | + itemsPerPage: 12, |
| 27 | + defaultThumbnailSize: null, |
| 28 | + maxPreviewsOnMap: 50, |
| 29 | + crossOriginMedia: null, |
| 30 | + requestHeaders: {}, |
| 31 | + requestQueryParameters: {}, |
| 32 | + preprocessSTAC: null, |
| 33 | + authConfig: null, |
39 | 34 | }; |
0 commit comments