码迷,mamicode.com
首页 > 其他好文 > 详细

MKMapView和MKMapViewDelegate

时间:2014-12-26 20:08:29      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:

 
  1. @interface MKMapView : UIView <NSCoding>  
  2.   
  3. @property (nonatomic, assign) id <MKMapViewDelegate> delegate;  
  4.   
  5. // Changing the map type or region can cause the map to start loading map content.  
  6. // The loading delegate methods will be called as map content is loaded.  
  7. /*enum { 
  8.    MKMapTypeStandard, 
  9.    MKMapTypeSatellite, 
  10.    MKMapTypeHybrid 
  11. };*/  
  12. @property (nonatomic) MKMapType mapType;  
  13.   
  14. // Region is the coordinate and span of the map.  
  15. // Region may be modified to fit the aspect ratio(屏幕高宽比) of the view using regionThatFits:.  
  16. @property (nonatomic) MKCoordinateRegion region;  
  17. - (void)setRegion:(MKCoordinateRegion)region animated:(BOOL)animated;  
  18.   
  19. // centerCoordinate allows the coordinate of the region to be changed without changing the zoom level.  
  20. /*typedef struct { 
  21.    CLLocationDegrees latitude;//纬度 
  22.    CLLocationDegrees longitude;//经度 
  23. } CLLocationCoordinate2D;*/  
  24. @property (nonatomic) CLLocationCoordinate2D centerCoordinate;  
  25. - (void)setCenterCoordinate:(CLLocationCoordinate2D)coordinate animated:(BOOL)animated;  
  26.   
  27. // Returns a region of the aspect ratio of the map view that contains the given region, with the same center point.  
  28. /*Adjusts the aspect ratio of the specified region to ensure that it fits in the map view’s frame. 
  29. You can use this method to normalize the region values before displaying them in the map. This method 
  30. returns a new region that both contains the specified region and fits neatly inside the map view’s frame.*/  
  31. - (MKCoordinateRegion)regionThatFits:(MKCoordinateRegion)region;  
  32.   
  33. // Access the visible region of the map in projected coordinates.  
  34. @property (nonatomic) MKMapRect visibleMapRect;  
  35. - (void)setVisibleMapRect:(MKMapRect)mapRect animated:(BOOL)animate;  
  36.   
  37. // Returns an MKMapRect modified to fit the aspect ratio of the map.  
  38. - (MKMapRect)mapRectThatFits:(MKMapRect)mapRect;  
  39.   
  40. // Edge padding is the minumum padding on each side around the specified MKMapRect.  
  41. - (void)setVisibleMapRect:(MKMapRect)mapRect edgePadding:(UIEdgeInsets)insets animated:(BOOL)animate;  
  42. - (MKMapRect)mapRectThatFits:(MKMapRect)mapRect edgePadding:(UIEdgeInsets)insets;  
  43.   
  44. - (CGPoint)convertCoordinate:(CLLocationCoordinate2D)coordinate toPointToView:(UIView *)view;  
  45. - (CLLocationCoordinate2D)convertPoint:(CGPoint)point toCoordinateFromView:(UIView *)view;  
  46. - (CGRect)convertRegion:(MKCoordinateRegion)region toRectToView:(UIView *)view;  
  47. - (MKCoordinateRegion)convertRect:(CGRect)rect toRegionFromView:(UIView *)view;  
  48.   
  49. // Disable user interaction from zooming or scrolling the map, or both.  
  50. @property(nonatomic, getter=isZoomEnabled) BOOL zoomEnabled;  
  51. @property(nonatomic, getter=isScrollEnabled) BOOL scrollEnabled;  
  52.   
  53. // Set to YES to add the user location annotation to the map and start updating its location  
  54. @property (nonatomic) BOOL showsUserLocation;  
  55.   
  56. // The annotation representing the user‘s location  
  57. @property (nonatomic, readonly) MKUserLocation *userLocation;  
  58.   
  59.   
  60. /*enum { 
  61.     MKUserTrackingModeNone = 0, // the user‘s location is not followed 
  62.     MKUserTrackingModeFollow, // the map follows the user‘s location 
  63.     MKUserTrackingModeFollowWithHeading, // the map follows the user‘s location and heading 
  64. };*/  
  65. @property (nonatomic) MKUserTrackingMode userTrackingMode NS_AVAILABLE(NA, 5_0);  
  66. - (void)setUserTrackingMode:(MKUserTrackingMode)mode animated:(BOOL)animated NS_AVAILABLE(NA, 5_0);  
  67.   
  68. // Returns YES if the user‘s location is displayed within the currently visible map region.  
  69. @property (nonatomic, readonly, getter=isUserLocationVisible) BOOL userLocationVisible;  
  70.   
  71. // Annotations are models used to annotate coordinates on the map.   
  72. // Implement mapView:viewForAnnotation: on MKMapViewDelegate to return the annotation view for each annotation.  
  73. - (void)addAnnotation:(id <MKAnnotation>)annotation;  
  74. - (void)addAnnotations:(NSArray *)annotations;  
  75.   
  76. - (void)removeAnnotation:(id <MKAnnotation>)annotation;  
  77. - (void)removeAnnotations:(NSArray *)annotations;  
  78.   
  79. @property (nonatomic, readonly) NSArray *annotations;  
  80. - (NSSet *)annotationsInMapRect:(MKMapRect)mapRect NS_AVAILABLE(NA, 4_2);  
  81.   
  82. // Currently displayed view for an annotation; returns nil if the view for the annotation isn‘t being displayed.  
  83. - (MKAnnotationView *)viewForAnnotation:(id <MKAnnotation>)annotation;  
  84.   
  85. // Used by the delegate to acquire an already allocated annotation view, in lieu of allocating a new one.  
  86. - (MKAnnotationView *)dequeueReusableAnnotationViewWithIdentifier:(NSString *)identifier;  
  87.   
  88. // Select or deselect a given annotation.  Asks the delegate for the corresponding annotation view if necessary.  
  89. - (void)selectAnnotation:(id <MKAnnotation>)annotation animated:(BOOL)animated;  
  90. - (void)deselectAnnotation:(id <MKAnnotation>)annotation animated:(BOOL)animated;  
  91. @property (nonatomic, copy) NSArray *selectedAnnotations;  
  92.   
  93. // annotationVisibleRect is the visible rect where the annotations views are currently displayed.  
  94. // The delegate can use annotationVisibleRect when animating the adding of the annotations views in mapView:didAddAnnotationViews:  
  95. @property (nonatomic, readonly) CGRect annotationVisibleRect;  
  96.   
  97. @end  

 

 

  1. @protocol MKMapViewDelegate <NSObject>  
  2. @optional  
  3.   
  4. - (void)mapView:(MKMapView *)mapView regionWillChangeAnimated:(BOOL)animated;  
  5. - (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated;  
  6.   
  7. - (void)mapViewWillStartLoadingMap:(MKMapView *)mapView;  
  8. - (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView;  
  9. - (void)mapViewDidFailLoadingMap:(MKMapView *)mapView withError:(NSError *)error;  
  10.   
  11. // mapView:viewForAnnotation: provides the view for each annotation.  
  12. // This method may be called for all or some of the added annotations.  
  13. // For MapKit provided annotations (eg. MKUserLocation) return nil to use the MapKit provided annotation view.  
  14. - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation;  
  15.   
  16. // mapView:didAddAnnotationViews: is called after the annotation views have been added and positioned in the map.  
  17. // The delegate can implement this method to animate the adding of the annotations views.  
  18. // Use the current positions of the annotation views as the destinations of the animation.  
  19. - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views;  
  20.   
  21. // mapView:annotationView:calloutAccessoryControlTapped: is called when the user   
  22. // taps on left & right callout accessory UIControls.  
  23. - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control;  
  24.   
  25. - (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view NS_AVAILABLE(NA, 4_0);  
  26. - (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view NS_AVAILABLE(NA, 4_0);  
  27.   
  28. //Tells the delegate that the map view will start tracking the user’s position.  
  29. //This method is called when the value of the showsUserLocation property changes to YES.  
  30. - (void)mapViewWillStartLocatingUser:(MKMapView *)mapView NS_AVAILABLE(NA, 4_0);  
  31.   
  32. //Tells the delegate that the map view stopped tracking the user’s location.  
  33. //This method is called when the value of the showsUserLocation property changes to NO.  
  34. - (void)mapViewDidStopLocatingUser:(MKMapView *)mapView NS_AVAILABLE(NA, 4_0);  
  35.   
  36. //Tells the delegate that the location of the user was updated.  
  37. /*1. a new location update is received by the map view. 
  38.   2. This method is also called if the map view’s user tracking mode  
  39.      is set to MKUserTrackingModeFollowWithHeading and the heading changes.*/  
  40. - (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation NS_AVAILABLE(NA, 4_0);  
  41.   
  42. - (void)mapView:(MKMapView *)mapView didFailToLocateUserWithError:(NSError *)error NS_AVAILABLE(NA, 4_0);  
  43.   
  44. - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view didChangeDragState:(MKAnnotationViewDragState)newState   
  45.    fromOldState:(MKAnnotationViewDragState)oldState NS_AVAILABLE(NA, 4_0);  
  46.   
  47. - (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay NS_AVAILABLE(NA, 4_0);  
  48.   
  49. // Called after the provided overlay views have been added and positioned in the map.  
  50. - (void)mapView:(MKMapView *)mapView didAddOverlayViews:(NSArray *)overlayViews NS_AVAILABLE(NA, 4_0);  
  51.   
  52. - (void)mapView:(MKMapView *)mapView didChangeUserTrackingMode:(MKUserTrackingMode)mode animated:(BOOL)animated NS_AVAILABLE(NA, 5_0);  
  53.   
  54. @end  

 

1. 概述

 

  1. 插入MapView,设置Delegate(一般为Controller),Annotations记录兴趣位置点(AnnotationView用来显示兴趣位置点),  
  2. annotation是可选的,选中的annotation会显示callout,用来显示信息。  

 

2. 设置地图显示类型:

 

  1. mapView.mapType = MKMapTypeStandard;  
  2. mapView.mapType = MKMapTypeSatellite;  
  3. mapView.mapType = MKMapTypeHybrid;   

 

3. 显示用户位置

 

  1. 设置为可以显示用户位置:  
  2. mapView.showsUserLocation = YES;   
  3. 判断用户当前位置是否可见(只读属性):  
  4. userLocationVisible   
  5. 得到用户位置坐标:当userLocationVisible为YES时  
  6. CLLocationCoordinate2D coords = mapView.userLocation.location.coordinate;   

 

4.坐标范围

  1. MKCoordinateRegion用来设置坐标显示范围。包括两部分:  
  2.   
  3. a. Center(CLLocationCoordinate2D struct,包括latitude和longitude),坐标中心  
  4. b. Span(MKCoordinateSpan struct,包括latitudeDelta和longitudeDelta),缩放级别  
  5.   
  6. //创建一个以center为中心,上下各1000米,左右各1000米得区域,但其是一个矩形,不符合MapView的横纵比例  
  7. MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(center,2000, 2000);  
  8.   
  9. //以上代码创建出来一个符合MapView横纵比例的区域  
  10. MKCoordinateRegion adjustedRegion = [mapView regionThatFits:viewRegion];   
  11.   
  12. //以上代码为:最终显示该区域  
  13. [mapView setRegion:adjustedRegion animated:YES];   

 

5. delegate

 

  1. 使用MapView须符合MKMapViewDelegate协议  
  2. 5.1、地图加载Delegate  
  3.   
  4. 当需要从Google服务器取得新地图时  
  5. mapViewWillStartLoadingMap:   
  6. 当成功地取得地图后  
  7. mapViewDidFinishLoadingMap:   
  8. 当取得地图失败后(建议至少要实现此方法)  
  9. mapViewDidFailLoadingMap:withError:  
  10.   
  11. 5.2、范围变化Delegate  
  12.   
  13. 当手势开始(拖拽,放大,缩小,双击)  
  14. mapView:regionWillChangeAnimated:   
  15. 当手势结束(拖拽,放大,缩小,双击)  
  16. mapView:regionDidChangeAnimated:   
  17. 判断坐标是否在MapView显示范围内:  
  18. CLLocationDegrees leftDegrees = mapView.region.center.longitude –(mapView.region.span.longitudeDelta / 2.0);  
  19. CLLocationDegrees rightDegrees = mapView.region.center.longitude +(mapView.region.span.longitudeDelta / 2.0);  
  20. CLLocationDegrees bottomDegrees = mapView.region.center.latitude –(mapView.region.span.latitudeDelta / 2.0);  
  21. CLLocationDegrees topDegrees = self.region.center.latitude +(mapView.region.span.latitudeDelta / 2.0);  
  22.   
  23. if (leftDegrees > rightDegrees)   
  24. { // Int‘l Date Line in View  
  25.     leftDegrees = -180.0 - leftDegrees;  
  26.     if (coords.longitude > 0) // coords to West of Date Line  
  27.         coords.longitude = -180.0 - coords.longitude;  
  28. }  
  29.   
  30. if (leftDegrees <= coords.longitude   
  31.     && coords.longitude <= rightDegrees   
  32.     && bottomDegrees <= coords.latitude   
  33.     && coords.latitude <= topDegrees)   
  34. {  
  35.     // 坐标在范围内  
  36. }  

6.Annotation

 

 

  1. Annotation包含两部分:Annotation Object和Annotation View  
  2. Annotation Object必须符合协议MKAnnotation,包括两个方法:title和subtitle,分别用于显示注释的标题和子标题。还有coordinate属性,返回CLLocationCoordinate2D,表示Annotation的位置  
  3. 然后,需使用mapView:viewForAnnotation: 方法来返回MKAnnotationView或者MKAnnotationView的子类用来显示Annotation(注意:这里显示的不是选中Annotation后的弹出框)   
  4. 你可以子类化MKAnnotationView,然后再drawRect:方法里面进行自己的绘制动作(这个方法很蠢)  
  5. 你完全可以实例化一个MKAnnotationView,然后更改它的image属性,这样很简单。  

7.添加移除Annotation

 

 

  1. 添加一个Annotation  
  2. [mapView addAnnotation:annotation];   
  3. 添加一个Annotation数组  
  4. [mapView addAnnotations:[NSArray arrayWithObjects:annotation1, annotation2, nil]];   
  5. 移除一个Annotation  
  6. removeAnnotation:   
  7. 移除一个Annotation数组  
  8. removeAnnotations:   
  9. 移除所有Annotation  
  10. [mapView removeAnnotations:mapView.annotations];  


8. 选中Annotation

 

 

  1. 一次只能有一个Annotation被选中,选中后会出现CallOut(浮动框)  
  2. 简单的CallOut显示Title和SubTitle,但你也可以自定义一个UIView作为CallOut(与自定义的TableViewCell一样)  
  3. 可通过代码选中Annotation:  
  4. selectAnnotation:animated:   
  5. 或者取消选择:  
  6. deselectAnnotation:animated:  


9. 显示Annotation

 

 

  1. 通过mapView:viewForAnnotation: 方法显示Annotation,每在MapView中加入一个Annotation,就会调用此方法  
  2. 示例(与tableView:cellForRowAtIndexPath: 很相似)  
  3.   
  4. - (MKAnnotationView *) mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>) annotation   
  5. {  
  6.     static NSString *placemarkIdentifier = @"my annotation identifier";  
  7.     if ([annotation isKindOfClass:[MyAnnotation class]])   
  8.     {  
  9.         MKAnnotationView *annotationView = [theMapView dequeueReusableAnnotationViewWithIdentifier:placemarkIdentifier];  
  10.         if (annotationView == nil)   
  11.         {  
  12.             annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:placemarkIdentifier];  
  13.             annotationView.image = [UIImage imageNamed:@"blood_orange.png"];  
  14.         }  
  15.         else  
  16.             annotationView.annotation = annotation;  
  17.         return annotationView;  
  18.     }  
  19.     return nil;  
  20. }  


10. 取得真实地址

 

 

    1. 示例:  
    2.   
    3. 初始化MKReverseGeocoder  
    4. MKReverseGeocoder *geocoder = [[MKReverseGeocoder alloc] initWithCoordinate:coordinates];  
    5. geocoder.delegate = self;  
    6. [geocoder start];   
    7.   
    8. 如果无法处理坐标,则调用reverseGeocoder:didFailWithError: 方法  
    9. - (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error   
    10. {  
    11.     NSLog(@"Error resolving coordinates: %@", [error localizedDescription]);  
    12.     geocoder.delegate = nil;  
    13.     [geocoder autorelease];  
    14. }   
    15. 如果成功,则调用reverseGeocoder:didFindPlacemark: 并把信息存储在MKPlacemark 中  
    16. didFindPlacemark:(MKPlacemark *)placemark   
    17. {  
    18.     NSString *streetAddress = placemark.thoroughfare;  
    19.     NSString *city = placemark.locality;  
    20.     NSString *state = placemark.administrativeArea;  
    21.     NSString *zip = placemark.postalCode;  
    22.     // Do something with information  
    23.     geocoder.delegate = nil;  
    24.     [geocoder autorelease];  
    25. }  

MKMapView和MKMapViewDelegate

标签:

原文地址:http://www.cnblogs.com/zhaoguowen/p/4187403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!