I want to generate a marker when user search for the location using react-native-google-places-autocomplete. I'm using expo react native. Currently, the marker is set at a fixed location. I want it to be set based on the input given by user through react-native-google-places-autocomplete
. How can I achieve this? Below are my codes:
<View>
<GooglePlacesAutocomplete
placeholder=""
query={{
key: GOOGLE_PLACES_API_KEY,
language: 'en', // language of the results
}}
fetchDetails={true}
onPress={(data, details:any) => {
setDestinationLatitude(details.geometry.location.lat.toString());
setDestinationLongitude(details.geometry.location.lng.toString());
}}
onFail={(error) => console.error(error)}
requestUrl={{
url:
'https://cors-anywhere.herokuapp.com/https://maps.googleapis.com/maps/api',
useOnPlatform: 'web',
}} // this in only required for use on the web. See https://git.io/JflFv more for details.
keyboardShouldPersistTaps='always'
styles={{
textInputContainer: {
width: "90%",
//top: 8,
alignSelf: 'center'
},
textInput: {
borderColor: grey,
borderWidth: 1,
borderRadius: 5,
height: 48,
paddingBottom: 8,
color: black,
fontSize: 16,
},
predefinedPlacesDescription: {
color: '#1faadb',
},
}}
/>
</View>
<View style={style.mapContainer}>
<MapView
style={style.map}
region={region}
onRegionChangeComplete={region => setRegion(region)}
>
<Marker coordinate={{
latitude: latitude ,
longitude: longitude,
}}></Marker>
</MapView>
</View>
I have tried other methods based on stackoverflow's answers but they seem to be outdated and I can't run them
To do this, first, you need to get the coordinates of the place you selected to use it as the coordinates where you want to set your region and marker when you press a place from the autocomplete suggestion. You can do this by adding the following code:
I also used the
useState
that I will use when changing the region and marker state after selecting the place.Next, I set
fetchDetails={true}
since the coordinates fromGooglePlacesDetailsQuery
we used earlier will be displayed in thedetails
property of theonPress
property.On the
onPress
property, I call a function and set the state for region and marker fromdetails
property.Here's a sample code in snack where you need to set your own API key for the Autocomplete to work and the code snippet is shown below: