如何在GMSMapView上设置自定义标记(图像)

时间:2014-09-12 07:19:12

标签: ios google-maps-sdk-ios

我试过这个

GMSMarker *marker = [[GMSMarker alloc]init];
marker.icon = [UIImage imageNamed:@"pin2.png"];
marker.position = CLLocationCoordinate2DMake(lati, longi);
marker.groundAnchor = CGPointMake(0.5, 0.5);
marker.draggable = YES;
marker.map = mapView;

但我没有得到图像。

1 个答案:

答案 0 :(得分:1)

我认为你错过了这一行:

[mapView setSelectedMarker:marker];