Interface ReverseOptions

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

const reverse = {
enabled: true,
radius: 5,
}
interface ReverseOptions {
    enabled: boolean;
    radius?: number;
}

Properties

Properties

enabled: boolean

Enable reverse geocoding enpoint.

radius?: number

Radius over the point in meters. The maximum value is 5.