feat: add map-driven orthophoto analysis
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 02:01:03 +02:00
parent 845c4696e7
commit daccd3869a
29 changed files with 1300 additions and 26 deletions
+20
View File
@@ -298,6 +298,26 @@ export interface VectorSelectionBBox {
crs?: 'EPSG:4326'
}
export interface OrthophotoAcquireRequest {
bbox: VectorSelectionBBox
area_id?: string
force_refresh?: boolean
}
export interface OrthophotoAcquisitionResult {
output_dataset_id: string
reused: boolean
provider: string
layer: string
width: number
height: number
resolution_m: number
bbox_epsg4326: number[]
bbox_epsg31370: number[]
attribution: string
limitation_message: string
}
export interface MapViewportState {
bbox: VectorSelectionBBox
zoom: number