Search code examples
iosgoogle-mapsios6mapkitgoogle-maps-sdk-ios

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.


Solution

  • 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