#import "ViewController.h"
#import <MapKit/MapKit.h>
#import "TRAnnotation.h"
@interface ViewController ()<MKMapViewDelegate>
@property (weak, nonatomic) IBOutlet MKMapView *mapView;
@property (nonatomic, strong) CLLocationManager *mgr;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//1.初始化manager对象
self.mgr = [CLLocationManager new];
//2.征求用户的同意/授权(>=iOS8.0+假设用户同意)+Info.plist添加key
[self.mgr requestWhenInUseAuthorization];
//3.设置mapView属性(和定位相关属性)
self.mapView.userTrackingMode = MKUserTrackingModeFollow;
//4.设置mapView的代理
self.mapView.delegate = self;
//设置旋转;地图类型
self.mapView.rotateEnabled = NO;
//默认是标准类型(standard)
self.mapView.mapType = MKMapTypeStandard;
}
//监听用户的位置
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
//修改弹出框的两个文本(上下)
userLocation.title = @"用户的位置";
userLocation.subtitle = @"位置的详细描述...";
//打印用户的位置
NSLog(@"纬度%f; 经度%f", userLocation.location.coordinate.latitude, userLocation.location.coordinate.longitude);
}
//监听用户挪动地图停止的时机
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated {
//region:设备上显示的那部分称为地图视图的区域
NSLog(@"用户挪动地图视图停止...");
}
//添加标注对象(大头针对象)
static int count = 0;
- (IBAction)addAnnotations:(id)sender {
//V2: 1.创建标注对象
TRAnnotation *annotation = [TRAnnotation new];
//2.设置属性(经纬度;两个标题)
CLLocationDegrees latitude = 39.001 + arc4random_uniform(10);//0~9
CLLocationDegrees longitude = 116.001 + arc4random_uniform(10); //0~9
annotation.coordinate = CLLocationCoordinate2DMake(latitude, longitude);
annotation.title = @"1602...";
//V2: 人为地给定条件:偶数给定红色图片;奇数给定蓝色图片
if (count %2 == 0) {
annotation.subtitle = @"我是偶数偶数...";
annotation.image = [UIImage imageNamed:@"icon_paopao_waterdrop_streetscape"];
} else {
//奇数
annotation.subtitle = @"我是奇数奇数...";
annotation.image = [UIImage imageNamed:@"icon_pin_floating"];
}
count++;
//3.添加到地图视图mapView上
[self.mapView addAnnotation:annotation];
//把每次新添加的大头针对象作为区域region的中心(代码挪动地图)
//center:中心;span:跨度
MKCoordinateSpan span = MKCoordinateSpanMake(0.5, 0.2);
MKCoordinateRegion region = MKCoordinateRegionMake(annotation.coordinate, span);
[self.mapView setRegion:region animated:YES];
}
//需求:设定标注对象的自定义图片(看懂)
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
if ([annotation isKindOfClass:[MKUserLocation class]]) {
return nil;
}
static NSString *identifier = @"annotation";
MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if (!annotationView) {
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
annotationView.canShowCallout = YES;
//设置自定义图片40x60
// annotationView.image = [UIImage imageNamed:@"icon_pin_floating"];
//V2:把annotation的类型强转成自定义的TRAnnotation类型
TRAnnotation *anno = (TRAnnotation *)annotation;
//V2:把标注对象的image值赋值给标注视图的image属性
annotationView.image = anno.image;
annotationView.leftCalloutAccessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"icon_classify_cafe"]];
} else {
annotationView.annotation = annotation;
}
return annotationView;
}
@end
MKMapView中Annotation的使用
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 成长记录-连载(三十六) ——我的第一篇五千字长文,说了什么,你一定想不到 并不是不想每天写公众号,而是之前思考怎...
- 今天用webpack的json-loader 压缩json 文件死活报错,百度之后发现是json文件里不能有注释,...