MapKit Annotation Point标题

时间:2012-05-25 10:55:17

标签: iphone google-maps mapkit

enter image description here

在点击注释点,开发人员创建的内置视图还是由开发人员创建的视图时,是否显示此弹出窗口?

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

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

感谢。

1 个答案:

答案 0 :(得分:1)

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

此链接Adding images to map Annotation