我正在尝试为标记创建自定义信息窗口。我正在使用Google Maps SDK for iOS。
我已经创建了包含所有对象的自定义XIB文件。为它创建了类。
在标头文件中调用GMSMapViewDelegate
在实现文件中我实现了以下方法:
- (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker {
NSLog(@"Implementing delegate Method");
CustomInfoWindow *infoWindow = [[[NSBundle mainBundle]
loadNibNamed:@"InfoWindow"
owner:self
options:nil]
objectAtIndex:0];
infoWindow.title.text = @"This is title";
infoWindow.address.text = @"This is address";
infoWindow.status.text = @"Here will be status";
return infoWindow;
}
但仍有默认标记。可能是什么问题?
感谢您的帮助。
答案 0 :(得分:7)
尝试不添加GMSMapView代理
您可以在实施文件
中添加GMSMapView DelegateGMSMapView * mapView_ = [GMSMapView mapWithFrame:viewmapbaseView.bounds camera:camera]; mapView_.delegate=self;