iOS

A Swift Tutorial for Google Maps SDK


Working with maps in iOS consists of an entire programming chapter, as there are tons of things that a developer can do with them. From just presenting a location on a map to drawing a journey’s route with intermediate positions, or even exploiting a map’s possibilities in a completely different way, dealing with all these undoubtably is a great experience that leads to amazing results.

Up to iOS 5.1 (including that version as well), iOS was using the Google Mobile Maps service to provide access to maps and all the related services. Since then however, things changed and Apple introduced the Map Kit, a brand new framework completely built in-house, which is used until today. By the time Apple stopped using Google’s map services, Google decided to create its own Maps SDK for all platforms, including iOS, and that way to compete the Map kit or any other map SDKs that other platforms use. Right now, Google consist of a strong player in this field, as many developers use that SDK. So writing for the Google Maps SDK for iOS is something that definitely worths to be done.

Google Maps API for iOS

At the writing time of this tutorial, the Google Maps SDK for iOS is in the 1.9.2 version. It contains many features, the most of what’s included in the web version of maps, but on the other hand there are missing features as well that are unable to work on a mobile platform. The remarkable point is that in this version, the SDK is quite large in size (MB), and surely that’s something you have to consider if you want to copy the framework’s source files in your project. However, the features it offers are pretty interesting and important so to be rejected without second thought.

In contrary to other tutorials of mine, this time my introduction isn’t going to be long enough. That’s mostly because we have a lot of things to do in the upcoming parts, and it’s totally pointless to start discussing about various features here, since we’re about to see them in details later. All I want to say is to be prepared to meet some really interesting stuff, and if you’ve never worked with Google Maps SDK in the past, you’ll definitely enjoy working with them. In the sections that follow I’ll cover the most common tasks that developers usually perform when dealing with maps. In short, here’s what we are going to see:

  • How to present the user’s current location on the map.
  • How to spot a custom address.
  • How to draw a route.
  • How to add intermediate locations (waypoints) to a route.
  • And more…

So, without losing any more time, let’s move forward to all the great stuff we are going to meet today!

Demo App Overview

Let me introduce you to the demo app of this tutorial, by telling first of all that we won’t create a new project from the beginning. Instead, you can get a starter project which will be our base, and then we’ll start adding new features to it. So, go ahead and download it, open it in Xcode, and be prepared.

The demo application is actually a single view application, which contains three subviews:

  1. A toolbar at the top side of the screen, where some bar button items can be found. These bar button items have already been connected to IBAction methods in the starter project, therefore we don’t have to deal with that. We’ll write just code when appropriate.
  2. A view (UIVIew) covering the most of the available screen area, where the map will appear.
  3. A label at the bottom where we’ll display the distance and duration of a route.

Now, the bar button items from left to right at the top toolbar are for:

  • Specifying a custom address.
  • Setting the start and end location of a route.
  • Changing the travel mode.
  • Changing the map type.

We’ll see about all of them in details as we move to the upcoming parts of the tutorial. For now, all you have to do is to take a quick look at the starter project, so you feel comfortable moving around in it. Right next, you can see a couple of screenshots as a sample of our goal in this tutorial:

t33_1_my_location

Important Note: If you’re going to download and test the final app, make sure to set your API key to the AppDelegate.swift file. See the next part for more information about that.

Obtaining an API Key

The first thing we need before we make use of the Google Maps SDK is to obtain an API key. In simple words, that means that we need to get from Google a special string which will enable us later to make calls to the Google API right from our app. That API key is fetched from the Google Developers Console, and as this title suggests, it’s a special “place” for developers. Obviously, you can do that if only you have a Google account, so if you still don’t have one, then just go and create it. On the other hand, if you already have a Google account, you’re good to proceed as described next.

In order to get an API key for use in the app, you can disregard the instructions presented here and follow the getting started guide by Google. However, during the writing of this tutorial, the Google Developers Console interface did not match to the guides given to the above link (obviously the interface has been updated but not the guidelines yet), so I’d advise you to go through the following steps to fetch your own API key.

So, let’s get started. Using your Google account, sign in to the Developers Console and then click to the API Project option given at the following screen:

t33_3_APIProject

Next, click to expand the APIs & auth menu, and then select the APIs option. By doing so, you’ll find all the available APIs provided by Google, but the one we’re interested in is the Google Maps SDK for iOS. Depending on the browser you’re using, you’ll see the APIs shown either as a list, so you have to scroll until you find the maps API, or as groups, so you just have to click to the proper one. The next two screenshots illustrate both of these options:

t33_5_select_API_group

By selecting the Google Maps SDK for iOS API, you’ll be navigated to a new page, where all you have to do is to enable the API:

t33_6_maps_api_on

Once you do that, click to the Credentials options, once again under the APIs & auth menu. In the new page, click to the Create new Key button which is located at the bottom-left side:

t33_7_create_new_key_button

By clicking to that button, a dialog window pops up asking for the type of the key you want to create. Obviously, you have to click to the iOS Key button in order to produce a valid key for our application.

t33_8_select_key_type

In the next dialog window you have to type or paste the bundle identifier (bundle ID) of the app. The bundle ID of the starter project is the com.appcoda.GMapsDemo value, so just copy it from here and paste it as shown next:

t33_9_set_bundle_id

The above step is necessary, so our app is authorized to use the Google Maps API. Note that if you’re planning to use the same API key in more applications, then you first have to add their bundle IDs in this dialog (which of course you can find later as well).

Click to the Create button and the desired API key will be generated. At the bottom-right side of the window that you return to, you’ll see an area similar to this one:

t33_10_maps_api_key

By clicking to the Edit allowed iOS applications you can add or remove app bundle IDs, as shown above. You can also re-generate the key, but that’s not necessary right now. All you have to do here is to select the API key and copy it, so you can paste it a bit later to the project.

Project Configuration

There is a drawback when using SDKs other than those provided by iOS, and that’s because some level of configuration is required to be done to the project, depending always on the SDK that’s about to be used. So, in this part we are going to perform some initial steps necessary for the Google Maps SDK to work, otherwise it will be impossible to use it. Note that some of the steps described next can also be found in the official documentation by Google. Some others however are not described there, and searching around is required to achieve them. Of course, all you need is here, so you don’t have to search anything by yourself.

So, first of all, you need to download the Google Maps SDK (the framework that must be added to the project). You can get it here; click to the Download the SDK button, and then to the version suggested in the page you’ll be landed to (currently 1.9.2). Once you get it, unzip the package and move on.

Continue by opening the starter project in Xcode, if you haven’t done so already. Then drag the GoogleMaps.framework from the Finder to the Project Navigator. When the Xcode asks you, make sure to select the Copy items if needed option, and of course, don’t forget to also check the GMapsDemo target as well:

t33_11_add_gmaps_framework

Next, go back to the Finder, and click to the GoogleMaps.framework once again. From the Resources directory, select the GoogleMaps.bundle and drag it to the Project Navigator in Xcode too. While adding that bundle to the project, make the same selections as above.

At this point, the next two should appear in your project too (the Google Maps SDK group is a custom one I created for better file organization):

t33_12_sdk_added_files

The Google Maps SDK needs several other frameworks to exist in the project in order to function properly. Before I give you the list of all the necessary frameworks and libraries that you have to add, make sure to select the project in the Project Navigator, then click to the Build Phases and expand the Link Binary With Libraries section. Use the plus (+) button to add one by one the following:

  • AVFoundation.framework
  • CoreData.framework
  • CoreLocation.framework
  • CoreText.framework
  • GLKit.framework
  • ImageIO.framework
  • libc++.dylib
  • libicucore.dylib
  • libz.dylib
  • OpenGLES.framework
  • QuartzCore.framework
  • SystemConfiguration.framework

Here’s what you should see at the end:

t33_13_framework_list

Next, click to the Build Settings tab, and search for the Other Linker Flags setting. Once you spot it, add the -ObjC value to it, as we are going to bridge the maps SDK written in Objective-C with the Swift project we currently have.

t33_14_other_linker_flags

Speaking of bridging, unfortunately there’s still not a real straight way to embed Objective-C code in Swift. And in our case, we need to do that, because we must import in Objective-C the header file of the Google maps library. Actually, what we want from Xcode is to create for us an Objective-C header (.h) file, and as there’s no a direct way to do that, we’ll manage it indirectly following the next steps:

  1. Hit the Command + N keys in the keyboard to add a new file in the project.
  2. In the file template selection, select the Objective-C File option. Proceed with the guide, name the file temp and create it.
  3. t33_15_objective_c_file
  4. By finishing the guide, Xcode will display the following message. Make sure to tap to the Yes button.
  5. t33_16_bridging_header
  6. Besides the temp.m, a new file named GMapsDemo-Bridging-Header.h will be also created. Select it to open in the editor, and add the following line to it:
  7. Delete the temp.m file, as we’re not going to need it.

Lastly, time to make use of the API key we generated to the previous section. Open the AppDelegate.swift file, and in the application(_:didFinishLaunchingWithOptions:) method add the next line:

Of course, you have to replace the “YOUR_API_KEY” string with the real API key you generated in the Google Developers Console. Note that having access to the GoogleMaps framework and its classes (just like in the above snippet) would be impossible without having performed the previous steps regarding the bridging and having imported the header file.

The initial preparation of the project is now over, and we can dive right into the code from now on. As I said to the beginning of this part, this kind of configuration can’t be avoided when using external SKDs, but thankfully in this case all the preliminary tasks were easy enough, even though they were more than a few.

Displaying a Map

Now that all the required initial preparation has been done in the project, let’s start doing some real programming work by adding a Google map to the app for first time. As you’ll see right next, that’s pretty easy to do, but let’s do everything in the proper order.

If you open the Main.storyboard file, you’ll notice that in the View Controller scene there’s a view (UIView) in the center of the canvas.

t33_17_view_controller_scene

This view is going to be our map view, but in order to use it for that purpose we must perform a couple of modifications to it. So, first of all select it, and then open the Utilities pane. Go to the Identity Inspector, and in the class field set the GMSMapView value as its class name. The GMSMapView is part of the Google Maps framework, and actually it’s a UIView subclass.

There’s one more modification needed to be done in that view, but this time we must go to the ViewController.swift file. At the top of the class you’ll find the following IBOutlet property declaration:

All we have to do here is to change the viewMap property’s class from UIView to GMSMapView as shown next:

Now, we can use the viewMap as our map view.

Adding a Google map in the app is really easy. Just go to the viewDidLoad method and add the following two lines:

The first task when setting up a map is to initialize a GMSCameraPosition object. Using this, we specify the initial location that will be displayed in the map. The above coordinates center the map in Paris, but you can find other coordinates to use instead (this is just a demo). Besides the coordinates, we also need to specify the initial zoom level of the map.

The above object is assigned to the camera property of the map view. With that, the actual map can be successfully rendered in the viewMap view.

For first time now you can test the app. So, go for it either in a real device or in the Simulator, and wait until the map appears on the view.

t33_18_map_first_run

Let’s extend a bit what we did so far before we move to the next part, and let’s create an action sheet so we can select another map type. The Maps SDK provides three types in iOS:

  1. Normal
  2. Terrain
  3. Hybrid

The normal mode is the default one and it’s shown in the above screenshot. The other two options change the map appearance according to the respective type, and it would be really great if we would be able to set them to our map.

The map view contains a property named mapType. There are three constants in the Google Maps SDK that represent each type, and the desired one must be set to that property. These constants are:

  1. kGMSTypeNormal
  2. kGMSTypeTerrain
  3. kGMSTypeHybrid

Now, let’s go to the changeMapType(_:) IBAction method, where we are going to add the necessary code to display the action sheet and set the proper map type to the map view. The following snippet contains all you need:

There’s nothing particularly difficult in the above implementation. As you see, in each action (except for the cancel action) we specify the proper map type to the map view.

Now run the app once again. This time you can change the map type simply by using the far right bar button item in the toolbar at the top.

t33_20_hybrid_type

My Location

Displaying a map on the screen is absolutely interesting, but it’s not much helpful if there is nothing to point to. So, starting from this part, we’ll begin adding new features that will make our map really useful.

One of the most common tasks one has to deal with when working with maps, is to point to the current location of the user. This is easy to do, but it involves the user’s consent so the current location to be retrieved. Since iOS 8, asking for the user’s permission is a two-step job: First, a new entry must be added to the .plist file of the project. This entry will have as a key the kind of the required permission, and as a value a description that will be presented to the user in an alert view when the app will run for first time. The second step is to programmatically request for permission, and that will trigger the appearance of the alert controller, if the user hasn’t been presented with it yet. We’ll see that in a while.

When working with Core Location services (and we’ll work here a bit), the app can monitor for location updates either at all time (even if the app is on the background), or just while it’s being used. The kind of permission I mentioned right above is just that; depending on the way we want the app to monitor for location changes we’ll provide the proper key in the .plist file, and a bit later we’ll request for the respective permissions in code. In our case there’s no need for the app to always monitor for location updates. That would be totally meaningless as no changes are going to take place to the map when the app doesn’t run, and also it would be a great waste of the device’s battery. We’ll ask permission to access the user’s location only when the app runs.

In the Project Navigator locate and open the Info.plist file. Then, go to the Editor > Add Item menu to add a new entry. As a key specify the NSLocationWhenInUseUsageDescription string, and as a value write any description you like. Alternatively, use this: “Allowing access to your location, you can spot your position on the map.” (without the quotes).

t33_21_plist_file

Back in the ViewController.swift file now, let’s declare two properties that we’ll need right next. At the top of the class, just add the next two lines, right after the IBOutlet property declarations:

The locationManager property will be used to ask for the user’s permission to keep track of his location, and then based on the authorization status to either display his current location or not. The didFindMyLocation flag will be used a bit later, so we know whether the user’s current position was spotted on the map or not, and eventually to avoid unnecessary location updates.

But, first things first. As you see in the snippet above, the locationManager object is initialized upon its declaration. However, that’s not enough. In the viewDidLoad method we must set the ViewController class as its delegate, and request for the user’s permission. Here we go:

Note that the kind of request asked at this point must match to the kind of request we added to the .plist file. By making a call to the requestWhenInUseAuthorization() method of the location manager object, either the user will be presented with an alert view asking for his permission to track his current location if the app runs for first time, or the system will return his preference that was specified at an earlier time. In any case we must check the authorization status of the app using a special delegate method of the CLLocationManagerDelegate protocol, but prior to that, let’s adopt it. Go to the class header line and add that protocol declaration:

Let’s see now that delegate method:

At this point we realize that the only case we are actually interested in is when the authorization status value matches to the one shown above. In that case, we only have to set the myLocationEnabled flag of the map view to true, and the Maps SDK will do the hard work of finding the current location of the user. However, it is our work to make the application capable of knowing when the map’s location has updated with the user’s location.

The current location of the user is described by a property of the map view object named myLocation. The good news regarding this property is that is a KVO-compliant (key-value observing compliant), meaning that we simply have to observe for changes on its value, and that way we’ll be able to know when the user’s location gets updated. If you want to know more about the KVO mechanism, you can take a look at this tutorial.

So, based on the above, our next move is to let our class observe for changes in the myLocation property of the viewMap object. Return in the viewDidLoad method once again, and add the following line:

What we really want to happen when the Google Maps SDK locates the user’s current location, it to center the map on that spot and display the well-known blue dot at that point. The truth here is that the blue dot will be automatically displayed, so no further coding is required from us for that task. So, let’s make the current location appear on the map once the user’s position has been spotted, and if we still haven’t done so:

As I already said, the didFindMyLocation flag will help the app to avoid unnecessary location updates. Further than that, we get the new location for the map from the change dictionary. This dictionary is passed as a parameter to the method by the system, and by using the NSKeyValueChangeNewKey key we can fetch the new value of the changed property we observe. Using this location, we configure a new GMSCameraPosition object and and we set it directly to the camera property of the map view. This will make it center to the new position. Another interesting task here is that by setting the myLocationButton property of the settings property of the map view to true, we manage to display on the bottom-right side of the screen a default button for returning back to the current location, in case the user pans the map. This button is provided by the Google Maps SDK. There’s a also a compass button that can be enabled in the exact same way, but we don’t need it here.

Now you can give another try to the app. If you’re going to test it in the Simulator, you must provide it with a fake location because your real location is not monitored there. To do that, simply edit the scheme of the project, and in the Options tab select a default location:

t33_22_edit_scheme
t33_23_default_location

Spotting a Custom Location

Further than finding the current user’s location, another quite common scenario when working with maps is to spot a custom location. Always this is done by providing to the map API some kind of address (for example street name, city, country, area), and no coordinate (longitude and latitude) values, as nobody could remember them. But, have you ever really wondered how it’s possible for a map service to locate the exact address you provide without knowing the coordinate?

The answer is that there’s a process named geocoding, and according to this an address is translated into longitude and latitude values before it gets spotted to a map. Even more, a map service (such as Google Maps) doesn’t really care about the address we provide since it “translates” that to a geo-coordinate. So, the actual interesting point here is how can we manage to give an address to the Google Maps SDK, how it will convert it to a geo-coordinate, and how it’s going to be represented on our map.

Thankfully, Google provides the Google Geocoding API, a web service that in short accepts requests containing real addresses and returns responses with longitude and latitude values (among other values of course). If you are really interested in working with Google maps, then you definitely need to give a good reading in the geocoding API documentation. Actually, I encourage you to visit that documentation and take a quick tour on the service details right now. It will help you to better understand what we’re about to do next.

The response data of the geocoding API is either in JSON or in XML format. In this sample we’ll make use of the JSON format as it takes just one line to covert it to Swift (or Objective-C) data representation (dictionary or array). The following sample is grabbed from the Google documentation directly, and is a great example of a JSON response:

If you look thoroughly, this response represents the found address in two ways: As address components (an array with dictionaries as its items), and as a formatted address, where the full address is given as a single string. Besides that, there are two more interesting points in the above example: The geometry dictionary that contains that longitude and latitude values, and the status that obviously describes the result of the request made to the geocoding web service.

From all the above we’ll use three things in this app: The formatted address, the geometry details, and the status. I advise you to take a look at the status codes in the Google documentation; it’s really out of this scope to discuss about it here. Before you proceed, make sure that you can “read” the JSON data representation properly. If you feel uncomfortable with JSON, then you might want to take a look here and here. What I would just like to mention is that when something begins with “some_key” is a dictionary, and when begins with a bracket ([) it’s an array.

Back to our app now, we are going to create a new class to handle the request to and the response from the geocoding API. I’m talking for a new class here for two reasons:

  1. The code will be much more reusable.
  2. Later on we’ll make use of another Google web service (API), and it would be great to have all this kind of tasks gathered in one place.

So, create a new class, and make sure that it’s a subclass of the NSObject. Name it MapTasks and when it’s been added to the project you’re good to continue.

Let’s begin our work in the MapTasks.swift file by declaring some properties that we’ll use right next:

The baseURLGeocode is the URL that we’ll use to do the request for the geocoding. Of course, we’ll add the address as a parameter to it, but as this is a dynamic value, it will be done programmatically. In the lookupAddressResults dictionary we’ll store the data of the first address that will be returned in the results. Note that it’s possible more than one result to be returned after having geocoded an address, but for simplicity here we’ll keep just the first one. Lastly, in the three remaining properties we’ll store the values that their names suggest.

At this point we must add an initializer function to the class, so we can create an object of it later in the ViewController class. As there’s no need for a custom init method, let’s stick to the default one:

Now, let’s create a new method as shown next:

The first parameter is the address we want to spot to the map. The second parameter is a completion handler that will be called once we have received and processed the response data. The app will display results to the map only after this completion handler has been called by this method. As you see, it gets two parameters: In the first one we’ll provide the status string from the response, and in the second one we’ll indicate whether the geocoding was successful or not (meaning whether we have data for the map on our hands or not).

Let’s go now step by step to the implementation of that method. Initially, we must compose the URL string properly, convert it to the proper format, and then using it to create a NSURL object. Note that we first make sure that a valid address has been given:

Next, we must make a request to the geocoding API and store the returned results to a NSData object. There’s an important detail here, and that is that we’ll do that (and all the upcoming processing) asynchronously, so the app be responsive during the data fetching period. Also, as you’ll see next, after we have the data taken back from the API, we convert it from the JSON format to a dictionary object:

The last line in the snippet is all it takes to convert data from JSON to Swift representation.

As you notice, we use a NSError object to “catch” any errors that might occur during the conversion process. So, our first care now is to check if after the conversion this value is nil or not. If it’s not, then we’ll call the completion handler and we’ll set the flag argument to false:

In case that everything went smoothly, then we’ll first get the status of the response. If it contains the “OK” value we’ll “extract” the first result and store it to the lookupAddressResults dictionary, and then we’ll fetch all the other values we are interested in (the formatted address, the longitude and the latitude). If the status has a value other than “OK”, then we’ll call the completion handler and we’ll pass the status value, but we’ll set the flag to false once again:

The above is actually the “heart” of the method. Notice that the key names used above were taken from the JSON data example I gave you previously and that you can find in the Google Geocoding API documentation too.

Lastly, there’s one more case we have to cove; whether a nil address has been given as an argument to the method:

This time we provide a custom message in the status parameter.

Here’s the whole method in one piece:

Time to use the above method, so let’s return to the ViewController.swift file. Initially, let’s declare and initialize an object of the MapTasks class:

Now, let’s navigate to the findAddress(_:) IBAction method. This one is called every time the left button in the toolbar is tapped. In it, we’ll create an alert controller with a textfield, asking from the user to type an address in. We’ll provide two action buttons, one for initiating the address searching and one to dismiss the controller. When the first button gets tapped, we’ll call the method we created previously and then we’ll handle the completion handler results. Let’s see all that in code:

In the closure body now, we have to handle the results. If the success flag is false then we’ll display the status on the console. Even more, if the status equals to “ZERO_RESULTS” value, we’ll display another alert controller telling the user that the address wasn’t found (see the status codes in the Google Documentation). On the other hand, if everything is okay, we’ll center the map to the new location:

The showAlertWithMessage(_:) is another custom method used only to display an alert controller with the given message. It clearly consists of a reusable piece of code:

We’re ready. Test the app once again, and this time type an address to point to the map. If you write it correctly the map will center to this location.

t33_24_search_address

Adding a Marker

Adding a marker on the map is a really easy task, as doing so it only takes two lines of code. However, there are various properties that can be configured so a marker can be customized according to your needs or preferences. In the Google Maps SDK a marker is an object of the GMSMarker class. When initializing such an object, you must specify the longitude and latitude expressed as a CLLocationCoordinate2D type. In the previous section we created such an object with the following line:

Once the marker object has been initialized and the maps SDK knows where to place it, it’s then necessary to specify the map object to which the marker will be added to.

Let’s see how all these are done in code, but first let’s declare a marker property so we hold a strong reference to it. Go to the beginning of the ViewController class and add the following:

Now let’s define the following method. We are going to call it every time a custom address is spotted to the map, so we point to it.

The required coordinate object will be provided to the method as an argument. Let’s initialize the marker:

Let’s go back to the findAddress(_:) IBAction method and let’s add one more line so the above gets called when a custom location is found and the map is centered to it:

Run the app once again, and type a custom address. Now, a marker will point right into the new location.

As I said in the beginning of this part, a marker has various properties that can be used so to achieve some level of customization. For example, you can specify the color of the marker, some text to be displayed when it’s tapped, or even change its opacity. Let’s extend the above method by configuring some of those properties:

By using the title property the formatted address from the mapTasks object will be displayed above the marker when it gets tapped. The appearAnimation specifies whether the marker will be displayed in an animated fashion, and the value we assign to it is the only option the maps SDK provides. Regarding the marker’s color, as you see it can’t be changed directly; instead we need to access its icon property and provide the desired color as an image, but how it’s handled next is something that the GMSMarker class does; we don’t really care about it. Finally, we also change the opacity of the marker. The above lines will result to a bit transparent blue marker that will be presented animated to the map.

When rotating a map or changing the camera position with gestures, a marker remains always still. However it’s possible to alter this behavior by indicating to the SDK that you want it to be flat, and therefore allow the marker to be moved in accordance to the performed gestures.

Besides that, it’s also possible to add some extra text to the placeholder that appears when tapping on the marker. That extra text must be assigned to the snippet property of the marker.

Here are the last two mentioned things in code:

You can see the effects of all the modified properties if you run the app once again.

Before we move to the next part, there’s one more detail I have to say about. As I mentioned earlier, the marker we set up in the above method will be added to the map every time a new custom address is looked up. However, this isn’t going to work properly unless we remove the marker (if already exists) first, and then add it again. So, all we have to do is to go to the beginning of the method and add the next condition:

The properties presented above are not the only ones existing in the Google Maps SDK. I encourage you to take a look in the official documentation as well. You’ll definitely find useful stuff to read.

t33_25_marker

Drawing a Route

Besides the Geocode API, Google provides other web services as well that can be used in combination to the Maps SDK. One of them is the Directions API, which can help us create a route on the map. A route is actually a line connecting two places, and besides the origin and the destination points it can also contain intermediate locations, also called waypoints.

The way we make requests to the Directions API is pretty much similar to the requests made to the Geocode API. That means that we have to provide the web service with some required parameter values, and then to process the returned data which, once again, can be either in JSON or in XML format. I think that now is the best time to take a look to the Directions API documentation, and especially to the sample responses section, where you can find a nice example of a JSON response.

Before we proceed to the implementation it’s important to understand some basic stuff regarding routes, and the data that is returned from the API back to us. In here I’ll just highlight some aspects, but you can always refer to the official documentation for more information. So first of all, a single response from the Directions API can give us more than one possible routes for going from point A to point B (in this sample app we’ll use just the first route returned, we’ll ignore all the rest). Each route is composed by legs, where a leg is just a part of the journey described in the Directions API response. A simple route without any waypoints (locations between origin and destination) has only one leg, but as new waypoints are added to the route, the legs are increased accordingly.

Now, each leg is composed by steps, where a step is a direction unit, meaning an instruction regarding the direction the route should follow. A step contains useful data about itself, like for example the distance that covers, the duration of the journey in this step, the start and end locations of it, and the points needed so it can be drawn on the map. There is more, but I intentionally mention just that, so you keep them on your mind as we move along.

Further than legs and steps, a route description contains other useful data as well. A piece of this data is the one marked as “overview_polyline” in the sample response presented in the Google documentation website, and it contains the points a map needs to know about how to draw the entire route (a polyline is the set of lines needed to create a path on the map). In this demo app we are going to use that, but I must warn you in advance that this route overview is not accurate; it’s an approximation to the real route. For relatively short distances containing a few legs, it seems to be working well, however there are cases that the drawn route based on the points of this overview polyline misses turns or roads. Actually, the more the legs and the steps are, the less accurate the overview polyline is. The solution to that problem is to make loops so to access and get the polyline points of each step for each leg, and then draw the route line by line based on those points. However, we won’t apply that solution here, as we’ll end up with an app quite complicated, and we must keep it simple so everything is easy to be understood. We’ll stick to the overview polyline so you see how it’s used, and then you’ll be able to do any changes and improvements in the code on your own.

Let’s do some coding now, and let’s go to the MapTasks.swift file. Initially, we have to declare the following properties to the class:

Let’s see the above properties what they’re for:

  • To the selectedRoute we’ll store the first route (among the total number of routes) that will be returned from the Directions API. It’s a dictionary, which contains other dictionaries and arrays.
  • To the overviewPolyline property we’ll hold the overview polyline dictionary, which contains just another dictionary with the points of the lines that should be drawn.
  • Both the originCoordinate and the destinationCoordinate are CLLocationCoordinate2D objects that represent the longitude and latitude of the origin and the destination locations respectively.
  • The originAddress and the destinationAddress are going to hold the origin and destination addresses as string values and as they’re contained in the APIs response.

Having all the above declared, we can go and define the following method:

Besides the origin and destination locations (expressed as addresses), the above method also accepts and array with the waypoints (the intermediate points in a route), and the travel mode of the journey that will be drawn on the map. With the travel mode, we’ll be able to define whether we want directions for driving, walking, or bicycling. At the end, we have the (already known) completion handler that we’ll call when we’ll have data to use on the map.

At the moment we won’t bother with the waypoints and the travel mode, we’ll just use the origin and destination addresses. As I already said previously, you’re going to see several similarities with the Geocode API, at least in the beginning. So, first of all we have to compose the request URL string using those two addresses and then convert it to a NSURL object:

Notice that in case the origin or the destination address is nil, we use the completion handler in the respective else case indicating that getting directions failed, and at the same time we pass a custom message.

The next step is to ask the Directions API for directions by using the URL we created right above. As we said, the returned data will be in JSON format, and our whole work will take place asynchronously. In the snippet that follows, at first we get the JSON data and then we convert it to a dictionary. Also, we cover the case where an error might have occurred:

The above has nothing new or difficult. The interesting part is the code that we’re adding in the else case right next:

Let’s go through that code for a while. First of all, we get the response status, and obviously we proceed if only it has the “OK” value. In that case, the first thing we do is to hold the first found route (if there are more will be ignored just for the sake of the tutorial’s simplicity) to the selectedRoute dictionary. Using this dictionary, we access directly the polyline overview, so we get the points needed to draw the route (even approximately). Then, in the legs array that is declared locally we store all the legs of the route, because we’ll need them for getting some data regarding the start and end locations. Notice how we access the coordinate for both the origin and the destination, and also how we get their names as they’re returned in the response. Note that for the start location we use the first leg of the route, while for the end location we use the last leg of the route (legs.count – 1).

Right before we call the completion handler, we make a call to a custom method that you see for first time here, the calculateTotalDistanceAndDuration(). We’ll see it in just a while, and as you assume it will help us to calculate the journey’s distance and travel duration.

At this point, let me give you the method we just implemented in one piece:

Now, right before we implement the new custom method to calculate the distance and duration, we need to declare at the top of the class the following properties:

Let’s implement the new method now. Unfortunately there’s not straight way to calculate the distance and the duration of the route; instead we must go through all legs and add them one by one. The distance is calculated in meters, and the duration in seconds. In the next implementation you’ll notice that after we’ve calculated the respective summaries, we convert the distance in Kilometers and the duration in Days, Hours, Minutes and Seconds. Here we go:

Let’s head back to the ViewController class, and for starters let’s declare the next properties:

The first two markers will indicate the origin and destination locations, and the routePolyline is the line that will represent the route.

In the createRoute(_:) IBAction method now, we’ll present an alert controller with two textfields. In the first one, the use will type in the origin location, and in the second the destination. By accepting to create the route, we’ll make a call to the Directions API and based on the results we’ll get back, we’ll design the route and we’ll add the markers.

As you notice, if the directions request is successful we call three new custom methods. By their names is easy to guess their purpose, therefore let’s implement them one by one.

In the configureMapAndMarkersForRoute() method we’ll perform three distinct tasks:

  1. We’ll center the map to the beginning of the route.
  2. We’ll add a marker to the origin point.
  3. We’ll add a marker to the destination point.

    func configureMapAndMarkersForRoute() {
    viewMap.camera = GMSCameraPosition.cameraWithTarget(mapTasks.originCoordinate, zoom: 9.0)

    }

Note that we set different colors to the markers. Further than that, there’s no something new here.

In the drawRoute() method we are going to draw the route lines on the map. Just notice how easy it’s to create the route using the GMSPath and GMSPolyline classes, as well as the route points we acquired in the MapTasks class:

At the end of the above snippet, we necessarily have to set the map to the routePolyline property.

The displayRouteInfo() method is pretty simple. We just display to the label at the bottom side of the screen the calculated distance and location:

That’s all! We’ve gone through many new things, but once you get the meaning of them, it’s easy to manage everything. You can test the app once again now. Specify an origin and a destination location, and let the route be created. I just have to repeat that the overview polyline is not as accurate as you would expect in some cases, so if it’s not good for you, consider to implement the solution I described earlier; go through all steps of all legs, gather the points of all steps, and draw them one by one on the map.

t33_2_route

Adding Waypoints to a Route

Waypoints are locations between the origin and the destination point of a route, and are actually part of the route. So far, we managed to create a route with the start and end points, but nothing between them. Now, we’re about to add that feature too. So, we’ll make the app a bit more interesting, and this time instead of using an alert controller to type in an address as a waypoint of the route, we’ll just tap on the map and the route will be re-calculated. Once that happens, a new marker will be placed on the map, pointing to the tapped location.

With that in mind, the first thing we need here is to declare and initialize two new arrays in the class:

The first one will hold all the markers pointing to waypoints. The second one, we’ll hold the waypoints formed as string objects.

Moving forward now, in order to handle the taps on the map and get the exact tapped location, we need to use a delegate method of the GMSMapViewDelegate protocol (existing in the Google Maps SDK). Before we implement it though, we have to adopt that protocol:

Also, we must make the ViewController class the delegate of the map view. In the viewDidLoad add the next simple line:

Let’ s see the delegate method I said about now, and then we’ll discuss about it:

The first important details here is to make sure that there’s a route so we can add waypoints. That’s easy to check, as we just have to make sure that the polyline of the route isn’t nil. In that case, we compose a string that contains the longitude and latitude of the tapped location simply by using the parameter coordinate. Make sure that no space characters exist in the string, otherwise the request to the Directions API will fail. Once the string describing the location is ready, we append it to the waypointsArray and we make a call to a brand new custom method, the recreateRoute() (which obviously will re-create the route).

Before we re-draw the route with the new waypoint contained in it, we must clear the existing one. So, instead of implementing the recreateRoute() method, initially we’ll create a new one, named clearRoute(). Let’s see it:

As you can see, every object that is part of the drawn route becomes nil and removed from the map. Note that we even make nil the map property of the markers that exist in the markersArray (we haven’t written the code that adds markers to it yet, but still we can do that).

Now, we can implement the recreateRoute():

First of all, we make sure that there’s a route so we clear it. Then we make the request to the Directions API, and this time note that in the parameters we specify the waypointsArray as well. If everything is okay, we call the same methods we called in the previous part, so the route to be drawn.

The most of our work here is now ready, but still we have a couple of tasks to do. The first one is to pay a visit to the configureMapAndMarkersForRoute() method, and make it capable of adding the waypoint markers too. Let’s see the required addition:

Notice how we break each waypoint string to its components, and then we convert the longitude and latitude in double values, so we can use them in the new marker initialization. Once each marker matching to a waypoint has been configured, we append it to the markersArray array.

The second task remaining to be done, is to update the getDirections(…) method in the MapTasks.swift file. In the beginning of the method, it’s mandatory to update the directionsURLString string, so we include the desired waypoints in the request that will be done. Note that besides than passing the waypoints, we also specify one more parameter to the query, asking for optimization of the route when using the waypoints:

Now you can go ahead and try once again the app. After you’ve created a route, tap on any point around it so the tapped location to be included to the route as a waypoint.

t33_26_waypoint

Travel Modes

By default when creating a route, the driving mode is used by the Directions API. As I already said, the following are the supported travel modes by the Google Maps SDK in iOS:

  • Driving mode
  • Walking mode
  • Bicycling mode

Changing the travel mode is an interesting matter, and it would be a great feature for this demo app too, therefore let’s go for it in this part. The first thing we’ll do is to create an enum that will contain all the supported travel modes. In the ViewController.swift file, go to the top of the file, before the class opening, and add the next lines:

Inside the class now, let’s declare the default travel mode:

In order to change the travel mode, we’ll use the changeTravelMode(_:) IBAction method. In it, we’ll create a new action sheet providing to the user all the possible options, and depending on the choice that is made we’ll set the travel mode accordingly. Let’s see that in code:

As you notice, in each action we set the respective travel mode and we call the recreateRoute() method we implemented in the previous part. Of course, we don’t do anything like that in the close action that is used to simply dismiss the action sheet.

All the above won’t have any effect at all, because the recreateRoute() method needs to be updated. In the current implementation, and while calling the getDirections(…) method of the MapTasks class, we don’t provide the travel mode as an argument; instead we just set the nil value. So, let’s fix this:

The only change here is the travelMode argument. Now, we need to update the getDirections(…) method too, so it takes under consideration the travel mode we set. So, go to the MapTasks.swift file, and make the next additions:

Note that further than adding the if let travel = travelMode{ … } statement, we also have to change the travelMode parameter type from AnyObject! to TravelModes! (the enum type we created earlier).

Now we’re good enough to test for one more time the app. Go to change the travel mode, and notice how the route info gets changed, especially the duration of the journey.

Final Touches

At this point our demo app is almost ready. I’m saying almost, because there are a couple of details that should be added to our code, so we make it work as good as possible.

The first thing we must do, is to clear the route if exists, right before creating a new one. So, in the createRoute(_:) method, and inside the createRouteAction block, we need to check if there’s an existing route, and then to clear it:

Note that except for just clearing the route, we also remove all objects from the waypointsArray. There’s no point to keep any existing waypoints since we’re about to create a new route.

The second thing is to specify the travel mode as an argument in this IBAction method again, because right now we just set the nil as the respective parameter’s value:

After having performed the above two tasks, we can say that our demo app is finally ready!

Summary

In the parts of this tutorial we managed to go through the most important tasks that a developer can perform when working with maps, and in this case, with the Google Maps SDK for iOS. What you’ve read in all the previous sections can put you on the right track if you want to deal with Google maps, and definitely you now have a starting point to work with. Undoubtably there are a lot more details regarding the Google Maps SDK that were impossible to be covered in this (just one) tutorial. However, now that you know the basics and the most important aspects of the SDK, you can dive in the Google documentation and search for any extra information you might need. Surely working with maps is an interesting topic, and no matter any difficulties that may arise, at the end it is still good material to work with. Anyway, if you’re currently working or if you’re planning to work with the Google Maps SDK, I hope you find the information provided in this post useful. Having it as a guide, nothing stops you from jumping right into it and taking full advantage of all the given APIs!

For your reference, you can refer to the complete Xcode project here. As always, leave me comment and share your thought about the tutorial.

Icons copyright: icons8

iOS
A Step by Step Guide on how to Create a XCFramework and Distribute it as a Swift package
macOS
macOS Programming Tutorial: Working with Collection View
SwiftUI
Building an Expandable List View with Inset Grouped Style Using SwiftUI
  • Boomslam

    BoomslamBoomslam

    Author Reply

    I believe that it should be #import
    pls. correct me if i’m wrong.


    • Gabriel Theodoropoulos

      Yes, the command is:

      #import

      For some reason the above did not appear correctly to the text.


    • Kishan Ravindra

      If your using new SDK, then you should Import it has #import


  • Mubashir Meddekar

    I am getting error changing the UIView – Mapview property to GMSMapView. Please help me.. Thanks,


    • Gabriel Theodoropoulos

      Make sure that the Google Maps Framework has been added correctly to the project and then try again. Also, take a look at my reply to the next comment regarding the import command in GMapsDemo-Bridging-Header.h file, which should be:

      #import <GoogleMaps/GoogleMaps.h>

      but it’s not shown for some reason to the text.


  • iOSNewbie

    iOSNewbieiOSNewbie

    Author Reply

    I am fairly new to all of this, and am trying to embed the Mapview in a tab controller (as the second item), and when I do this it no longer appears to work properly. You can’t test it from the simulator though, you have to test it from a device to see the true issue. It no longer shows the compass or finds my location.


  • Connor

    ConnorConnor

    Author Reply

    I’m able to get the map running on your demo project but when I follow the same steps in my own project, I keep receiving this error: [GMSMapView animateToCameraPosition:]: unrecognized selector sent to instance. I’ve done everything from checking the Other Linker Flag (to ensure it’s on the project and not the target), removing and adding the google maps framework and bundle, removing and adding back all the other frameworks and haven’t had any success. My app will build, but when I navigate to the screen with the GMSMapView, it crashes with the error listed. Any ideas on how to solve this?


    • Siarhei Brazil

      I can assume that you have forgotten to change UIView to GMSMapView in Storyboard


  • Narcis Zait

    The tutorial is excellent and really nice explained. There are some mistakes with the code formatting.
    My problem is that when I touch to add a waypoint, the final marker goes to where I touched, but the route is remade with the new waypoint


  • Sush

    SushSush

    Author Reply

    I am unable to get the UIView when I begin to code. i have checked my code multiple times and I am sure I have managed to link the ObjC and Swift files.


  • nguyen huy

    nguyen huynguyen huy

    Author Reply

    If I attack this viewController to a Tabbar viewController. This wont work, why? just work for the first time. Please answer soon


    • Siarhei Brazil

      What doesn’t work ? VC can be used, in case if you location is not detected, that might be caused by restriction to app’s permissions.



  • Sanjan Piya

    Really nice post, thanks for this. Though can anyone here point me to somewhere where i can learn about calculating area of closed pin points, for example calculating area of a house. Thank you


  • Kevin

    KevinKevin

    Author Reply

    “So, first of all, you need to download the Google Maps SDK (the framework that must be added to the project). You can get it here; click to the Download the SDK button…” I clicked link and there is no option to “click to the Download the SDK button…”? I am lost on how to download the SDK.

    Thank you.


    • Michael Maners

      i have the same problem… so, how do i get the SDK… no download button!


  • Milad

    MiladMilad

    Author Reply

    hi , I have problem when i run the Project which you made.
    but it gives many issues . (All the same)
    Like this : ‘AnyObject?’ is not convertible to ‘Dictionary’; did you mean to use ‘as!’ to force downcast?
    What should i do?


  • Vincent

    VincentVincent

    Author Reply

    Nice tutorial ! I have one quick question

    If i want” func createRoute” let me create one between the destination and myLocation route,

    i modify ‘let origin = “(viewMap.myLocation)” ‘

    But I dont know how to fix the ‘getDirections’


  • Erik Peruzzi

    Really good tutorial! Unfortunately i can’t see map in phone or simulator. Maybe some libraries are not updated at this time?


  • Surendra

    SurendraSurendra

    Author Reply

    I’m getting this error and I Couldn’t find solution anywhere.
    “The operation couldn’t be completed. (com.google.HTTPStatus error 400.)”
    Any help please!


  • Bill

    BillBill

    Author Reply

    Very nice tutorial! All works well for me with one exception. If i manually change the travel mode right after i add an initial route, I lose my entire route. However, If i add at least one waypoint, it works correctly. Did i forget some code? It appears that when I call recreateRoute() (before any extra waypoints are added), the ‘if let polyline = routePolyline’ check returns false so the getDirections() method doesn’t get called.


    • Bill

      BillBill

      Author Reply

      btw: I just downloaded your GitHub source, fixed up all the necessary ‘as!’ changes required by current Swift compiler and it appears that your code has the same issue. If you try to change the TravelMode without having at least one new waypoint placed, the entire path goes away.


  • AP

    APAP

    Author Reply

    When loading the map intially can you load a custom google map? How would that be done?


  • Jonas Hamers

    I get a problem with error:&error in swift 2.0

    var error: NSError?

    let dictionary: Dictionary = NSJSONSerialization.JSONObjectWithData(directionsData!, options: NSJSONReadingOptions.MutableContainers, error:&error) as! Dictionary

    it says:”Extra argument ‘error’ in call”
    What should I do about this?


    • Binoy jose

      Binoy joseBinoy jose

      Author Reply

      Hi Jonas, i am also facing same issue did you get any Solution ?…..


  • Silvi

    SilviSilvi

    Author Reply

    Hi I have a question, I d like to create a Map and tag some spots for iOS / Android and Web. How can I achieve this? I want the same spots to be listed in my iOS, Android and Web App. So what is the best way here? Parse?


    • Mike Camara

      It is a very good question, I would love to know the answer. Did you already find some solution?


  • Himanshu Parashar

    When i download the project and enter my google api key with my provisioning profiles, the app crashed on my iphone. please help me


  • Seema

    SeemaSeema

    Author Reply

    I am using URL Scheme to launch Google Maps to show route. It works for me.

    NSString *string = [NSString stringWithFormat:@”comgooglemaps://?daddr=%f,%f&directionsmode=driving”,12.992277,77.7175467];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:string]];

    Is there a way to do the same with waypoints? I need Google Maps so that user can do a navigation.


  • Алексей Цысс

    Perfect tutorial! Thank you very much!


  • Daniel Hjärtat Hjärtström

    I am new to Swift, but for anyone else struggling with the code, I managed to fix the observeValueForKeyPath:

    override func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String:AnyObject]!, context: UnsafeMutablePointer) {

    if !didFindMyLocation {

    let myLocation: CLLocation = change[NSKeyValueChangeNewKey] as! CLLocation
    viewMap.camera = GMSCameraPosition.cameraWithTarget(myLocation.coordinate, zoom: 10.0)
    viewMap.settings.myLocationButton = true

    didFindMyLocation = true // Change top variable to true

    }}


    • MichaelHHH

      MichaelHHHMichaelHHH

      Author Reply

      Hi Daniel, I tried your code for the syntax of the NSJSONserialization. However, the following syntax:”let status = dictionary[“status”] as! String” is warning ” use of unsolved identifier ‘dictionary’. So, i’m confused that I have really declared dictionary with your syntax, why it says ‘dictionary’ is unsolved identifier?

      Please help me, thank you so much!


      • knopch

        knopchknopch

        Author Reply

        Thanks!!! also for some reason the commenting on appcoda turns text inside to lower case, so void inside the in Daniel’s code should be Void.


    • Ankit Sharma

      func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String:AnyObject]!, context: UnsafeRawPointer) {

      if !didFindMyLocation {

      let myLocation: CLLocation = change[NSKeyValueChangeNewKey] as! CLLocation
      viewMap.camera = GMSCameraPosition.camera(withTarget: myLocation.coordinate, zoom: 10.0)
      viewMap.settings.myLocationButton = true

      didFindMyLocation = true // Change top variable to true

      }
      }

      how to resolve it in swift 3
      i am not able to fix this issue


  • Daniel Hjärtat Hjärtström

    Is anyone else having a problem with the second marker (destinationMarker) not showing up?


  • Swikar Patel

    I got an error while run error: linker command failed with exit code 1 (use -v to see invocation)

    Anyone can help me out. I have just started.
    Appreciated.


  • asinox

    asinoxasinox

    Author Reply

    Hi, thank you for this!

    I’m having an issue here:

    override func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject, change: [String : AnyObject], context: UnsafeMutablePointer) {
    if !didFindMyLocation {
    let myLocation: CLLocation = change[NSKeyValueChangeNewKey] as! CLLocation
    viewMap.camera = GMSCameraPosition.cameraWithTarget(myLocation.coordinate, zoom: 10.0)
    viewMap.settings.myLocationButton = true

    didFindMyLocation = true
    }
    }

    “Method does not override any method from its superclass”

    Any idea?

    Thanks!


    • asinox

      asinoxasinox

      Author Reply

      Forget it..fixed


      • Henk Frederique

        Hey Asinox, I have this same error. Could you please share with us what the solution was. I googled it extensively, but got none-the-wiser.. Thanx in advance for sharing!


        • Noura Rizk

          Noura RizkNoura Rizk

          Author Reply

          same thing, did you guys figured it out?!


  • pirateKyle

    pirateKylepirateKyle

    Author Reply

    Hey awesome tutorial, thank you.

    I was wondering if you could update for swift 2? I am having a lot of trouble with a couple different lines in the MapTasks section… it is very frustrating as I am really new.

    Thanks!


  • Binoy jose

    Binoy joseBinoy jose

    Author Reply

    Extra argument ‘error’ in call – in Swift 2

    the error “Extra argument ‘error’ in call” came on the following line of code What should I do about this?

    let dictionary: Dictionary = NSJSONSerialization.JSONObjectWithData(geocodingResultsData, options: NSJSONReadingOptions.MutableContainers, error: &error) as Dictionary


    • Shaik Ghouse Basha

      Hi Jose, Here is the fix….

      let dictionary: Dictionary

      do {

      dictionary = try NSJSONSerialization.JSONObjectWithData(geocodingResultsData!, options: NSJSONReadingOptions.MutableContainers) as! Dictionary

      // Get the response status.

      let status = dictionary[“status”] as! String

      if status == “OK” {

      let allResults = dictionary[“results”]as! Array<Dictionary>

      self.lookupAddressResults = allResults[0]

      // Keep the most important values.

      self.fetchedFormattedAddress = self.lookupAddressResults[“formatted_address”] as! String

      let geometry = self.lookupAddressResults[“geometry”] as! Dictionary

      self.fetchedAddressLongitude = ((geometry[“location”] as! Dictionary)[“lng”] as! NSNumber).doubleValue

      self.fetchedAddressLatitude = ((geometry[“location”] as! Dictionary)[“lat”] as! NSNumber).doubleValue

      completionHandler(status: status, success: true)

      }

      else {

      completionHandler(status: status, success: false)

      }

      } catch {

      completionHandler(status: “”, success: false)

      }

      })


  • Simone Fusco

    Hi…very good article..I have a problem with drawing route.

    The route is not accurate (see image in attachment).

    Have you any solution?


  • Simone Fusco

    Hi…very good article.

    I have a problem with drawing route.

    The route is not accurate (see image in attachment).

    Have you any solution?


    • Alejandro Fagundez

      Hi Simon, if you are using overview_polyline, you are using some kind of general view of the points, you need go inside in the json for better detail, through routes->legs->steps , steps is an array of potins, you must loop into the array and go drawing every point…
      PD: Sorry for my bad English
      Here an example:

      func drawRoute(steps: NSArray) {

      for(var i = 0;i<steps.count;++i){

      let polyline = steps[i]["polyline"] as! NSDictionary

      let points = polyline["points"] as! String

      self.drawPolyline(points)

      }

      }

      func drawPolyline(polyline: String){

      let path: GMSPath = GMSPath(fromEncodedPath: polyline)

      routePolyline = GMSPolyline(path: path)

      routePolyline.strokeWidth = 6.0

      routePolyline.strokeColor = UIColor.blueColor()

      routePolyline.map = self.mapView

      }


  • Elliott Diaz

    Amazing tutorial! Was wondering though, looking through google docs i noticed that for google maps directions api I need a server key and run it through a server to keep it private? could you possiblyy offer some clarification for us on what we need to do in order to implement routes between locations. The server key and personal server is what throws me off on the documents.
    thank you!


  • Klaws Ashkar

    Great tutorial,

    I would like to ask you if you worked with GMSCircle, since i am trying to make an app, that adds markers and circles with a radius in meters, and i m trying to know when the user location enters any circle.

    I would appreciate any help.

    Thank you


  • marwa

    marwamarwa

    Author Reply

    This is a great tutorial, I would like to ask you if you have any ideas about how to track user and draw path while he is moving using google maps api for android app


  • Milos

    MilosMilos

    Author Reply

    Hello, you should change recreateRoute method to call clear route only if success == true because in some countries not all modes are available and is a chance to loose your current route

    change:

    func recreateRoute() {

    //check if route exists

    if routePolyline != nil {

    mapTasks.getDirections(mapTasks.originAddress, destination: mapTasks.destinationAddress, waypoints: waypointsArray, travelMode: travelMode, completionHandler: { (status, success) in

    if success { // if you success than clearRoute..

    self.clearRoute()

    self.configureMapAndMarkersForRoute()

    self.drawRoute()

    self.displayRouteInfo()

    } else {

    print(status)

    if status == “ZERO_RESULTS” || status == “NOT_FOUND” {

    let alert = UIAlertController(title: “Not Available”, message: “This mode is not available at the moment.”, preferredStyle: .Alert)

    let action = UIAlertAction(title: “Ok”, style: .Cancel, handler: nil)

    alert.addAction(action)

    self.presentViewController(alert, animated: true, completion: nil)

    }

    }

    })

    }

    }


  • Viết Trung Phan

    Force network request task on main thread, nice job AppCoda


  • Irfan

    IrfanIrfan

    Author Reply

    Hi , Thanks for the article it was very good, actually I am looking for some information on how to hide a particular point of interest from map, such as attraction , business, medical etc.. This is possible using javascript API but how to achieve the same it here. See javascript API below:
    http://googlemaps.github.io/js-samples/styledmaps/wizard/index.html


  • siva krishna

    Hi, Thanks for article, I would like to know how to draw route when the driver moves on, I mean destination is fixed and the origin should be the user current location. Also i would like to notify when driver reaches destination.


  • siva krishna

    How to get Notify when destination is reached in Google maps iOS, Im using Google maps API To draw Route between two Points. Here my destination location is fixed, Origin is driver location. As it varies when driver moves on. Now I want to get notify when driver reached destination. How can i do this.


  • Mahmudul Shuvo

    Is it possible to get turn by turn directions using Google Maps Api in iOS?


  • Stephane

    StephaneStephane

    Author Reply

    After I finish the initial setup I get these 7 errors. I would really appreciate your help. Thanks.


  • Stephane

    StephaneStephane

    Author Reply

    This tutorial is a bit outdated (which lead to the problem I had below) but i found the solution. Don’t add the frameworks to build phases that it says to add. Instead, add these ones so that everything compiles and runs, and you don’t get the errors I got:

    CoreBluetooth.framework
    OpenGLES.framework
    ImageIO.framework
    CoreData.framework
    CoreText.framework
    QuartzCore.framework
    SystemConfiguration.framework
    GLKit.framework
    CoreLocation.framework
    Security.framework
    Accelerate.framework
    libc++abi.tbd
    libc++.1.tbd
    libc.tbd
    libicucore.tbd


  • Abirami Bala

    Hi i am using your tutorial and SDK. After updating my Xcode to latest Version the MapTasks.swift has many errors with swift 3. And some how I was fixed those errors but the map isn’t works. So please kindly share the update for swift 3.0.


  • Abirami Bala

    @gabtheodor,— Hi, I am using this google maps demo. I am facing many errors in Maptasks.swift. and even I’ve tried something and fixed those issues. But while running Im getting unexpected errors and the map is not loading.

    So, Please Fix it As soon as possible, hence I’ve to update it in my Currently working project.

    Thanks!


  • Budhabhooshan Patil

    https://uploads.disquscdn.com/images/62f1f7470fedd0fdef9a72de2ae751497b3d7d243c8624f2cde7e75668ac118a.png I am using SWRevealViewController with Google Maps.My rear view controller loads google map. Problem is that first time it loads google map with my current location correctly but when i redirect to different screen from menu and comes back to google map screen from menu again instead of going to my current location it goes to some where in UK.


  • Ankit Sharma

    func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String:AnyObject]!, context: UnsafeRawPointer) {

    if !didFindMyLocation {

    let myLocation: CLLocation = change[NSKeyValueChangeNewKey] as! CLLocation
    viewMap.camera = GMSCameraPosition.camera(withTarget: myLocation.coordinate, zoom: 10.0)
    viewMap.settings.myLocationButton = true

    didFindMyLocation = true // Change top variable to true

    }
    }

    how to resolve it in swift 3
    i am not able to fix this issue


    • Shilpashree Mayigaiah

      can u clearly explain what is your issue with above lines of code …so i can give solution


  • California Rebellion

    Do you know how to get the current zoom level? Is there a way to read it?


  • priya

    priyapriya

    Author Reply

    Hi , Thanks for the article it was very good, actually I am looking for same article using swift 3.3 I can download this article but some issues are unable to resolve …


Leave a Reply to marwa
Cancel Reply

Shares