iOS开发中地图开发的简单应用
iOS上使用地图比Android要方便,只需要新建一个MKMapView,addSubView即可。这次要实现的效果如下:
有标注(大头针),定位,地图。
1、添加地图
1.1 新一个Single View app ,选择默认项,创建后,在ViewController.h
- #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中添加
- - (void)viewDidLoad
- {
- map = [[MKMapView alloc] initWithFrame:[self.view bounds]];
- map.showsUserLocation = YES;
- map.mapType = MKMapTypeSatellite;
- [self.view addSubview:map];
- [super viewDidLoad];
- // Do any additional setup after loading the view, typically from a nib.
- }
运行:
OMG,看到的是世界地图。怎么定位到指定的位置呢?比如定位回来伟大的祖国首都?
这里map.mapType =MKMapTypeSatellite;我用到是卫星地图,可以使用标准的地图,
map.mapType =MKMapTypeStandard;
注意,如果此时你编译有错误,请拉到博客最后查看 :5、 遇到的问题
2、定位到指定经纬度
- CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
- float zoomLevel = 0.02;
- MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
- [map setRegion:[map regionThatFits:region] animated:YES];
这样,就我们就定位的了故宫了。
3、添加标注大头针
3.1 新建一个标注类:CustomAnnotation
按Command+N,继承NSObject。在CustomAnnotation.h 和CustomAnnotation.m文件添加如下代码:
- #import <Foundation/Foundation.h>
- #import <MapKit/MapKit.h>
- @interface CustomAnnotation : NSObject
- <MKAnnotation>
- {
- CLLocationCoordinate2D coordinate;
- NSString *title;
- NSString *subtitle;
- }
- -(id) initWithCoordinate:(CLLocationCoordinate2D) coords;
- @property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
- @property (nonatomic, retain) NSString *title;
- @property (nonatomic, retain) NSString *subtitle;
- @end
- #import "CustomAnnotation.h"
- @implementation CustomAnnotation
- @synthesize coordinate, title, subtitle;
- -(id) initWithCoordinate:(CLLocationCoordinate2D) coords
- {
- if (self = [super init]) {
- coordinate = coords;
- }
- return self;
- }
- @end
3.1 使用大头针,
新建个方法添加大头针的
- -(void)createAnnotationWithCoords:(CLLocationCoordinate2D) coords {
- CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithCoordinate:
- coords];
- annotation.title = @"标题";
- annotation.subtitle = @"子标题";
- [map addAnnotation:annotation];
- }
调用
- CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
- float zoomLevel = 0.02;
- MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
- [map setRegion:[map regionThatFits:region] animated:YES];
- [self createAnnotationWithCoords:coords];
这样我们就把大头针定位在故宫了
4、定位到当前位置并获取当前经纬度
前面我们已经添加了locationManager,现在在DidViewLoad里直接调用
- locationManager = [[CLLocationManager alloc] init];
- locationManager.delegate = self;
- [locationManager startUpdatingLocation];
实现协议方法收到定位成功后的经纬度
- - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
- [locationManager stopUpdatingLocation];
- NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
- NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
- NSLog(@"Lat: %@ Lng: %@", strLat, strLng);
- }
- - (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
- NSLog(@"locError:%@", error);
- }
运行,允许获取当前位置,打印log
- 2012-06-28 23:58:32.237 MapDemo[8202:11603] Lat: 39.9011 Lng: 116.3000
如果不允许:打印出错误日志
- 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.)"
定位后,移动到当前位置:
- - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
- [locationManager stopUpdatingLocation];
- NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
- NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
- NSLog(@"Lat: %@ Lng: %@", strLat, strLng);
- CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(newLocation.coordinate.latitude,newLocation.coordinate.longitude);
- float zoomLevel = 0.02;
- MKCoordinateRegion region = MKCoordinateRegionMake(coords,MKCoordinateSpanMake(zoomLevel, zoomLevel));
- [map setRegion:[map regionThatFits:region] animated:YES];
- }
定位到了当前位置。
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,添加方法如下:
选择项目,TARGETS ,点加号,添加两个framework
就好了。
如何发送IOS模拟器经纬度?
5.0以上的模拟器才能用这个功能,打开模拟:
这样就能发送模拟的当前位置了。
iOS开发中地图开发的简单应用的更多相关文章
- spring注解开发中常用注解以及简单配置
一.spring注解开发中常用注解以及简单配置 1.为什么要用注解开发:spring的核心是Ioc容器和Aop,对于传统的Ioc编程来说我们需要在spring的配置文件中邪大量的bean来向sprin ...
- cocos2dx之lua项目开发中MVC框架的简单应用
**************************************************************************** 时间:2015-03-31 作者:Sharin ...
- iOS开发中地图与定位
不管是QQ还是微信的移动client都少不了定位功能,之前在微信demo中没有加入定位功能,今天就写个定位的小demo来了解一下定位和地图的东西. 地图和定位看上去是挺高大上一东西.其有使用方法比Ta ...
- iOS开发系列--网络开发
概览 大部分应用程序都或多或少会牵扯到网络开发,例如说新浪微博.微信等,这些应用本身可能采用iOS开发,但是所有的数据支撑都是基于后台网络服务器的.如今,网络编程越来越普遍,孤立的应用通常是没有生命力 ...
- GIS开发离线地图应用-初识gis
http://www.cnblogs.com/kevin-zlg/p/4611671.html 最新公司需要做一个基于gis地图的应用系统,由于之前公司项目中的电子地图模块都是我开发的,所以这个新系统 ...
- android定位和地图开发实例
在android开发中地图和定位是很多软件不可或缺的内容,这些特色功能也给人们带来了很多方便. 首先介绍一下地图包中的主要类: MapController : 主要控制地图移动,伸缩,以某个GPS坐标 ...
- android开发中的5种存储数据方式
数据存储在开发中是使用最频繁的,根据不同的情况选择不同的存储数据方式对于提高开发效率很有帮助.下面笔者在主要介绍Android平台中实现数据存储的5种方式. 1.使用SharedPreferences ...
- Android 开发中 SQLite 数据库的使用
SQLite 介绍 SQLite 一个非常流行的嵌入式数据库,它支持 SQL 语言,并且只利用很少的内存就有很好的性能.此外它还是开源的,任何人都可以使用它.许多开源项目((Mozilla, PHP, ...
- 在Android 开发中使用 SQLite 数据库笔记
SQLite 介绍 SQLite 一个非常流行的嵌入式数据库,它支持 SQL 语言,并且只利用很少的内存就有很好的性能.此外它还是开源的,任何人都可以使用它.许多开源项目((Mozilla, PH ...
随机推荐
- BZOJ 1816: [Cqoi2010]扑克牌( 二分答案 )
二分答案.. 一开始二分的初始右边界太小了然后WA,最后一气之下把它改成了INF... -------------------------------------------------------- ...
- GPL协议
GPL-General Public License 它是自由软件许可(Free Software Licence),保证最终使用者能够自由的引用,学习,拷贝,甚至修改软件.在理解这之前需要了解什么是 ...
- Grunt.js 上手
Official Site gruntjs.org/docs/getting-started.html 或者看http://tgideas.qq.com/webplat/info/news_versi ...
- dubbo服务者配置说明
<?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright 1999-2011 Aliba ...
- Ibatis入门基本语法(转) good
Ibatis入门基本语法 一个项目中在写ibatis中的sql语句时,where user_id in (#user_id_list# ), 运行时总是不行,后来上网查了查,才知道这里不该用#,而应该 ...
- UBER司机奖励政策
高峰时段: 早高峰:早6:30-8:30点 晚高峰:晚4:00-7:00点 *周六日只有晚高峰 其他时间均为平峰时段 滴滴快车单单2.5倍,注册地址:http://www.udache.com/如何注 ...
- Android4.3模拟器界面中右侧菜单按钮无法使用问题解决办法
开发环境:笔记本电脑Windows2008+MyEclipse 10+Android4.3 问题描述:运行或者调试Android项目时,发现模拟器中右侧Menu按钮无法点击,截图如下: 查看在Andr ...
- Maven模块聚合与继承
聚合 假如有account-email和account-persist两个模块,我们想要一次构建这两个项目,这时须要用到聚合. 聚合模块 package值必须为pom 必须有元素modules mod ...
- Effective C++ 条款39
我从本条款中学到了下面内容: 1.private继承不同于另外两种继承,派生类对象不能隐式转换为基类对象. 例如以下代码: class Bird//鸟 { }; class ostrich:priva ...
- hadoop学习;安装jdk,workstation虚拟机v2v迁移;虚拟机之间和跨物理机之间ping网络通信;virtualbox的centos中关闭防火墙和检查服务启动
JDK 在Ubuntu下的安装 与 环境变量的配置 前期准备工作: 找到 JDK 和 配置TXT文件 并拷贝到桌面下 不是目录 而是文件拷贝到桌面下 以下的命令部分就直接复制粘贴就能够了 1.配 ...