0

我在我的应用程序中使用适用于 iOS 的 Google map sdk(版本 1.1.2)。我在地图上有多个标记。在点击特定标记信息后,我必须调用另一个包含该地点详细信息的视图。

我知道我必须用哪种方法编码。它在

-(void)mapView:(GMSMapView *)mapView
didTapInfoWindowOfMarker:(id<GMSMarker>)marker

但是,我如何获得点击标记的标题字符串?

非常感谢您的帮助!

4

1 回答 1

3

I think you should be able to just use:

-(void)mapView:(GMSMapView *)mapView 
    didTapInfoWindowOfMarker:(id<GMSMarker>)marker
{
    NSString* title = marker.title;
    ...
}
于 2013-04-04T14:33:10.147 回答