在完成高德基本的导入和修改plist之后 ,实现定位和逆地理编码
#import "ViewController.h"
#import <CoreLocation/CoreLocation.h>
@interfaceViewController ()
@property (nonatomic,strong) MAPointAnnotation *pointAnnotaiton;
@property (nonatomic,strong) UISegmentedControl *showSegment;
@property (nonatomic,strong) UIButton *button;
@property (nonatomic,strong) UIButton *button1;
@property (nonatomic,copy) AMapLocatingCompletionBlock completionBlock;
@property(nonatomic,strong)CLGeocoder *geocoder;
@end
@implementation ViewController
-(CLGeocoder *)geocoder
{
if (_geocoder==nil) {
_geocoder=[[CLGeocoderalloc]init];

本文介绍了在iOS应用中如何使用高德地图SDK进行定位,并结合CLGeocoder进行逆地理编码,将坐标转换为实际地址。在`ViewController`类中设置了定位按钮,点击后获取当前位置坐标,并通过逆地理编码显示详细地址。
最低0.47元/天 解锁文章
9182

被折叠的 条评论
为什么被折叠?



