使用MapKit框架

使用MapKit框架

 

 

地图显示

最简单显示地图的代码:

//
//  RootViewController.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import <MapKit/MapKit.h>

@interface RootViewController ()

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 初始化地图控件
    MKMapView *mapView = [[MKMapView alloc] initWithFrame:self.view.bounds];

    // 地图的类型
    mapView.mapType = MKMapTypeStandard;

    // 视图的宽度和高度将和父视图的宽度一起成比例变化
    mapView.autoresizingMask = \
        UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

    // 显示地图
    [self.view addSubview:mapView];
}

@end

RootViewController

注意:使用地图之前是需要引入MapKit框架的哦.

autoresizingMask是干什么用的呢(实际上,我看过后还是不懂)?


UIViewAutoresizingNone


这个常量如果被设置,视图将不进行自动尺寸调整。


UIViewAutoresizingFlexibleHeight


这个常量如果被设置,视图的高度将和父视图的高度一起成比例变化。否则,视图的高度将保持不变。


UIViewAutoresizingFlexibleWidth


这个常量如果被设置,视图的宽度将和父视图的宽度一起成比例变化。否则,视图的宽度将保持不变。


UIViewAutoresizingFlexibleLeftMargin


这个常量如果被设置,视图的左边界将随着父视图宽度的变化而按比例进行调整。否则,视图和其父视图的左边界的相对位置将保持不变。


UIViewAutoresizingFlexibleRightMargin


这个常量如果被设置,视图的右边界将随着父视图宽度的变化而按比例进行调整。否则,视图和其父视图的右边界的相对位置将保持不变。


UIViewAutoresizingFlexibleBottomMargin


这个常量如果被设置,视图的底边界将随着父视图高度的变化而按比例进行调整。否则,视图和其父视图的底边界的相对位置将保持不变。


UIViewAutoresizingFlexibleTopMargin


这个常量如果被设置,视图的上边界将随着父视图高度的变化而按比例进行调整。否则,视图和其父视图的上边界的相对位置将保持不变。

 RootViewController.m

 

 

位置定位

//
//  RootViewController.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import <MapKit/MapKit.h>

@interface RootViewController ()<CLLocationManagerDelegate>

@property (nonatomic, strong) CLLocationManager *locationManager;

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 判断定位功能是否可以使用
    if([CLLocationManager locationServicesEnabled])
    {
        // 初始化定位管理器
        _locationManager = [[CLLocationManager alloc] init];
        _locationManager.delegate = self;

        // 开始定位
        [_locationManager startUpdatingLocation];
    }
    else
    {
        NSLog(@"定位功能不可用");
    }
}

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    CLLocation *newLocation = [locations lastObject];
    NSLog(@"%@", newLocation);

    // 定位结束
    [manager stopUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error
{
    NSLog(@"%@", error);

    // 定位结束
    [manager stopUpdatingLocation];
}

@end

RootViewController.m

为什么需要判断定位功能可不可用呢?下图可以看出为什么了.

打印信息:

2014-05-15 09:25:11.883 CoreLocation[17610:60b] <+37.78583400,-122.40641700> +/- 5.00m (speed -1.00 mps / course -1.00) @ 5/15/14, 9:25:11 AM China Standard Time

本人将这个代理定位的方式改写成了可以使用block的方式:

YXLocation.h

//
//  YXLocation.h
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>

@protocol YXLocationProtocol <NSObject>

@optional
- (void)currentLocation:(CLLocation *)location sucess:(BOOL)sucess;

@end

typedef void (^locationBlock_t)(CLLocation *currentLocation, BOOL sucess);

@interface YXLocation : NSObject

@property (nonatomic, copy,  readwrite)  locationBlock_t         locationBlock;
@property (nonatomic, assign, readwrite) id<YXLocationProtocol>  protocol;

@property (nonatomic, strong, readonly)  CLLocation             *location;

- (void)start;

@end

Code

YXLocation.m

//
//  YXLocation.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "YXLocation.h"

@interface YXLocation ()<CLLocationManagerDelegate>

@property (nonatomic, strong) CLLocationManager *locationManager;

@end

@implementation YXLocation

- (instancetype)init
{
    self = [super init];
    if (self)
    {
        _locationManager = [[CLLocationManager alloc] init];
        _locationManager.delegate = self;
    }
    return self;
}

- (void)start
{
    if([CLLocationManager locationServicesEnabled])
    {
        [_locationManager startUpdatingLocation];
    }
    else
    {
        NSLog(@"定位功能没有开启");

        if (_locationBlock)
        {
            _locationBlock(nil, NO);
        }

        if (_protocol)
        {
            [_protocol currentLocation:nil sucess:NO];
        }
    }
}

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    CLLocation *newLocation = [locations lastObject];

    _location = newLocation;

    if (_locationBlock)
    {
        _locationBlock(newLocation, YES);
    }

    if (_protocol)
    {
        [_protocol currentLocation:newLocation sucess:YES];
    }

    [_locationManager stopUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error
{
    NSLog(@"定位功能出错");

    if (_locationBlock)
    {
        _locationBlock(nil, NO);
    }

    if (_protocol)
    {
        [_protocol currentLocation:nil sucess:NO];
    }
}

@end

Code

将经纬度转换为有意义的地址

//
//  RootViewController.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import <MapKit/MapKit.h>

@interface RootViewController ()<CLLocationManagerDelegate>

@property (nonatomic, strong) CLLocationManager *locationManager;
@property (nonatomic, strong) CLGeocoder        *geocoder;

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 判断定位功能是否可以使用
    if([CLLocationManager locationServicesEnabled])
    {
        // 初始化定位管理器
        _locationManager = [[CLLocationManager alloc] init];
        _locationManager.delegate = self;

        // 开始定位
        [_locationManager startUpdatingLocation];
    }
    else
    {
        NSLog(@"定位功能不可用");
    }
}

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    CLLocation *newLocation = [locations lastObject];

    // 初始化经纬度解析器
    _geocoder = [[CLGeocoder alloc] init];

    // 解析经纬度值
    [_geocoder reverseGeocodeLocation:newLocation
                    completionHandler:^(NSArray *placemarks, NSError *error) {
                        CLPlacemark *placemark = [placemarks objectAtIndex:0];

                        // 将字典信息拼接起来
                        NSString *locatedAt = \
                            [[placemark.addressDictionary valueForKey:@"FormattedAddressLines"] componentsJoinedByString:@", "];

                        // 打印信息
                        NSLog(@"我在 %@",locatedAt);

                        NSLog(@"国家代码 %@",placemark.ISOcountryCode);
                        NSLog(@"国家    %@",placemark.country);
                        NSLog(@"邮政编码 %@",placemark.postalCode);
                        NSLog(@"administrativeArea %@",placemark.administrativeArea);
                        NSLog(@"locality %@",placemark.locality);
                        NSLog(@"subLocality %@",placemark.subLocality);
                        NSLog(@"subThoroughfare %@",placemark.subThoroughfare);
                    }];

    // 定位结束
    [manager stopUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error
{
    NSLog(@"%@", error);

    // 定位结束
    [manager stopUpdatingLocation];
}

@end

RootViewController.m

打印信息如下:

2014-05-15 09:40:13.982 CoreLocation[2482:60b] 我在 中国北京市东城区东四街道东四朝阳门北小街2-1号
2014-05-15 09:40:13.986 CoreLocation[2482:60b] 国家代码 CN
2014-05-15 09:40:13.987 CoreLocation[2482:60b] 国家    中国
2014-05-15 09:40:13.988 CoreLocation[2482:60b] 邮政编码 (null)
2014-05-15 09:40:13.989 CoreLocation[2482:60b] administrativeArea 北京市
2014-05-15 09:40:13.991 CoreLocation[2482:60b] locality (null)
2014-05-15 09:40:13.992 CoreLocation[2482:60b] subLocality 东城区
2014-05-15 09:40:13.993 CoreLocation[2482:60b] subThoroughfare 2-1号

 

 

将有意义的地址转换为经纬度

//
//  RootViewController.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import <MapKit/MapKit.h>

@interface RootViewController ()<CLLocationManagerDelegate>

@property (nonatomic, strong) CLGeocoder *geocoder;

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    _geocoder = [[CLGeocoder alloc] init];

    [_geocoder geocodeAddressString:@"中国北京市东城区东四街道东四朝阳门北小街2-1号"
                  completionHandler:^(NSArray *placemarks, NSError *error)
     {

         if([placemarks count] > 0 && error == nil)
         {

             NSLog(@"发现了 %lu placemark(s).",(unsigned long)[placemarks count]);

             CLPlacemark *firstPlacemark = [placemarks objectAtIndex:0];

             NSLog(@"经度 = %f",firstPlacemark.location.coordinate.longitude);
             NSLog(@"纬度 = %f",firstPlacemark.location.coordinate.latitude);

         }
         else if ([placemarks count] == 0 && error == nil)
         {
             NSLog(@"没有找到 placemarks.");

         }
         else if (error != nil)
         {
             NSLog(@"错误 = %@",error);
         }
     }];
}

@end

RootViewController.m

打印信息:

2014-05-15 09:51:15.270 CoreLocation[2525:60b] 发现了 2 placemark(s).
2014-05-15 09:51:15.274 CoreLocation[2525:60b] 经度 = 116.425960
2014-05-15 09:51:15.275 CoreLocation[2525:60b] 纬度 = 39.931609

 

 

直接显示用户当前位置

//
//  RootViewController.m
//  CoreLocation
//
//  Copyright (c) 2014年 Y.X. All rights reserved.
//

#import "RootViewController.h"
#import <MapKit/MapKit.h>

@interface RootViewController ()<CLLocationManagerDelegate>

@property (nonatomic, strong) CLLocationManager *locationManager;

@end

@implementation RootViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    // 判断定位功能是否可以使用
    if([CLLocationManager locationServicesEnabled])
    {
        // 初始化定位管理器
        _locationManager = [[CLLocationManager alloc] init];
        _locationManager.delegate = self;

        // 开始定位
        [_locationManager startUpdatingLocation];
    }
    else
    {
        NSLog(@"定位功能不可用");
    }
}

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    // 获取坐标信息
    CLLocation *newLocation = [locations lastObject];

    // 定位结束
    [manager stopUpdatingLocation];

    // 初始化地图控件
    MKMapView *mapView = [[MKMapView alloc] initWithFrame:self.view.bounds];

    // 地图的类型
    mapView.mapType = MKMapTypeStandard;

    // 视图的宽度和高度将和父视图的宽度一起成比例变化
    mapView.autoresizingMask = \
    UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

    // 显示用户所在位置(此处系统会询问你是否使用当前位置)
    mapView.showsUserLocation = YES;

    // 地图缩放级别
    MKCoordinateSpan span = {0.02, 0.02};

    // 被显示的区域
    MKCoordinateRegion region = {newLocation.coordinate, span};

    // 设置显示的区域
    [mapView setRegion:region];

    // 显示地图
    [self.view addSubview:mapView];
}

- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error
{
    NSLog(@"%@", error);

    // 定位结束
    [manager stopUpdatingLocation];
}

@end

RootViewController.m

 

 

 

时间: 2024-10-07 15:24:57

使用MapKit框架的相关文章

iOS7应用开发14、MapKit框架

MapKit Framework的基本概念: MapKit Framework提供了可以将地图直接嵌入到窗口和视图中的功能,同时还提供了地图标注.添加弹窗显示.进行反地理信息编码以通过地标信息查找经纬度坐标等功能. MKMapView类显示了一个地图视图,其中有一个位置指示器(annotation)提示了当前的位置坐标以及说明.可以利用该类实例显示地图信息并根据应用提供的数据改变地图的内容,如将地图的某个坐标点置于视图中心点.指定地图显示的大小区域和根据自定义信息创建标记点等. MKMapVie

iOS开发之MapKit

1.概述 MapKit框架使用前提: 导入框架: 导入主头文件: #import <MapKit/MapKit.h> MapKit框架使用须知: MapKit框架中所有数据类型的前缀都是MK. MapKit有一个比较重要的UI控件 :MKMapView,专门用于地图显示. 2.跟踪显示用户的位置 设置MKMapView的userTrackingMode属性可以跟踪显示用户的当前位置: MKUserTrackingModeNone :不跟踪用户的位置 MKUserTrackingModeFoll

地图框架

   http://blog.csdn.net/debolee/article/details/44886209 使用苹果自带的地图框架,需要在项目中加载MapKit.framework(项目-TARGETS--Build Phases--Link Binary With Libraries),并在头文件中导入#import<MapKit/MapKit.h> 一.MKMapView的常用属性和方法 NSArray *annotations;//保存地图中的大头针 MKCoordinateReg

iOS 6苹果地图应用开发

在iOS 6之后,不再使用谷歌地图了,而是使用苹果自己的地图,但是API编程接口没有太大的变化.开发人员不需要再学习很多新东西就能开发地图应用,这是负责任的做法.因此本节介绍的内容也同样适用于iOS5上运行地图应用开发. iOS应用程序中使用Map Kit API开发地图应用程序. 其核心是MKMapView类使用.我们可以设置地图显示方式.控制地图,可以在地图上添加标注. 显示地图 在Map Kit API中显示地图的视图是MKMapView,它的委托协议是MKMapViewDelegate.

使用TFHpple解析html

使用TFHpple解析html https://github.com/topfunky/hpple   前期准备工作 引入静态库文件 添加库文件的 header search paths(注意,必须选中 All) 将从github上下载的源码包拖入工程当中 准备工作结束   使用详情 我们来解析网址 http://www.cnblogs.com/YouXianMing/ 中的title标签哦. 思路是这样子的: 1. 将网页转换成NSData 2. 按照标签值在NSData中数据进行查询 3.

iOS开发系列--地图与定位

概览 现在很多社交.电商.团购应用都引入了地图和定位功能,似乎地图功能不再是地图应用和导航应用所特有的.的确,有了地图和定位功能确实让我们的生活更加丰富多彩,极大的改变了我们的生活方式.例如你到了一个陌生的地方想要查找附近的酒店.超市等就可以打开软件搜索周边;类似的,还有很多团购软件可以根据你所在的位置自动为你推荐某些商品.总之,目前地图和定位功能已经大量引入到应用开发中.今天就和大家一起看一下iOS如何进行地图和定位开发. 定位 地图 定位 要实现地图.导航功能,往往需要先熟悉定位功能,在iO

iOS原生地图开发进阶——使用导航和附近兴趣点检索

iOS原生地图开发进阶--使用导航和附近兴趣点检索 iOS中的mapKit框架对国际化的支持非常出色.在前些篇博客中,对这个地图框架的基础用法和标注与覆盖物的添加进行了详细的介绍,这篇博客将介绍两个更加实用的功能的开发:线路导航与兴趣点搜索.前几篇博客的链接如下: 地图基础用法详解:http://my.oschina.net/u/2340880/blog/415360. 添加大头针与自定义标注:http://my.oschina.net/u/2340880/blog/415441. 添加地图覆盖

主线程中也不绝对安全的UI操作

从最初开始学习 iOS 的时候,我们就被告知 UI 操作一定要放在主线程进行.这是因为 UIKit 的方法不是线程安全的,保证线程安全需要极大的开销.那么问题来了,在主线程中进行 UI 操作一定是安全的么? 显然,答案是否定的! 在苹果的 MapKit 框架中,有一个叫做 addOverlay 的方法,它在底层实现的时候,不仅仅要求代码执行在主线程上,还要求执行在 GCD 的主队列上.这是一个极罕见的问题,但已经有人在使用 ReactiveCocoa 时踩到了坑,并提交了 issue. 苹果的

《MonoTouch开发实践指南》一导读

前 言 欢迎阅读本书.如果你是一个.NET开发人员且有兴趣开发基于iOS设备的本地应用程序,那么MonoTouch是个不错的选择.它在优雅的C#和.NET中融合了CocoaTouch框架和Objective-C语言概念,让其成为一个精心设计且乐在其中的技术.可以使用MonoTouch,在App Store和企业中部署应用程序(假设具有适用的许可证).甚至只需要一个免费版本的模拟器,就可以学习和尝试它,而不需要任何额外的费用.此外,如果你是一个学生,还可以使用带有折扣的学生版本. MonoTouc