使用地图钉,首先我们需要为地图钉创建一个附注类(Annotation),代码如下:
@interface MyAnnotation: NSObject<MKAnnotation> // 实现MKAnnotation的方法,该方法在地图钉被拖拽时被调用,也可主动调用,用来更改地图钉的位置。 -(void) setCoordinate:(CLLocationCoordinate2D)newCoordinate;
Annotation不仅记录了地图钉的位置,还包括地图钉的名称(property title)以及副名称(property subtitle)。
@implementation MyAnnotation // 地图钉位置 @synthesize coordinate; // 实现获取title值的函数 -(NSString*) title { return "我是地图钉"; } // 实现获取subtitle值的函数 -(NSString*) subtitle { return "我是副名称"; }
这样,在地图中,当我们点击选取地图钉时,显示如图:
接下来,我们要添加地图钉,在页面的ViewController的viewDidLoad函数中我们添加下面的代码
-(void) viewDidLoad { // … MyAnnotation* annotation = [[MyAnnotation alloc] init]; // 设计地图钉位置(径纬度) [annotation setCoordinate:CLLocationCoordinate2DMake(32.632, 120.902)]; // 为地图添加大头钉,m_mapView是MKMapView的控件变量 [m_mapView addAnnotation:m_annotation]; }
到目前为止,我们都在处理地图的附注对象MyAnnotation,这个对象只是记录了地点的位置,名称,并不是我们想要的大头钉。接下来,大头钉要出场了。
首先,我们需要让ViewController实现MKMapViewDelegate协议(protocol),然后实现如下的函数,该函数会在上面的代码中添加地图钉后被调用。
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation { static NSString* annotationID = @"MyLocation"; if (![annotation isKindOfClass:[MyAnotation class]]) { return nil; } MKPinAnnotationView* pinView = (MKPinAnnotationView*) [mapView dequeueReusableAnnotationViewWithIdentifier:annotationID]; if (pinView == nil) { // 创建地图钉,MKPinAnnotationView对象 pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationID] autorelease]; pinView.animatesDrop = YES; // 地图钉出现时使用落下动画效果 pinView.canShowCallout = YES; // 地图钉选中后显示名称信息 pinView.draggable = YES; // 地图钉可被拖动 } else { // 地图钉已经创建过 pinView.annotation = annotation; } return pinView; }
好了,到这里,我们已经成功的为地图添加了地图钉,我们可以通过m_annotation.coordinate获取当前地图钉的径纬度。
之后,我们可以获取地理名称(街道,商铺),与当前位置间的路线,等等,这些内容以后再做介绍。