PlacesTimelineInput
PlacesTimelineInput component uses mui Autocomplete component to render places using Google Places API. You should provide the API Url.
The output result is an array of string with the places.
Usage
import { PlacesTimelineInput } from '@ra-libs/react';
<PlacesTimelineInput source="places" fullWidth API_URL={`${env.API_URL}/places`} />;
Props
Prop
Required
Type
Default
Description
API_URL
true
string
-
Your backend API that handles google maps requests.
API_SEARCH_FIELD
false
string
'search'
Query param key to search user input.
API_MAP_TYPE
false
string
'type'
Query param key to set places type.
useMainText
false
boolean
false
use Google Places api structured_formatting.main_text response.
It accepts react-admin TextInput props
Last updated