前回の続き: [iPhone] Map Kitで遊ぼう:地図を出して現在位置にピンを立てる http://blog.s21g.com/articles/1596 参考: Drawing polyines or routes on a MKMapView (as an MKAnnotationView) – Part 2 http://spitzkoff.com/craig/?p=108 MKAnnotationを実装するクラスを作成 MyAnnotation.h 1 #import <Foundation/Foundation.h> 2 #import <MapKit/MapKit.h> 3 4 @interface MyAnnotation : NSObject <MKAnnotation> { 5 CLLocationCoordinate2D _coordinate; 6 }