今回はこの初期表示を現在地に変える。 MKCoordinateRegion MKMapView で任意の場所を表示する場合、MKCoordinateRegionを使う。この MKCoordinateRegionはCの構造体で中心位置を表す CLLocationCoordinate2Dの値と、表示領域を示す MKCoordinateSpanの値を持つ。 typedef struct { CLLocationCoordinate2D center; MKCoordinateSpan span; } MKCoordinateRegion;中心位置は MKMapView を表示した時に中心にくる緯度経度を表す。MKCoordinateSpan は表示領域を表すために緯度経度方向の幅を表す値を持っている。 typedef struct { CLLocationDegrees latitudeDelt
前回の続き: [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 }
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く