@opengeoweb/webmap 19.4.0 → 19.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,6 +19,13 @@ export interface EDRFeatureLayerOptions {
|
|
|
19
19
|
collectionId: string;
|
|
20
20
|
parameterNames: string[];
|
|
21
21
|
}
|
|
22
|
+
export interface STACGeoTIFFLayerOptions {
|
|
23
|
+
assetKey?: string;
|
|
24
|
+
dataLayout?: 'auto' | 'temporal' | 'spatial-tiles';
|
|
25
|
+
frameGroupProperty?: string;
|
|
26
|
+
spatialFilter?: boolean;
|
|
27
|
+
temporalStep?: string;
|
|
28
|
+
}
|
|
22
29
|
export interface LayerFoundation extends TiledLayerFoundation {
|
|
23
30
|
acceptanceTimeInMinutes?: number | null;
|
|
24
31
|
dimensions?: Dimension[];
|
|
@@ -33,7 +40,7 @@ export interface LayerFoundation extends TiledLayerFoundation {
|
|
|
33
40
|
title?: string;
|
|
34
41
|
type?: string;
|
|
35
42
|
geojson?: FeatureCollection;
|
|
36
|
-
options?: EDRFeatureLayerOptions;
|
|
43
|
+
options?: EDRFeatureLayerOptions | STACGeoTIFFLayerOptions;
|
|
37
44
|
showLayerLegend?: boolean;
|
|
38
45
|
}
|
|
39
46
|
export interface LayerOptions extends LayerFoundation {
|
|
@@ -11,7 +11,7 @@ import { parseISO8601DateToDate, DateInterval, parseISO8601IntervalToDateInterva
|
|
|
11
11
|
import { WMXMLStringToJson } from './WMXMLParser';
|
|
12
12
|
export { default as WMJSDimension, handleDateUtilsISOString, } from './WMJSDimension';
|
|
13
13
|
export { default as WMLayer } from './WMLayer';
|
|
14
|
-
export type { LayerOptions, LayerFoundation, EDRFeatureLayerOptions, } from './WMLayerTypes';
|
|
14
|
+
export type { LayerOptions, LayerFoundation, EDRFeatureLayerOptions, STACGeoTIFFLayerOptions, } from './WMLayerTypes';
|
|
15
15
|
export { LayerType };
|
|
16
16
|
export { default as WMBBOX } from './WMBBOX';
|
|
17
17
|
export type { Bbox } from './WMBBOX';
|