You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Is your feature request related to a problem? Please describe.
Google maps autocomplete becomes very expensive on a large scale, this is due that it performs a request each time a key is pressed.
Describe the solution you'd like
Best way to avoid sending too many requests is to add a debounce feature to wait x ms before sending a new request..
Is your feature request related to a problem? Please describe.
Google maps autocomplete becomes very expensive on a large scale, this is due that it performs a request each time a key is pressed.
Describe the solution you'd like
Best way to avoid sending too many requests is to add a debounce feature to wait x ms before sending a new request..