热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

​MapKit地图

2019独角兽企业重金招聘Python工程师标准1MapKit基础使用***TerminatingappduetouncaughtexceptionNSInvalidUnar

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1 MapKit基础使用

 *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named MKMapView'

    如果storyboard中用到了地图, 必须手动导入框架

#import 
@interface ViewController ()
/***  地图*/
@property (weak, nonatomic) IBOutlet MKMapView *customMapView;
@property (nonatomic, strong) CLLocationManager *mgr;
/***  地理编码对象*/
@property (nonatomic ,strong) CLGeocoder *geocoder;
@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];// 1.设置地图显示的类型/*typedef enum : NSUInteger {MKMapTypeStandard , 标准(默认)MKMapTypeSatellite ,卫星MKMapTypeHybrid 混合(标准 + 卫星)} MKMapType;*/self.customMapView.mapType = MKMapTypeSatellite;//2.CoreLocation框架定位// 注意:在iOS8中, 如果想要追踪用户的位置, 必须自己主动请求隐私权限if ([[UIDevice currentDevice].systemVersion doubleValue] >= 8.0) {// 主动请求权限self.mgr = [[CLLocationManager alloc] init];[self.mgr requestAlwaysAuthorization];}//3. 设置不允许地图旋转self.customMapView.rotateEnabled = NO;//4. 成为mapVIew的代理self.customMapView.delegate = self;//5. 如果想利用MapKit获取用户的位置, 可以追踪/*typedef NS_ENUM(NSInteger, MKUserTrackingMode) {MKUserTrackingModeNone = 0, 不追踪/不准确的MKUserTrackingModeFollow, 追踪MKUserTrackingModeFollowWithHeading, 追踪并且获取用的方向}*/self.customMapView.userTrackingMode =  MKUserTrackingModeFollow;}#pragma MKMapViewDelegate
/***  每次更新到用户的位置就会调用(调用不频繁, 只有位置改变才会调用)*  @param userLocation 大头针模型*/
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{/*地图上蓝色的点就称之为大头针大头针可以拥有标题/子标题/位置信息大头针上显示什么内容由大头针模型确定(MKUserLocation)*///1.设置大头针内容// 利用反地理编码获取位置之后设置标题[self.geocoder reverseGeocodeLocation:userLocation.location completionHandler:^(NSArray *placemarks, NSError *error) {CLPlacemark *placemark = [placemarks firstObject];NSLog(@"获取地理位置成功 name = %@ locality = %@", placemark.name, placemark.locality);userLocation.title = placemark.name;userLocation.subtitle = placemark.locality;}];//2.设置大头针显示范围// 移动地图到当前用户所在位置。
//    [self.customMapView setCenterCoordinate:userLocation.location.coordinate animated:YES];//3. 设置地图显示的区域,也会移动地图到当前用户所在位置// 获取用户的位置CLLocationCoordinate2D center = userLocation.location.coordinate;// 指定经纬度的跨度MKCoordinateSpan span = MKCoordinateSpanMake(0.009310,0.007812);// 将用户当前的位置作为显示区域的中心点, 并且指定需要显示的跨度范围MKCoordinateRegion region = MKCoordinateRegionMake(center, span);// 设置显示区域[self.customMapView setRegion:region animated:YES];
}//- (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated/***  地图的区域改变完成时调用。通常用来获取显示范围的经纬度。*  1度等于110km*/
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{NSLog(@"地图的区域改变完成时调用");// 0.119170 0.100000// 0.238531 0.200156// 0.009310 0.007812NSLog(@"%f %f", self.customMapView.region.span.latitudeDelta, self.customMapView.region.span.longitudeDelta);
}#pragma mark - 懒加载
- (CLGeocoder *)geocoder
{if (!_geocoder) {_geocoder = [[CLGeocoder alloc] init];}return _geocoder;
}

2 自定义大头针

**
**要在1,基础使用的前提下自定义//添加数据到模型中
- (IBAction)addAnno {// 创建大头针模型HMAnnotation *anno = [[HMAnnotation alloc] init];anno.title = @"传智";anno.subtitle = @"育新小区";CGFloat latitude = 36.821199 + arc4random_uniform(20);CGFloat longitude = 116.858776 + arc4random_uniform(20);anno.coordinate = CLLocationCoordinate2DMake(latitude , longitude);anno.icon = @"category_1";// 添加大头针[self.customMapView addAnnotation:anno];// 创建大头针模型HMAnnotation *anno2 = [[HMAnnotation alloc] init];anno2.title = @"传智2";anno2.subtitle = @"育新小区2";CGFloat latitude2 = 36.821199 + arc4random_uniform(20);CGFloat longitude2 = 116.858776 + arc4random_uniform(20);anno2.coordinate = CLLocationCoordinate2DMake(latitude2 , longitude2);anno2.icon = @"category_2";// 添加大头针[self.customMapView addAnnotation:anno2];
}//添加多少次数据到annotation,就会调用多少次这个代理方法
#pragma MKMapViewDelegate
/***  每次添加大头针就会调用(地图上有几个大头针就调用几次)**  @param mapView    地图*  @param annotation 大头针模型**  @return 大头针的view*/
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation
{// 对用户当前的位置的大头针特殊处理,定位位置大头针不变// 注意: 如果return nil, 系统会按照自己默认的方式显示if ([annotation isKindOfClass:[HMAnnotation class]] == NO) {return nil;}static NSString *identifier = @"anno";/* 1.从缓存池中取2.如果缓存池中没有, 创建一个新的1>注意: 默认情况下MKAnnotationView是无法显示的,除非使用图标图片属性,否则想自定义大头针可以使用MKAnnotationView的子类MKPinAnnotationView2>.注意: 如果是自定义的大头针, 默认情况点击大头针之后是不会显示标题的, 需要我们自己手动设置显示,要设置annoView.canShowCallout = YES;//强制转换为子类MKPinAnnotationView *annoView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];//两个MKPinAnnotationView的特有属性annoView.pinColor = MKPinAnnotationColorPurple; //设置大头针的颜色annoView.animatesDrop = YES;                   //设置大头针从天而降*/MKAnnotationView *annoView = [mapView dequeueReusableAnnotationViewWithIdentifier:identifier];if (annoView == nil) {annoView = [[MKPinAnnotationView alloc] initWithAnnotation:nil reuseIdentifier:identifier];annoView = [[MKAnnotationView alloc] initWithAnnotation:nil reuseIdentifier:identifier];// 设置大头针标题是否显示annoView.canShowCallout = YES;// 设置大头针标题显示的偏移位annoView.calloutOffset = CGPointMake(0, 0);// 设置大头针左边的辅助视图annoView.leftCalloutAccessoryView = [[UISwitch alloc] init];// 设置大头针右边的辅助视图annoView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];}// 设置大头针的图片// 注意: 如果你是使用的MKPinAnnotationView创建的自定义大头针, 那么设置图片无效, 因为系统内部会做一些操作, 覆盖掉我们自己的设置HMAnnotation *anno = (HMAnnotation *)annotation;annoView.image = [UIImage imageNamed:anno.icon];// 3.给大头针View设置数据annoView.annotation = annotation;// 4.返回大头针Viewreturn annoView;}

//
/************以下方法是封装MKAnnotationView(没有涉及到它的子类MKPinAnnotationView),类似与tableView的cell*************/
#import "HMAnnotationView.h"
#import "HMAnnotation.h"    //数据模型@implementation HMAnnotationView//初始化
- (instancetype)initWithAnnotation:(id)annotation reuseIdentifier:(NSString *)reuseIdentifier
{if (self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]) {// 初始化// 设置大头针标题是否显示self.canShowCallout = YES;// 设置大头针左边的辅助视图self.leftCalloutAccessoryView = [[UISwitch alloc] init];// 设置大头针右边的辅助视图self.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];}return self;
}+ (instancetype)annotationViewWithMap:(MKMapView *)mapView
{static NSString *identifier = @"anno";// 1.从缓存池中取HMAnnotationView *annoView = (HMAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];// 2.如果缓存池中没有, 创建一个新的if (annoView == nil) {annoView = [[HMAnnotationView alloc] initWithAnnotation:nil reuseIdentifier:identifier];}return annoView;
}//- (void)setAnnotation:(id)annotation
- (void)setAnnotation:(HMAnnotation *)annotation
{[super setAnnotation:annotation];//     处理自己特有的操作self.image = [UIImage imageNamed:annotation.icon];}




转:https://my.oschina.net/u/2346786/blog/509326



推荐阅读
  • 本文探讨了Python类型注解使用率低下的原因,主要归结于历史背景和投资回报率(ROI)的考量。文章不仅分析了类型注解的实际效用,还回顾了Python类型注解的发展历程。 ... [详细]
  • 本文介绍如何通过Java代码调用阿里云短信服务API来实现短信验证码的发送功能,包括必要的依赖添加和关键代码示例。 ... [详细]
  • iOS如何实现手势
    这篇文章主要为大家展示了“iOS如何实现手势”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“iOS ... [详细]
  • 本文介绍了如何使用 Python 的 Pyglet 库加载并显示图像。Pyglet 是一个用于开发图形用户界面应用的强大工具,特别适用于游戏和多媒体项目。 ... [详细]
  • Spring Security基础配置详解
    本文详细介绍了Spring Security的基础配置方法,包括如何搭建Maven多模块工程以及具体的安全配置步骤,帮助开发者更好地理解和应用这一强大的安全框架。 ... [详细]
  • Python3爬虫入门:pyspider的基本使用[python爬虫入门]
    Python学习网有大量免费的Python入门教程,欢迎大家来学习。本文主要通过爬取去哪儿网的旅游攻略来给大家介绍pyspid ... [详细]
  • 本文详细介绍了如何在 Ubuntu 14.04 系统上搭建仅使用 CPU 的 Caffe 深度学习框架,包括环境准备、依赖安装及编译过程。 ... [详细]
  • This article explores the process of integrating Promises into Ext Ajax calls for a more functional programming approach, along with detailed steps on testing these asynchronous operations. ... [详细]
  • 个人博客:打开链接依赖倒置原则定义依赖倒置原则(DependenceInversionPrinciple,DIP)定义如下:Highlevelmo ... [详细]
  • 本文探讨了如何利用 Android 的 Movie 类来展示 GIF 动画,并详细介绍了调整 GIF 尺寸以适应不同布局的方法。同时,提供了相关的代码示例和注意事项。 ... [详细]
  • 本文探讨了如何使用Scrapy框架构建高效的数据采集系统,以及如何通过异步处理技术提升数据存储的效率。同时,文章还介绍了针对不同网站采用的不同采集策略。 ... [详细]
  • egg实现登录鉴权(七):权限管理
    权限管理包含三部分:访问页面的权限,操作功能的权限和获取数据权限。页面权限:登录用户所属角色的可访问页面的权限功能权限:登录用户所属角色的可访问页面的操作权限数据权限:登录用户所属 ... [详细]
  • 本文详细介绍了如何使用C#实现不同类型的系统服务账户(如Windows服务、计划任务和IIS应用池)的密码重置方法。 ... [详细]
  • 本文探讨了异步编程的发展历程,从最初的AJAX异步回调到现代的Promise、Generator+Co以及Async/Await等技术。文章详细分析了Promise的工作原理及其源码实现,帮助开发者更好地理解和使用这一重要工具。 ... [详细]
  • 本文详细介绍了在 CentOS 系统中如何创建和管理 SWAP 分区,包括临时创建交换文件、永久性增加交换空间的方法,以及如何手动释放内存缓存。 ... [详细]
author-avatar
ghsk
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有