MapKit地图划线

只要用于获取用户位置都要取得用户授权

#import "ViewController.h"

#import <MapKit/MapKit.h>

@interface ViewController ()<MKMapViewDelegate>

@property(nonatomic,strong)UITextField*destination;

@property(nonatomic,strong)MKMapView*mapView;

@property(nonatomic,strong)CLLocationManager *mgr;

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.mgr=[[CLLocationManager alloc]init];

[self.mgr requestAlwaysAuthorization];

MKMapView *map=[[MKMapView alloc]init];

map.frame=self.view.bounds;

self.mapView=map;

[self.view addSubview:map];

self.mapView.delegate=self;

UITextField *field=[[UITextField alloc]init];

field.frame=CGRectMake(10, 20, 60, 30);

self.destination=field;

field.text=@"西安";

[self.view addSubview:field];

[self drawLine];

}

//划线

-(void)drawLine

{

[self.view endEditing:YES];

CLGeocoder *geo=[[CLGeocoder alloc]init];

[geo geocodeAddressString:self.destination.text completionHandler:^(NSArray *placemarks, NSError *error) {

if (placemarks.count==0||error) {

return ;

}

//获取目的地item 和当前的位置

CLPlacemark *pm=[placemarks firstObject];

MKPlacemark *mkp=[[MKPlacemark alloc]initWithPlacemark:pm];

MKMapItem *destinationItem=[[MKMapItem alloc]initWithPlacemark:mkp];

MKMapItem *userItem=[MKMapItem mapItemForCurrentLocation];

//1创建路线请求

MKDirectionsRequest*request=[[MKDirectionsRequest alloc]init];

//设置起点终点

request.source=userItem;

request.destination=destinationItem;

//创建路线管理器

MKDirections *direction=[[MKDirections alloc]initWithRequest:request];

//划线

[direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse *response, NSError *error) {

for (MKRoute*route in response.routes) {

//拿到线

MKPolyline *line=route.polyline;

//添加到地图

[self.mapView addOverlay:line];

}

}];

}];

}

-(MKOverlayRenderer*)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay

{

//创建渲染器

MKPolylineRenderer *render=[[MKPolylineRenderer alloc]initWithOverlay:overlay];

//设置线段的颜色

render.strokeColor=[UIColor redColor];

//设置线宽

render.lineWidth=5;

return render;

}

@end

时间: 2024-10-14 20:42:08

MapKit地图划线的相关文章

ios MapKit地图

地图框架:#import <MapKit/MapKit.h> 基本属性和方法: 属性: 地图类视图:MKMapView 地图类型:MKMapType mapType 地图旋转:rotateEnabled 用户追踪:MKUserTrackingMode  userTrackingMode 地图区域:MKCoordinateRegion  region 地图代理方法:MKMapViewDelegate 用户位置类:MKUserLocation 大头针类:MKAnnotation 请求用户授权:re

gemotry空间数据解析 地图划线

1.ts代码 /** * @version:1.0.0 * @author: zb * @创建时间: 2017-05-25 18:22:35 */ import { Component, OnInit, OnDestroy } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Http, Response, URLSearchParams, RequestOptionsArgs, He

IOS原生地图与高德地图

原生地图 1.什么是LBS LBS: 基于位置的服务   Location Based Service 实际应用:大众点评,陌陌,微信,美团等需要用到地图或定位的App 2.定位方式 1.GPS定位      2.基站定位      3.WIFI定位 3.框架 MapKit:地图框架,显示地图 CoreLocation:定位框架,没有地图时也可以使用定位. 4.如何使用原生地图<MapKit> 和定位<CoreLocation> MapKit: 1) 初始化MapView _map

IOS百度地图使用基础指南+原生分享&友盟分享

1.地图 1.获取用户的经纬度(CLLocationManager) 创建属性:CLLocationManager *mgr; 遵守协议:<CLLocationManagerDelegate> a>创建定位管理器 self.mgr = [[CLLocationManager alloc] init]; b>设置代理 self.mgr.delegate = self; c>开始定位 [self.mgr startUpdatingLocation]; 代理方法: -(void)l

ios开发系统地图知识

现在很多社交.电商.团购应用都引入了地图和定位功能,地图功能不再是地图应用和导航应用所特有的.目前地图和定位功能已经大量引入到应用开发中.今天就和大家一起看一下iOS如何进行地图开发. 一.Core Location定位使用 在iOS中通过Core Location框架进行定位操作.Core Location自身可以单独使用,和地图开发框架MapKit完全是独立的,但是往往地图开发要配合定位框架使用.在Core Location中主要包含了定位.地理编码(包括反编码)功能. 定位是一个很常用的功

iOS框架介绍

iOS框架介绍 Cocoa Touch GameKit  实现对游戏中心的支持,让用户能够在线共享他们的游戏相关的信息 iOS设备之间蓝牙数据传输   从iOS7开始过期   局域网游戏  http://www.cnblogs.com/KidReborn/archive/2011/10/17/2215641.html iAd     用来在应用中提供广告条 广告条与用户UI视图进行合并,与苹果的iAd服务一起工作,自动处理.加载和呈现富媒体广告以及应答在那些广告条上的点击等所有相关的工作.htt

iOS完整学习步骤

一  C语言 1.1基本数据类型和基本运算 1.2 函数 数组 字符串 指针 1.3 预处理指令 1.4结构体 枚举 1.5 文件操作 内存管理 二 Objective - C 2.1 面向对象 2.2 内存管理 2.3 category protocol  Block 2.4 Copy KVC KVO 2.5 Foundicition框架 三 iOS基础 3.1 UIKit框架 3.1.1基础视图 uiButton  UIlabel  UIimageView  uitextFeild  UIS

iOS 地图源及目的地定位、划线和系统导航的使用

最近在做一些关于地图的使用,才发现以前了解的东西很浅,很多细节上的东西没有弄清楚,在这里我想记录一下.好记性不如烂笔头,何况我这烂记性,就更得需要一个好笔头了.废话就不多说,下面就是我在使用系统地图的思路和代码.新手上路,不另指教! Step1 导入 Mapkit.framework 框架 Step2 引入头文件 #import <MapKit/MapKit.h> //地图框架 #import <CoreLocation/CoreLocation.h> //定位和编码框架 如果只是

iOS:地图:MapKit和CoreLocation

地图:MapKit和CoreLocation 简介: 现在很多的社交软件都引入了地图和定位功能,要想实现这2大功能,那就不得不学习其中的2个框架:MaKit和CoreLocation CoreLocation框架可以使用硬件设备来进行定位服务 MapKit框架能够使应用程序做一些地图展示与交互的相关功能 几乎所有的iOS设备都支持位置服务,不过在使用位置服务之前,最好检查一下可用性 手机定位的三种方式:手机基站.WIFI.GPS 添加框架: #import <MapKit/MapKit.h>