Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate new Google map app with ios app

Google Map is now available in Appstore for IOS 6. I have a application which utilises MAPKIT and WebView to show Driving direction using Google webservices. For showing Route in Native Apple MAP app, i use codes similar to this..

MKMapItem *mapItem = [[MKMapItem alloc]initWithPlacemark:place];
NSDictionary *options = @{
MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeDriving
};
[mapItem openInMapsWithLaunchOptions:options];

I want to show Route to the user in the New Google MaP App installed on user device, embeed its UI within a View in my app.

Do guide me.

like image 852
ibiren Avatar asked Dec 14 '12 13:12

ibiren


1 Answers

Goole have released latest API for IOS 6.0 and up.

For that follow the step below

  1. You have to registered your app and get the keys from Map IOS access.
  2. Refer the following link for further detail New way to add google maps in iOS 6 app
like image 145
Hiren Avatar answered Nov 15 '22 12:11

Hiren