InstantSearch
/
React
/
V6
/
API reference
Aug. 07, 2023
Redo | React InstantSearch V6 (Deprecated)
This version of React InstantSearch has been deprecated in favor of the latest version of React InstantSearch.
Signature
Signature
<Redo // Optional parameters translations={object} />
About this widget
The Redo
widget displays a button to redo the search on the current map view when the refined on map move option is disabled.
Examples
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import {
GoogleMapsLoader,
GeoSearch,
Redo,
Marker,
} from 'react-instantsearch-dom-maps';
<div style={{ height: 500 }}>
<GoogleMapsLoader apiKey="GOOGLE_MAPS_API_KEY">
{google => (
<GeoSearch google={google} enableRefineOnMapMove={false}>
{({ hits }) => (
<div>
<Redo />
{hits.map(hit => (
<Marker key={hit.objectID} hit={hit} />
))}
</div>
)}
</GeoSearch>
)}
</GoogleMapsLoader>
</div>
Props
translations
Optional
Type:
object
A mapping of keys to translation values.
redo
: the label of the redo button.
Copy
1
2
3
4
5
<Redo
translations={{
redo: 'Redo search here',
}}
/>
Did you find this page helpful?