I am working a simple iOS app into which I am integrating Google Maps. but not getting any result . i have used this steps
step 1:i have downloade
As we have already said in the comments, you are using the wrong library - Google Maps SDK for Work iOS
(business) but you are trying to generate a Key for Google Maps SDK for iOS
(you are using: #import <GoogleMapsM4B/GoogleMaps.h>
instead #import <GoogleMaps/GoogleMaps.h>
For the GoogleMaps framework you need to install cocoa pods and in then type the following in terminal pod try GoogleMaps
This will install the pod and and download the googlemaps framework. It will
open a sample project on completion. You can find the framework and map bundle in the project. Using this framework my issue was resolved. Below is the complete path of the framework on my machine:
/private/var/folders/9b/w5tw8dwx3vsddqw1g0r1rksr0000gn/T/CocoaPods/Try
Hope this helps :)