Type Alias OgcMapFormat

OgcMapFormat:
    | "png"
    | "jpeg"
    | "jpg"
    | "tiff"
    | "tif"
    | "image/png"
    | "image/jpeg"
    | "image/tiff"
    | string & {}

Output format token for an OGC API Maps request. The OGC standard defines the f query value as a short-name token (png, jpeg, jpg, tiff, tif); the server validates against that set. The SDK also accepts the matching media-type aliases (image/png, etc.) and normalizes them to the short name on the wire. The Accept header is media-type based regardless.