• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 在 iPhone 中使用 map View 读取当前位置名称

[复制链接]
菜鸟教程小白 发表于 2022-12-13 16:19:53 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我读取了当前位置的纬度和经度值,然后成功地将那个位置固定在 iPhone 中。现在我想用这个纬度和经度值来读取那个地名。

我使用下面的代码来读取查找当前位置:

- (void)mapViewMKMapView *)mapView1 didUpdateUserLocationMKUserLocation *)userLocation{

    CLLocation *whereIAm = userLocation.location;

    NSLog(@"I'm at %@", whereIAm.description);

    latitude = whereIAm.coordinate.latitude;
    longitude = whereIAm.coordinate.longitude;

    NSLog(@"LAT : %f",latitude);
    NSLog(@"LONG : %f",longitude);

    mapView.mapType=MKMapTypeStandard;
    [mapView setMapType:MKMapTypeStandard];
    [mapView setZoomEnabled:YES];
    [mapView setScrollEnabled:YES];

    MKCoordinateRegion region = { {0.0, 0.0 }, { 0.0, 0.0 } }; 
    region.center.latitude =latitude;  //22.569722 ;
    region.center.longitude = longitude;  //88.369722;
    region.span.longitudeDelta = 0.01f;
    region.span.latitudeDelta = 0.01f;
    [mapView setRegion:region animated:YES]; 

    [mapView setDelegate:self];

    DisplayMap *ann = [[DisplayMap alloc] init]; 
    ann.title = @" Welcome";
    ann.subtitle = @"Hi"; 
    ann.coordinate = region.center; 
   [mapView addAnnotation:ann];   
}


- (void)viewDidLoad {
      [super viewDidLoad];

      mapView.showsUserLocation = YES;
      mapView.delegate = self;
   }



-(MKAnnotationView *)mapViewMKMapView *)mV viewForAnnotation: (id<MKAnnotation>)annotation {
   MKPinAnnotationView *pinView = nil; 
   if(annotation != mapView.userLocation) 
   {
    static NSString *defaultPinID = @"com.invasivecode.pin";
    pinView = (MKPinAnnotationView *)[mapView       dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
   }     
   [mapView.userLocation setTitle"I am here"];
   return pinView;        
 }



Best Answer-推荐答案


像这样使用 MKReverseGeocoderDelegate 协议(protocol):

@interface YourViewController : UIViewController <MKReverseGeocoderDelegate> 
{
}


@implementation YourViewController

- (void)mapViewMKMapView *)mapView1 didUpdateUserLocationMKUserLocation *)userLocation{
     CLLocation *whereIAm = userLocation.location;
     MKReverseGeocoder *reverseGeocoder = [[MKReverseGeocoder alloc] initWithCoordinate:whereIAm.coordinate];
     reverseGeocoder.delegate = self;
     [reverseGeocoder start];
}

现在实现以下方法委托(delegate)以获取响应:

- (void)reverseGeocoderMKReverseGeocoder *)geocoder didFindPlacemarkMKPlacemark *)placemark {
      NSLog(@"I'm at %@", placemark.locality);
}

有关更多信息,请查看:http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKReverseGeocoder_Class/

关于ios - 在 iPhone 中使用 map View 读取当前位置名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3822297/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap