什么是"地点搜索框"在Google Places API中?

时间:2016-03-25 09:38:09

标签: javascript google-maps google-places-api

我正在使用Google Maps JavaScript API。

除了' places_changed'之外是否还有其他活动?从google.maps.places.SearchBox(document.createElement(' nameForElement'))返回的对象的事件?

您可以在此示例中看到地点搜索框。 Google Maps JavaScript API- places search box sample code

最后我需要做的是点击它时清除搜索框。但我认为没有点击'此搜索框的事件。捕获点击事件的关键词是什么? ' mouseclick','点击',' onclick' ...?

1 个答案:

答案 0 :(得分:1)

<input>添加点击监听器。

对于链接的示例,它将是:

  // Create the search box and link it to the UI element.
  var input = document.getElementById('pac-input');
  var searchBox = new google.maps.places.SearchBox(input);

  google.maps.event.addDomListener(input,'click',function(){
    this.value='';
  });