我知道在 Java 版本的 Google Maps 中这很容易,但我不知道如何在 SDK 的目标 C 版本中关闭信息窗口。
我正在使用这种方法:
-(void) mapView:(GMSMapView *)mapView
didTapInfoWindowOfMarker:(id<GMSMarker>)marker {
sharedGlobal.shouldShowPlayer = YES;
/* adds the path to the map by decoding google's encoded string */
[self addPath: sharedGlobal.encodedPathString];
}
并想添加一行来关闭与标记关联的信息窗口。