tomchentw / react-google-maps

React.js Google Maps integration component
https://tomchentw.github.io/react-google-maps/
MIT License
4.62k stars 939 forks source link

Resultados de búsqueda Resultados de la Web The Autocomplete list in search box is not showing when I use it in a modal #1026

Open homerteo opened 4 years ago

homerteo commented 4 years ago

I have an application that uses the map in different components. When I use the map in the main view of the application the autocomplete of the SearchBox works perfectly, but when I use the map in a modal the autocomplete does not work. Why could this be happening? How could i fix it? The version I am using of react-google-maps is 9.4.5.

JustFly1984 commented 4 years ago

Hello @homerteo. The repo of this project is unmaintained more than a year, and we had build new version https://www.npmjs.com/package/@react-google-maps/api

We had rewrite it to TypeScript, and updating it frequently: https://github.com/JustFly1984/react-google-maps-api/tree/master/packages/react-google-maps-api You can enjoy autocomplete.

You can see our docs: https://react-google-maps-api-docs.netlify.com/

Also a lot of examples: https://react-google-maps-api-gatsby-demo.netlify.com/ https://github.com/JustFly1984/react-google-maps-api/tree/master/packages/react-google-maps-api-gatsby-example/src/examples

The bundle size is much smaller: https://bundlephobia.com/result?p=@react-google-maps/api

Our Spectrum community: https://spectrum.chat/react-google-maps
Our Slack channel: https://join.slack.com/t/react-google-maps-api/shared_invite/enQtODc5ODU1NTY5MzQ4LTBiNTYzZmY1YmVjYzJhZThkMGU0YzUwZjJkNGJmYjk4YjQyYjZhMDk2YThlZGEzNDc0M2RhNjBmMWE4ZTJiMjQ

Enjoy!

the issue you have is due to completely new javascript context. look at this issue where I have explained your use case: https://github.com/JustFly1984/react-google-maps-api/issues/248

homerteo commented 4 years ago

Thanks JustFly1984