0

在此处输入图像描述

在点击注释点时,这个弹出框是显示的,是内置的还是开发人员创建的视图?

    MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
    annotationPoint.coordinate = annotationCoord;
    annotationPoint.subtitle = user.purchasedLocation;
    [mapView addAnnotation:annotationPoint];

我想在我的地图视图中创建一个类似于上面显示的图像的弹出框。当我将上述代码添加到我的应用程序时,它只显示街道地址。在 MapKit 框架中是否有内置方法来显示这种弹出框,如上图所示的用户图像和箭头图像?

谢谢。

4

1 回答 1

1

查看此 stackoverflow 帖子Annotation with Image这将帮助您在注释中添加按钮和图像。

而这个链接添加图像到地图注释

于 2012-05-25T10:57:42.857 回答