Type Alias FeatureInfoRequestBinding

FeatureInfoRequestBinding: {
    crs: readonly string[];
    format: string;
    kind: "wms-kvp";
    url: string;
}

Validated point feature-info request binding selected during WMS discovery.

Mirrors RasterRequestBinding for the query lane: the binding carries the exact same-origin GetFeatureInfo operation URL advertised by GetCapabilities, the negotiated INFO_FORMAT the canonical adapter can project into features, and the advertised CRS identifiers whose WMS 1.3 axis order the SDK can prove. Its presence is what makes canonical Source.query() executable against a third-party WMS; without it the query surface stays fail-closed.

Type declaration

  • Readonlycrs: readonly string[]

    Advertised CRS identifiers usable for the point envelope, in advertised order.

  • Readonlyformat: string
  • Readonlykind: "wms-kvp"
  • Readonlyurl: string