Select 使用 Google Maps iOS SDK 的标记方法

Select a marker method with Google Maps iOS SDK

我有一个应用程序,每次用户接近 GMSMapView 上的地图时都会发送通知。

我希望当用户打开通知 (UILocalNotification) 时标记已经被选中并且其信息 window 将可见。

我在委托中搜索了执行该操作的方法(selectAMarker:/selectAMarkerInPosition: 或类似的方法),但我没有找到类似的方法。

任何人都知道一种方法 that/know 我该怎么做?

有可能吗?

非常感谢!

我觉得你喜欢这个方法

-(BOOL) mapView:(GMSMapView *) mapView didTapMarker:(GMSMarker *)marker
{
NSLog(@"try");
return YES;
}

别忘了打电话给代表

@interface ViewController : UIViewController <GMSMapViewDelegate>

yourmapView_.delegate = self;