我正在使用https://developers.google.com/maps/documentation/javascript/places#places_autocomplete。有没有办法知道用户何时选择建议列表中的项目?是否触发了任何事件?
答案 0 :(得分:1)
是不是会发生“place_changed”事件?
我基于doc,“Getting Place Information”部分。
example的源代码可以看到有
google.maps.event.addListener(autocomplete, 'place_changed', function() {
...
});