如何在 iPhone 中使用 Mapkit 获取位置名称?

发布于 2024-12-12 07:57:10 字数 112 浏览 0 评论 0原文

我是 iPhone 开发新手,现在我面临着开发一个应用程序的问题,当用户在屏幕上点击两秒时我需要获取坐标(纬度,长)并获取用户位置名称,我得到了坐标,但我我无法获取用户点击的用户位置名称。请帮我解决这个问题吗?

I am new in iphone development and right now i am facing problem for developing developing an application in which i need to get coordinate(lat, long) when user tapped on screen for two second and also get user location name,i got coordinate but i am unable to get user location name on which user tapped. so kindly help me on that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉酒的小男人 2024-12-19 07:57:10

在 iOS 5+ 中,使用 CLGeocoder< /code>及其 reverseGeocodeLocation:completionHandler: 方法。

就您而言,您可能对 areasOfInterest 属性最感兴趣。

例子:

CLGeocoder* gc = [[CLGeocoder alloc] init];
double lat, lon; // get these where you will
[gc reverseGeocodeLocation:[[CLLocation alloc] initWithLatitude:lat longitude:lon] completionHandler:^(NSArray *placemarks, NSError *error) {
    for ( CLPlacemark* place in placemarks ) {
        if ( place.region )
            NSLog( @"%@", place.region );
        // throroughfare is street name, subThoroughfare is street number
        if ( place.thoroughfare )
            NSLog( @"%@ %@", place.subThoroughfare, place.thoroughfare );
        for ( NSString* aoi in place.areasOfInterest )
            NSLog( @"%@", aoi );
    }
}];

In iOS 5+ use CLGeocoder and its reverseGeocodeLocation:completionHandler: method.

In your case, you're probably most interested in the areasOfInterest property.

Example:

CLGeocoder* gc = [[CLGeocoder alloc] init];
double lat, lon; // get these where you will
[gc reverseGeocodeLocation:[[CLLocation alloc] initWithLatitude:lat longitude:lon] completionHandler:^(NSArray *placemarks, NSError *error) {
    for ( CLPlacemark* place in placemarks ) {
        if ( place.region )
            NSLog( @"%@", place.region );
        // throroughfare is street name, subThoroughfare is street number
        if ( place.thoroughfare )
            NSLog( @"%@ %@", place.subThoroughfare, place.thoroughfare );
        for ( NSString* aoi in place.areasOfInterest )
            NSLog( @"%@", aoi );
    }
}];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文