0

When I type in and get a dropdown with suggestions (suggestions-wrapper) - is it possible to get the click event on an item in the dropdown list? Thanks.

SERG
  • 3,907
  • 8
  • 44
  • 89

1 Answers1

2

You can subscribe to the result event:

geocoder.on('result', result => console.log(result));
Steve Bennett
  • 114,604
  • 39
  • 168
  • 219