Add map area selection extraction
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-25 01:59:57 +02:00
parent 00de5dbcb7
commit 851d7220df
18 changed files with 1063 additions and 2 deletions
+21
View File
@@ -274,6 +274,27 @@ export interface VectorStatsResponse {
crs?: string | null
}
export interface VectorSelectionBBox {
min_x: number
min_y: number
max_x: number
max_y: number
crs?: 'EPSG:4326'
}
export interface VectorSelectionRequest {
bbox: VectorSelectionBBox
limit?: number
}
export interface VectorSelectionResponse {
selection_bbox: VectorSelectionBBox
feature_count: number
limit: number
truncated: boolean
geojson: GeoJSON.FeatureCollection
}
export interface DatasetListResponse {
items: DatasetCreateResponse[]
total: number