iOS学习之Map,定位,标记位置的使用
iOS上使用地图比Android要方便,只需要新建一个MKMapView,addSubView即可。这次要实现的效果如下: 有标注(大头针),定位,地图。 1、添加地图 1.1 新一个Single View app ,选择默认项,创建后,在ViewController.h [cpp] view plain copy #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> #import <CoreLocation/CoreLocation.h> @interface ViewController : UIViewController <MKMapViewDelegate, CLLocationManagerDelegate> { MKMapView *map; CLLocationManager *locationManager; } @end 1.2在ViewController.m中添加 [cpp] view plain copy - ( void )viewDidLoad { map = [[MKMapView alloc] initWithFrame:[self.view bounds]]; map.showsUserLocation = YES; map.mapType = MKMapTypeSatellite; [self