본문 바로가기

프로그래밍/아이폰 프로그래밍

MKMapView


1.
MapKit.framework
등록합니다.


2.

#import <UIKit/UIKit.h>

#import <MapKit/MapKit.h>


@interface ImgGPSViewController : UIViewController {


IBOutlet MKMapView *mapView;

}


@property (nonatomic, retain) MKMapView *mapView;


@end




3.

@synthesize mapView;


        // 위도, 경도

CLLocationCoordinate2D mapCenter;

mapCenter.latitude = doubleValue;

mapCenter.longitude = doubleValue; // 여기에 위도와 경로 값을 넣는다.

  // 지도의 기본 크기

MKCoordinateSpan mapSpan;

mapSpan.latitudeDelta = 0.005;

mapSpan.longitudeDelta = 0.005;

// 지도 초기화

MKCoordinateRegion mapRegion;

mapRegion.center = mapCenter;

mapRegion.span = mapSpan;

self.mapView.region = mapRegion;

self.mapView.mapType = MKMapTypeHybrid; // 위성 + 도로