PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WD20 - Addresses from Google Maps in Dropdown List While Typing
WD20 - Addresses from Google Maps in Dropdown List While Typing
Iniciado por guest, 02,feb. 2016 02:19 - 2 respuestas
Publicado el 02,febrero 2016 - 02:19
Greetings All,

For WinDev 20, I am want to know if there is a built-in function to hit Google Maps while you type in an address. Ideally, the user would see a dropdown list of addresses offered by Google Maps so they could select the appropriate one (just like at maps.google.com but inside the Windows application).

Sorry if this is already discussed. I searched but did not see this topic addressed.

If this does exist, would I be able to associate by Enterprise Google ClientID with the queries?

Thank you!!

Paul
Publicado el 02,febrero 2016 - 12:26
Hi Paul

I do not think that you can directly link a combo this way. You can however, do it by code quite easily.
For each new character typed, you start a new thread that request adresses from google. When a thread gets an answer, and IF nothing else was typed during this time, you display the results.

Best regards
Publicado el 02,febrero 2016 - 18:02
Thank you, Fabrice!!