今回はこの初期表示を現在地に変える。 MKCoordinateRegion MKMapView で任意の場所を表示する場合、MKCoordinateRegionを使う。この MKCoordinateRegionはCの構造体で中心位置を表す CLLocationCoordinate2Dの値と、表示領域を示す MKCoordinateSpanの値を持つ。 typedef struct { CLLocationCoordinate2D center; MKCoordinateSpan span; } MKCoordinateRegion;中心位置は MKMapView を表示した時に中心にくる緯度経度を表す。MKCoordinateSpan は表示領域を表すために緯度経度方向の幅を表す値を持っている。 typedef struct { CLLocationDegrees latitudeDelt