MKMapItem 未在 MKPlacemark 上显示正确的信息



我得到一个MKLocalSearch的结果,它包括类似...

{
    address =     {
        formattedAddressLine =         (
            "Marton Road",
            Middlesbrough,
            TS1,
            England
        );
        structuredAddress =         {
            administrativeArea = England;
            areaOfInterest =             (
                "Great Britain"
            );
            country = "United Kingdom";
            countryCode = GB;
            fullThoroughfare = "Marton Road";
            geoId =             (
            );
            locality = Middlesbrough;
            postCode = TS1;
            subAdministrativeArea = Middlesbrough;
            thoroughfare = "Marton Road";
        };
    };
    addressGeocodeAccuracy = 0;
    business =     (
                {
            UID = 9301704419119613323;
            URL = "http://www.cineworld.co.uk";
            attribution =             (
                                {
                    attributionURLs =                     (
                        "yelp5.3:///biz/cineworld-middlesbrough",
                        "yelp4:///biz/cineworld-middlesbrough",
                        "yelp:///biz/cineworld-middlesbrough",
                        "http://yelp.com/biz/cineworld-middlesbrough"
                    );
                    sourceIdentifier = "com.yelp";
                    sourceVersion = 1;
                }
            );
            canBeCorrectedByBusinessOwner = 1;
            name = Cineworld;
            source =             (
                                {
                    "source_id" = "b2LOPag6ha6845__dgXehw";
                    "source_name" = yelp;
                },
                                {
                    "source_id" = 6670;
                    "source_name" = tribune;
                },
                                {
                    "source_id" = 2000000103009680;
                    "source_name" = "acxiom_intl";
                },
                                {
                    "source_id" = "cineworld-middlesbrough";
                    "source_name" = "yelp_alias";
                }
            );
            "star_rating" =             (
                0
            );
            telephone = "+448712002000";
        }
    );
    center =     {
        lat = "54.57633773904653";
        lng = "-1.228197113614671";
    };
    inputLanguage = en;
    localSearchProviderID = 9902;
    mapRegion =     {
        eastLng = "-1.224891596539819";
        northLat = "54.57545000290778";
        southLat = "54.5738619816233";
        westLng = "-1.227631256834202";
    };
    name = Cineworld;
    type = 57;
}

现在,当我将其添加到我的地图中时...

id <MKAnnotation> annotation = mapItem.placemark;
[self.mapView addAnnotation:annotation];

添加了一个图钉,当我点击它时,它会显示"马顿路",但我希望它显示"Cineworld"。

不过,我发现很难找到任何关于将东西从MKMapItem中取出并进入MKPlacemark的信息。

如果我尝试在地标中使用mapItem.name,那么它们都显示"美国"。

知道我如何从中获得更多有用的信息吗?

MKPlacemark返回其 title 属性的地址,MKPlacemark 类不允许您自己设置title

您可以做的是创建一个MKPointAnnotation(具有可设置的title属性(并将其title设置为您想要的任何内容,例如mapItem.name

例如:

MKPointAnnotation *pa = [[MKPointAnnotation alloc] init];
pa.title = mapItem.name;
pa.coordinate = mapItem.placemark.coordinate;
[self.mapView addAnnotation:pa];


注意:
您不必使用 MKPointAnnotation 类(它只是最方便的可用(。
您还可以使用符合MKAnnotation并具有可设置title属性的自定义类(或返回MKMapItemname作为其title的某个类(。

另请注意,如果您希望能够在事后添加的注释中访问相关的MKMapItemMKPlacemark(例如,在地图视图委托方法中(,则需要使用自定义类,而不是MKPointAnnotation添加可在创建注释时设置的"sourceMapItem"或"sourcePlacemark"属性。

这样,您可以根据需要设置title,但仍可以访问创建注记对象的所有原始MKMapItemMKPlacemark值(如果仅使用MKPointAnnotation则无法轻松执行此操作,因为它不保留对源地图项目或地标的引用(。

相关内容

  • 没有找到相关文章

最新更新