我想InfoWindow
在您从 Google Places 获得的 20 个中打开一个特定的。
首先,我需要确定要打开哪个。因此,一旦我知道要打开的那个,我想通过 Google Places Business ID -> 打开它place.id
。
所以,到目前为止,我已经通过标记顺序( i )对其进行了测试,如下所示:
openInfoWindowBy(i){
infowindow.open(map,i);
}
我刚打电话:openInfoWindowBy(1);
和InfoWindow
1,没有打开。点击事件工作正常:
google.maps.event.addListener(markers[i], 'click', getDetails(placesArr[i], i));
markers[i].setMap(map);
addplace(placesArr[i], i);
我究竟做错了什么?并且有可能打开它place.id
吗?