iOS开发中地图开发的简单应用

iOS上使用地图比Android要方便,只需要新建一个MKMapView,addSubView即可。这次要实现的效果如下:

iOS开发中地图开发的简单应用

有标注(大头针),定位,地图。

1、添加地图

1.1 新一个Single View app ,选择默认项,创建后,在ViewController.h

  1. #import <UIKit/UIKit.h>
  2. #import <MapKit/MapKit.h>
  3. #import <CoreLocation/CoreLocation.h>
  4. @interface ViewController : UIViewController
  5. <MKMapViewDelegate, CLLocationManagerDelegate> {
  6. MKMapView *map;
  7. CLLocationManager *locationManager;
  8. }
  9. @end

1.2在ViewController.m中添加

  1. - (void)viewDidLoad
  2. {
  3. map = [[MKMapView alloc] initWithFrame:[self.view bounds]];
  4. map.showsUserLocation = YES;
  5. map.mapType = MKMapTypeSatellite;
  6. [self.view addSubview:map];
  7. [super viewDidLoad];
  8. // Do any additional setup after loading the view, typically from a nib.
  9. }

运行:

OMG,看到的是世界地图。怎么定位到指定的位置呢?比如定位回来伟大的祖国首都?

这里map.mapType =MKMapTypeSatellite;我用到是卫星地图,可以使用标准的地图,

map.mapType =MKMapTypeStandard;

iOS开发中地图开发的简单应用

注意,如果此时你编译有错误,请拉到博客最后查看 :5、 遇到的问题

2、定位到指定经纬度

  1. CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
  2. float zoomLevel = 0.02;
  3. MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
  4. [map setRegion:[map regionThatFits:region] animated:YES];

这样,就我们就定位的了故宫了。

iOS开发中地图开发的简单应用

3、添加标注大头针

3.1 新建一个标注类:CustomAnnotation

按Command+N,继承NSObject。在CustomAnnotation.h 和CustomAnnotation.m文件添加如下代码:

  1. #import <Foundation/Foundation.h>
  2. #import <MapKit/MapKit.h>
  3. @interface CustomAnnotation : NSObject
  4. <MKAnnotation>
  5. {
  6. CLLocationCoordinate2D coordinate;
  7. NSString *title;
  8. NSString *subtitle;
  9. }
  10. -(id) initWithCoordinate:(CLLocationCoordinate2D) coords;
  11. @property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
  12. @property (nonatomic, retain) NSString *title;
  13. @property (nonatomic, retain) NSString *subtitle;
  14. @end
  1. #import "CustomAnnotation.h"
  2. @implementation CustomAnnotation
  3. @synthesize coordinate, title, subtitle;
  4. -(id) initWithCoordinate:(CLLocationCoordinate2D) coords
  5. {
  6. if (self = [super init]) {
  7. coordinate = coords;
  8. }
  9. return self;
  10. }
  11. @end

3.1 使用大头针,

新建个方法添加大头针的

  1. -(void)createAnnotationWithCoords:(CLLocationCoordinate2D) coords {
  2. CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithCoordinate:
  3. coords];
  4. annotation.title = @"标题";
  5. annotation.subtitle = @"子标题";
  6. [map addAnnotation:annotation];
  7. }

调用

  1. CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
  2. float zoomLevel = 0.02;
  3. MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
  4. [map setRegion:[map regionThatFits:region] animated:YES];
  5. [self createAnnotationWithCoords:coords];

这样我们就把大头针定位在故宫了

iOS开发中地图开发的简单应用

4、定位到当前位置并获取当前经纬度

前面我们已经添加了locationManager,现在在DidViewLoad里直接调用

  1. locationManager = [[CLLocationManager alloc] init];
  2. locationManager.delegate = self;
  3. [locationManager startUpdatingLocation];

实现协议方法收到定位成功后的经纬度

  1. - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
  2. [locationManager stopUpdatingLocation];
  3. NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
  4. NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
  5. NSLog(@"Lat: %@  Lng: %@", strLat, strLng);
  6. }
  7. - (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
  8. NSLog(@"locError:%@", error);
  9. }

iOS开发中地图开发的简单应用

运行,允许获取当前位置,打印log

  1. 2012-06-28 23:58:32.237 MapDemo[8202:11603] Lat: 39.9011  Lng: 116.3000

如果不允许:打印出错误日志

  1. 2012-06-28 23:25:03.109 MapDemo[7531:11603] locError:Error Domain=kCLErrorDomain Code=1 "The operation couldn’t be completed. (kCLErrorDomain error 1.)"

定位后,移动到当前位置:

  1. - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
  2. [locationManager stopUpdatingLocation];
  3. NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
  4. NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
  5. NSLog(@"Lat: %@  Lng: %@", strLat, strLng);
  6. CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(newLocation.coordinate.latitude,newLocation.coordinate.longitude);
  7. float zoomLevel = 0.02;
  8. MKCoordinateRegion region = MKCoordinateRegionMake(coords,MKCoordinateSpanMake(zoomLevel, zoomLevel));
  9. [map setRegion:[map regionThatFits:region] animated:YES];
  10. }

iOS开发中地图开发的简单应用

定位到了当前位置。

5、会遇到的问题:

运行是发现了编译错误:

Undefined symbols for architecture i386:

"_CLLocationCoordinate2DMake", referenced from:

-[ViewController viewDidLoad] in ViewController.o

-[ViewController locationManager:didUpdateToLocation:fromLocation:] in ViewController.o

"_OBJC_CLASS_$_MKMapView", referenced from:

objc-class-ref in ViewController.o

"_OBJC_CLASS_$_CLLocationManager", referenced from:

objc-class-ref in ViewController.o

ld: symbol(s) not found for architecture i386

clang: error: linker command failed with exit code 1 (use -v to see invocation)

这是为什么呢?没有添加对应的FrameWork。我使用的是4.3.2版本的XCode,添加方法如下:

iOS开发中地图开发的简单应用

选择项目,TARGETS ,点加号,添加两个framework

iOS开发中地图开发的简单应用iOS开发中地图开发的简单应用

就好了。

如何发送IOS模拟器经纬度?

5.0以上的模拟器才能用这个功能,打开模拟:

iOS开发中地图开发的简单应用iOS开发中地图开发的简单应用

这样就能发送模拟的当前位置了。

上一篇:Android 开发第一项目——计算器的开发记录


下一篇:CentOS 6.6 下源码编译安装MySQL 5.7.5