feat: add governed hydrology and historical imagery
This commit is contained in:
@@ -301,13 +301,31 @@ export interface VectorSelectionBBox {
|
||||
export interface OrthophotoAcquireRequest {
|
||||
bbox: VectorSelectionBBox
|
||||
area_id?: string
|
||||
product_key?: string
|
||||
force_refresh?: boolean
|
||||
}
|
||||
|
||||
export interface OrthophotoProductRead {
|
||||
key: string
|
||||
display_name: string
|
||||
observation_label: string
|
||||
temporal_granularity: string
|
||||
native_resolution_m: number
|
||||
supports_detection: boolean
|
||||
color_mode: string
|
||||
catalog_url: string
|
||||
limitation_message: string
|
||||
}
|
||||
|
||||
export interface OrthophotoAcquisitionResult {
|
||||
output_dataset_id: string
|
||||
reused: boolean
|
||||
provider: string
|
||||
product_key: string
|
||||
display_name: string
|
||||
observation_label: string
|
||||
temporal_granularity: string
|
||||
supports_detection: boolean
|
||||
layer: string
|
||||
width: number
|
||||
height: number
|
||||
@@ -318,6 +336,13 @@ export interface OrthophotoAcquisitionResult {
|
||||
limitation_message: string
|
||||
}
|
||||
|
||||
export interface MapImageOverlay {
|
||||
url: string
|
||||
bbox: [number, number, number, number]
|
||||
label: string
|
||||
opacity?: number
|
||||
}
|
||||
|
||||
export interface MapViewportState {
|
||||
bbox: VectorSelectionBBox
|
||||
zoom: number
|
||||
|
||||
Reference in New Issue
Block a user