Member Junction
    Preparing search index...

    Forward (address-to-coordinates) geocoding request. Providers receive both a pre-built single-line address string and the structured components (when available). Providers may use either form depending on their API shape.

    interface GeocodeRequest {
        Address?: string;
        AddressString: string;
        City?: string;
        Country?: string;
        CountryCode?: string;
        PostalCode?: string;
        StateProvince?: string;
    }
    Index

    Properties

    Address?: string

    Optional structured components. Empty/missing when not provided.

    AddressString: string

    Pre-built single-line address, e.g. "123 Main St, Springfield, IL 62701, USA".

    City?: string
    Country?: string
    CountryCode?: string

    ISO 3166-1 alpha-2 country code (e.g. "US"), used for region-bias / routing.

    PostalCode?: string
    StateProvince?: string