Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: autocomplete.getPlace().geometry is undefined #38

Open
Paul-Okello opened this issue Jul 24, 2022 · 1 comment
Open

TypeError: autocomplete.getPlace().geometry is undefined #38

Paul-Okello opened this issue Jul 24, 2022 · 1 comment

Comments

@Paul-Okello
Copy link

I'm getting this error when using the search feature

@shivendra8004
Copy link

@Paul-Okello Bro, my code worked in first attempt so if your error is not resolved yet that try to compare or replace it with my code

My Code:
// Both States In Header.jsx file
const [autocomplete, setAutocomplete] = useState(null);
const onLoad = (autoComp) => setAutocomplete(autoComp);

//onPlaceChange Function
const onPlaceChanged = () => {
const lat = autocomplete.getPlace().geometry.location.lat();
const lng = autocomplete.getPlace().geometry.location.lng();
setCoordinates({ lat, lng });
};

// AutoComplete Function





<InputBase placeholder="Search…" classes={{ root: classes.inputRoot, input: classes.inputInput }} />

If your issue get resolved please mark it as resolved

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants