Interface JawgPlacesMaplibreOptions

interface JawgPlacesMaplibreOptions {
    accessToken?: string;
    adminArea?: AdminAreaOptions;
    boundary?: BoudaryOptions;
    clearCross?: boolean;
    container?: string | HTMLElement;
    debounceDelay?: number;
    focusPoint?: LatLon | (() => LatLon);
    input?: string | HTMLElement;
    inputClasses?: string | string[];
    language?: string | (() => string);
    layers?: string | string[] | (() => string) | (() => string[]);
    marker?: MapGLMarkerOptions;
    minLength?: number;
    noResultsMessage?: string | false;
    onClear?: (() => void);
    onClick?: ((feature) => void);
    onClose?: (() => void);
    onError?: ((error) => void);
    onFeatures?: ((features) => void);
    placeholder?: string;
    resultContainer?: string | HTMLElement;
    reverse?: ReverseOptions;
    searchOnTyping?: boolean;
    showResultIcons?: boolean;
    size?: number;
    sources?: string | string[] | (() => string[]) | (() => string);
    transition?: MapGLTransitionOptions;
}

Hierarchy (view full)

Properties

accessToken?: string

Your personal access token, create your own on the Jawg Lab. This is filled automatically when you get the library with our CDN.

adminArea?: AdminAreaOptions

Option to show administrative area when available.

boundary?: BoudaryOptions

Set of options when you are looking for places in a particular region.

clearCross?: boolean

Add a clear cross in the right side of the input.

container?: string | HTMLElement

The custom <div> that will contain the input and geocoding results when Places JS is used as MapLibre Control. By default this is generated by Jawg Places JS. With some frameworks/UI libs such as React, you can't use the ref here.

debounceDelay?: number

Set the number of milliseconds to wait before a search validation. If you press Enter the search will be immediately validated. This option work only when searchOnTyping=true. Default value is 350.

focusPoint?: LatLon | (() => LatLon)

Type declaration

input?: string | HTMLElement

The <input> to transform into a geocoding search bar. This can be either a id (e.g #my-input), class selector (e.g .my-input) or the HTMLElement. With some frameworks/UI libs such as React, you can't use the ref here.

inputClasses?: string | string[]

Class to add to the input when it's generated by the library.

language?: string | (() => string)

Return results in a specific language using BCP47 standard (e.g 'en', 'fr', 'de', ...). By default, we use HTTP Header set by the browser and English when not present. Language can be static or dynamic with the function.

Type declaration

    • (): string
    • Returns string

layers?: string | string[] | (() => string) | (() => string[])

Filter the kind of place you want to find. Layers can be static or dynamic with the function.

Type declaration

    • (): string
    • Returns string

Type declaration

    • (): string[]
    • Returns string[]

Option to configure result markers on the map.

minLength?: number

Set the minimum number of characters to trigger a geocoding request. If you press Enter the search will be validated even if the length is not reached. This option work only when searchOnTyping=true. Default value is 0.

noResultsMessage?: string | false

Set a custom message when no results are found. This can be disabled.

onClear?: (() => void)

Callback triggered when the input is empty.

Type declaration

    • (): void
    • Callback triggered when the input is empty.

      Returns void

onClick?: ((feature) => void)

Callback triggered when the user click on a result.

Type declaration

    • (feature): void
    • Callback triggered when the user click on a result.

      Parameters

      • feature: Feature

        The feature selected by the user

      Returns void

Param: feature

The feature selected by the user

onClose?: (() => void)

Callback triggered when the result list is closed/cleared.

Type declaration

    • (): void
    • Callback triggered when the result list is closed/cleared.

      Returns void

onError?: ((error) => void)

Callback triggered when Jawg Places API returns an error.

Type declaration

    • (error): void
    • Callback triggered when Jawg Places API returns an error.

      Parameters

      • error: any

      Returns void

onFeatures?: ((features) => void)

Callback triggered when Jawg Places API returns without error.

Type declaration

    • (features): void
    • Callback triggered when Jawg Places API returns without error.

      Parameters

      • features: Feature[]

        The list of features returned by Jawg Places API

      Returns void

Param: features

The list of features returned by Jawg Places API

placeholder?: string

Placeholder text to add when the input in generated by the library.

resultContainer?: string | HTMLElement

The custom <div> that will contain the geocoding results. By default the container is created by Jawg Places JS. With some frameworks/UI libs such as React, you can't use the ref here.

reverse?: ReverseOptions

Option to activate reverse geocoding withing the input. You can paste coordinates in the form {lat}/{lon} in the input. The separation can be either / (slash), , (comma) or (space).

searchOnTyping?: boolean

Set this to true to activate search on typing, this will also use autocomplete search. Default value is false, you will need to press Enter to validate your search.

showResultIcons?: boolean

Show icon at the left each results.

size?: number

Set the default number of results. Default value is 10.

sources?: string | string[] | (() => string[]) | (() => string)

Filter the originating source of the data. Sources can be static or dynamic with the function.

Type declaration

    • (): string[]
    • Returns string[]

Type declaration

    • (): string
    • Returns string

Option to configure transition on result selection.

Generated using TypeDoc