iOS Call system navigation

Source: Internet
Author: User

#import "ViewController.h"

#import <MapKit/MapKit.h>

@interface viewcontroller ()

@property(nonatomic,weak)Uitextfield*destination;

@end

@implementation Viewcontroller

-(void) viewdidload {

[Super viewdidload];

Uitextfield *field=[[uitextfield alloc]init];

field. frame=CGRectMake(Ten, ten, + );

[Field Becomefirstresponder];

[self. View addsubview: field];

self. Destination=field;

UIButton*btn= [UIButton buttonwithtype:uibuttontypecontactadd];

Btn. frame=CGRectMake (+, ten, + );

[Btn addTarget:self action:@selector(btnclick) forcontrolevents: UIControlEventTouchUpInside];

[self. View addsubview: btn];

}

-(void) Btnclick

{

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

[Geo geocodeaddressstring:self. Destination. Text Completionhandler: ^ (nsarray *placemarks, nserror *error) {

// geo-coded to get a landmark

clplacemark *pm=[placemarks firstobject];

// Create mkplacemark

mkplacemark *mkp=[[mkplacemark alloc]initwithplacemark:p m];

// Create destination Object

mkmapitem *destination=[[mkmapitem alloc]initwithplacemark: MKP];

// Get the user's current item

mkmapitem *current=[mkmapitem mapitemforcurrentlocation];

//2. turn on navigation // set Map Travel mode, set map type , set whether traffic conditions are displayed

nsdictionary *operation=@{

mklaunchoptionsdirectionsmodekey:mklaunchoptionsdirectionsmodedriving,

mklaunchoptionsmaptypekey:@0,

mklaunchoptionsshowstraffickey:@NO};

[mkmapitem openmapswithitems:@[current,destination] launchoptions : operation];

}];

}

@end

iOS Call system navigation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.