NextGIS Frontend
    Preparing search index...

    Interface NgwProviderOptions

    Options required to initialize an NGW provider.

    interface NgwProviderOptions {
        connector?: default;
        connectorOptions?: NgwConnectorOptions;
        label?: string;
        searchResources: SearchResource[];
        searchUrl?: string;
    }

    Hierarchy (View Summary)

    Index
    connector?: default

    Connector instance for NGW. If not provided, will be created internally

    connectorOptions?: NgwConnectorOptions

    Options for the internal NgwConnector (if one needs to be created)

    label?: string

    Label to represent the provider. This could be used for user interfaces to display the source of search results.

    searchResources: SearchResource[]

    List of NGW resources to search within

    searchUrl?: string

    URL endpoint for the search service. This is where queries will be sent to obtain search results.