Render-only Source adapter for OGC API Maps. Same shape as the Tiles adapter — Source.protocol("ogc-maps") exposes the runtime class for server-rendered map images; the canonical query family throws.
Source.protocol("ogc-maps")
const maps = dataset.source("ogc-map")!.protocol("ogc-maps");const png = await maps!.map({ bbox: [-158, 21, -157, 22], width: 512, height: 512 }); Copy
const maps = dataset.source("ogc-map")!.protocol("ogc-maps");const png = await maps!.map({ bbox: [-158, 21, -157, 22], width: 512, height: 512 });
Render-only Source adapter for OGC API Maps. Same shape as the Tiles adapter —
Source.protocol("ogc-maps")exposes the runtime class for server-rendered map images; the canonical query family throws.