Interface PlaceOptions

Option to activate Place Details detection within the input. You can paste one or many GIDs in the input. The separation can be either , (comma) or (space).

const place = {
enabled: true,
geometries: 'source'
}
interface PlaceOptions {
    enabled: boolean;
    geometries?: GeometriesOptions | () => GeometriesOptions;
}

Hierarchy (View Summary)

Properties

Properties

enabled: boolean

Enable place details endpoint.

Set the type of return from Places Details API, either a point or the source geometry.

geometries can be static or dynamic through a function.