interface SearchEngineAdvancedOptions {
    advancedSearch?: AbstractAdvancedSearch[];
    ariaLabel?: string;
    baseSearchOptions?: SearchEngineGeocodeIGNOptions;
    hint?: string;
    historic?: string | boolean;
    label?: string;
    maximumEntries?: number;
    minChars?: number;
    placeholder?: string;
    popupButtons?: PopupButton[];
    search?: boolean;
    searchService?: AbstractSearchService;
    target?: string | HTMLElement;
    title?: string;
}

Properties

advancedSearch?: AbstractAdvancedSearch[]

Liste des recherches avancées à intégrer.

ariaLabel?: string

Libellé ARIA.

baseSearchOptions?: SearchEngineGeocodeIGNOptions

Options pour le moteur de recherche de base.

hint?: string

Texte d'aide.

historic?: string | boolean

Gestion historique local (false|true|string).

label?: string

Label affiché.

maximumEntries?: number

Nombre maximal d'entrées affichées.

minChars?: number

Nombre minimal de caractères pour autocomplétion.

placeholder?: string

Placeholder de l'input.

popupButtons?: PopupButton[]

Boutons personnalisés à ajouter dans le popup.

search?: boolean

Comportement en tant que barre de recherche.

searchService?: AbstractSearchService

Service de recherche.

target?: string | HTMLElement

Élément DOM ou sélecteur cible.

title?: string

Titre du contrôle.