我通过for循环创建GMSMarker,但GMSMarker不支持标记
for(int i=0;i<[self.shopDetailArray count];i++)
{
SHShopLocator *shop = [self.shopDetailArray objectAtIndex:i];
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(22.2783, 114.1589);
marker.icon = [UIImage imageNamed:@"StoreLocator_pin"];
marker.infoWindowAnchor = CGPointMake(0.3, 0.4);
marker.map = self.map;
}
那么在设置自定义markerInfoWindow时如何识别每个标记?
- (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker
答案 0 :(得分:5)
您可以使用GMSMarker
的 userData 属性。您可以存储每个标记的标识符!
GMSMarker *marker = [[GMSMarker alloc] init];
marker.userData = @{@"marker_id":[NSNumber numberWithInt:12]};
在以下位置检索其值:
- (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker
{
NSNumber *number = [marker.userData objectForKey:@"marker_id"];
return mapView;
}
标记数据。您可以使用此属性关联任意 用这个标记对象。适用于iOS的Google Maps SDK既不会读也不会读取 写下这个属性。请注意,userData不应该保持强大 引用任何Maps对象,否则可能会创建一个循环 (防止ARC释放物体)。