interface SearchCompatOptions {
    allPlaceholder?: string;
    autoNavigate?: boolean;
    autoRefreshSources?: boolean;
    container?: null | string | HTMLElement;
    defaultSourceMaxFeatureCandidates?: number;
    defaultSourceMaxResults?: number;
    defaultSourceMaxSuggestions?: number;
    eventBus?: CompatEventBus;
    includeDefaultSources?: boolean;
    locationEnabled?: boolean;
    maxResults?: number;
    popupEnabled?: boolean;
    resultGraphicEnabled?: boolean;
    searchAllEnabled?: boolean;
    sources?: readonly SearchSourceCompat[];
    view?: unknown;
}

Properties

allPlaceholder?: string
autoNavigate?: boolean
autoRefreshSources?: boolean
container?: null | string | HTMLElement
defaultSourceMaxFeatureCandidates?: number
defaultSourceMaxResults?: number
defaultSourceMaxSuggestions?: number
eventBus?: CompatEventBus
includeDefaultSources?: boolean
locationEnabled?: boolean
maxResults?: number
popupEnabled?: boolean
resultGraphicEnabled?: boolean
searchAllEnabled?: boolean
sources?: readonly SearchSourceCompat[]
view?: unknown