IOS開發之---地圖顯示

來源:互聯網
上載者:User

(1)首先拉一個mapView到你的工程

(2)在你的Controller.h中加入:

@interface EXViewController : UIViewController<MKMapViewDelegate,CLLocationManagerDelegate>{@private     MKMapView *_mapView;    CLLocationManager *_loactionManager;}@property(nonatomic, readwrite,retain) IBOutlet MKMapView *mapView;@property(nonatomic, readwrite, retain)CLLocationManager *locationManager;@end

記得

IBOutlet

一定要加的,而且要串連你的xib中的mapview到這個屬性定義,不然會有麻煩的呵呵。
那麼Controller.m中的實現的代碼:

在viewDidLoad函數中

- (void)viewDidLoad{    [super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.    self.mapView.delegate = self;    self.mapView.showsUserLocation = YES;    self.locationManager = [[[CLLocationManager alloc] init] autorelease];        [self.locationManager startUpdatingHeading];    [self.locationManager startUpdatingLocation];        //    }

並且實現函數:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation

這個函數用來實現你的地圖顯示,並且可以通過中的那個定位器號來定位自己的位置

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{    MKPinAnnotationView *annView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"snda.pin"];    if (annView == NULL) {        annView = [[[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:@"snda.pin"] autorelease];            }        annView.annotation = annotation;    annView.canShowCallout = YES;    annView.calloutOffset = CGPointMake(0, 0);    annView.image = [UIImage imageNamed:@"capture-exposure-plus.png"];    annView.rightCalloutAccessoryView   = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];        return annView;}

和函數

- (void)locationManager:(CLLocationManager *)managerdidUpdateToLocation:(CLLocation *)newLocation           fromLocation:(CLLocation *)oldLocation{    //不斷擷取你的精度和新的地址}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.