3

我基于地图创建了一个 iOS 应用程序,我想在其中使用适用于 iOS 的 Google Maps SDK 而不是 Mapkit,我找到了文档,但我没有找到与自定义注释视图相关的方法,谁能为我提供解决方案创建自定义注释视图(信息窗口)以及如何为其添加内容(标题、片段)。

4

2 回答 2

13

我不知道你们,但我发现谷歌渲染的 UIView 信息窗口有点限制。使用SMCalloutViewRyan Maxwell 的示例项目,可以呈现更多交互视图。

截至 2014 年 6 月 10 日,这适用于 Google Maps SDK v1.8.1。

Google 地图上的默认 SMCalloutView

首先,做一些设置:

#import <SMCalloutView/SMCalloutView.h>

static const CGFloat CalloutYOffset = 10.0f;

@interface ViewController ()
@property (strong, nonatomic) SMCalloutView *calloutView;
@property (strong, nonatomic) UIView *emptyCalloutView;
@end

初始化SMCalloutView,添加一个按钮,然后创建一个空的UIView

- (void)viewDidLoad
{
    /* all your other view init, settings, etc... */

    self.calloutView = [[SMCalloutView alloc] init];
    self.calloutView.hidden = YES;

    UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [button addTarget:self
               action:@selector(calloutAccessoryButtonTapped:)
     forControlEvents:UIControlEventTouchUpInside];
    self.calloutView.rightAccessoryView = button;

    self.emptyCalloutView = [[UIView alloc] initWithFrame:CGRectZero];
}

我们必须绘制那个空UIView以满足 Maps SDK,但我们将显示的视图是SMCalloutView. 我还为标注视图设置了可重复使用的垂直偏移。

添加委托方法来处理信息窗口调用:

#pragma mark - GMSMapViewDelegate

- (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker {
    CLLocationCoordinate2D anchor = marker.position;

    CGPoint point = [mapView.projection pointForCoordinate:anchor];

    self.calloutView.title = marker.title;

    self.calloutView.calloutOffset = CGPointMake(0, -CalloutYOffset);

    self.calloutView.hidden = NO;

    CGRect calloutRect = CGRectZero;
    calloutRect.origin = point;
    calloutRect.size = CGSizeZero;

    [self.calloutView presentCalloutFromRect:calloutRect
                                      inView:mapView
                           constrainedToView:mapView
                                    animated:YES];

    return self.emptyCalloutView;
}

- (void)mapView:(GMSMapView *)pMapView didChangeCameraPosition:(GMSCameraPosition *)position {
    /* move callout with map drag */
    if (pMapView.selectedMarker != nil && !self.calloutView.hidden) {
        CLLocationCoordinate2D anchor = [pMapView.selectedMarker position];

        CGPoint arrowPt = self.calloutView.backgroundView.arrowPoint;

        CGPoint pt = [pMapView.projection pointForCoordinate:anchor];
        pt.x -= arrowPt.x;
        pt.y -= arrowPt.y + CalloutYOffset;

        self.calloutView.frame = (CGRect) {.origin = pt, .size = self.calloutView.frame.size };
    } else {
        self.calloutView.hidden = YES;
    }
}

- (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate {
    self.calloutView.hidden = YES;
}

- (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker {
    /* don't move map camera to center marker on tap */
    mapView.selectedMarker = marker;
    return YES;
}

处理对标注按钮的触摸,这里使用带有标记标题和片段的警报视图:

- (void)calloutAccessoryButtonTapped:(id)sender {
    if (mapView_.selectedMarker) {
        GMSMarker *marker = mapView_.selectedMarker;
        //NSDictionary *userData = marker.userData;

        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:marker.title
                                                            message:marker.snippet
                                                           delegate:nil
                                                  cancelButtonTitle:@"OK"
                                                  otherButtonTitles:nil];
        [alertView show];
    }
}

显然,确保您的 ViewController(.h) 监听 GMSMapViewDelegate:

@interface ViewController : UIViewController <GMSMapViewDelegate>

这应该基本上可以工作。有关完整的 xcode 项目,请参阅 Ryan Maxwell 的上述示例

于 2014-06-10T05:29:50.327 回答
10

如果您在 GoogleMaps.Framework 中检查 GMSMapView.h,您可以看到下面的方法,它可以让您为标记添加自定义信息窗口,而不是单独使用标准标题和片段:

注意你(操作)说 annotationView=infoWindow
BUT NORMAL: annotationView = marker 本身和 calloutView = infoWindow

/**
 * Called when a marker is about to become selected, and provides an optional
 * custom info window to use for that marker if this method returns a UIView.
 * If you change this view after this method is called, those changes will not
 * necessarily be reflected in the rendered version.
 *
 * The returned UIView must not have bounds greater than 500 points on either
 * dimension.  As there is only one info window shown at any time, the returned
 * view may be reused between other info windows.
 *
 * @return The custom info window for the specified marker, or nil for default
 */
- (UIView *)mapView:(GMSMapView *)mapView
    markerInfoWindow:(id<GMSMarker>)marker;
于 2013-03-07T20:13:25.757 回答