Google Maps

  



Googlemapsapi.xml—You use this configuration file to hold your API key. The template generates two googlemapsapi.xml files: one for debug and one for release. The file for the API key for the debug certificate is located in src/debug/res/values. Google Maps is a Swiss Army Knife chock-full of hidden navigation, geospatial search, and customization tools. These tips and tricks will help you unlock your map app's full potential.

This codelab is part of the Advanced Android in Kotlin course. You'll get the most value out of this course if you work through the codelabs in sequence, but it is not mandatory. All the course codelabs are listed on the Advanced Android in Kotlin codelabs landing page.

Official MapQuest website, find driving directions, maps, live traffic updates and road conditions. Find nearby businesses, restaurants and hotels.

This codelab is part of a series that guides you through adding maps to your apps. We recommend that you do all the codelabs in order, because they progress through tasks step-by-step.

The codelabs in this series are:

Building apps with Google Maps allows you to add features to your app, such as satellite imagery, robust UI controls for maps, location tracking, and location markers. You can add value to the standard Google Maps by showing information from your own dataset, such as the locations of well-known fishing or climbing areas. You can also create games in which the player explores the physical world, like in a treasure hunt or even augmented reality games.

In this lesson, you create a Google Maps app called Wander that displays customized maps and shows the user's location.

What you'll learn

  • How to get an API key from the Google API Console and register the key to your app
  • How to integrate a Google Map in your app
  • How to display different map types
  • How to style the Google Map
  • How to add markers to your map
  • How to enable the user to place a marker on a point of interest (POI)
  • How to enable location tracking
  • How to create The Wander app, which has an embedded Google Map
  • How to create custom features for your app, such as markers and styling
  • How to enable location tracking in your app

In this codelab, you create the Wander app, which displays a Google map with custom styling. The Wander app allows you to drop markers onto locations, add overlays, and see your location in real time.

The Maps SDK for Android requires an API key. To obtain the API key, register your project in the API & Services page. The API key is tied to a digital certificate that links the app to its author. For more information about using digital certificates and signing your app, see Sign your app.

In this codelab, you use the API key for the debug certificate. The debug certificate is insecure by design, as described in Sign your debug build. Published Android apps that use the Maps SDK for Android require a second API key: the key for the release certificate. For more information about obtaining a release certificate, see Get an API Key.

Android Studio includes a Google Maps Activity template, which generates helpful template code. The template code includes a google_maps_api.xml file containing a link that simplifies obtaining an API key.

Note: If you want to build the activity without using the template, follow the steps in the Get an API Key to obtain the API key without using the link in the template.

  • Create a new Android Studio project.
  • Select the Google Maps Activity template.
    1. Name the project Wander.
    2. Set the minimum API level to API 19. Make sure the language is Kotlin.
    3. Click Finish.
    4. Once the app is done building, take a look at your project and the following maps-related files that Android Studio creates for you:

    google_maps_api.xml—You use this configuration file to hold your API key. The template generates two google_maps_api.xml files: one for debug and one for release. The file for the API key for the debug certificate is located in src/debug/res/values. The file for the API key for the release certificate is located in src/release/res/values. In this codelab, you only use the debug certificate.

    activity_maps.xml—This layout file contains a single fragment that fills the entire screen. The SupportMapFragment class is a subclass of the Fragment class. A SupportMapFragment is the simplest way to place a map in an app. It's a wrapper around a view of a map to automatically handle the necessary lifecycle needs.

    Google

    You can include SupportMapFragment in a layout file using a <fragment> tag in any ViewGroup, with an additional name attribute.

    MapsActivity.java—The MapsActivity.kt file instantiates the SupportMapFragment in the onCreate() method, and uses the class' getMapAsync() to automatically initialize the maps system and the view. The activity that contains the SupportMapFragment must implement the OnMapReadyCallback interface and that interface's onMapReady() method. The onMapReady() method is called when the map is loaded.

    Note: If you run the app now, the map fails to load. If you look in the logs, you see a message saying that your API key is not properly set up. In the next step, you obtain the API key to make the app display the map.

    Note: If you test the Wander app on an emulator, you must use a system image that includes Google Play. Select an image that shows Google Play in the Target column of the virtual-devices list.

  • Open the debug version of the google_maps_api.xml file.
  • In the file, look for a comment with a long URL. The URL's parameters include specific information about your app.
  • Copy and paste the URL into a browser.
  • Follow the prompts to create a project on the APIs & Services page. Because of the parameters in the provided URL, the page knows to automatically enable the Maps SDK for Android.
  • Click Create an API Key.
  • On the next page, go to the API Keys section and click the key you just created.
  • Click Restrict Key and select Maps SDK for Android to restrict the key's use to Android apps.
  • Copy the generated API key. It starts with 'AIza'.
  • In the google_maps_api.xml file, paste the key into the google_maps_key string where it says YOUR_KEY_HERE.
  • Run your app. You should see an embedded map in your activity with a marker set in Sydney, Australia. (The Sydney marker is part of the template and you change it later.)
  • Note: The API key may take up to 5 minutes to take effect. You may also need to restart Android Studio.

    MapsActivity has a private lateinitvar called mMap, which is of type GoogleMap. To follow Kotlin naming conventions, change the name of mMap to map.

    1. In MapsActivity, right-click mMap and click Refactor > Rename...
    1. Change the variable name to map.

    Notice how all the references to mMap in the onMapReady() function also change to map.

    Google Maps includes several map types: normal, hybrid, satellite, terrain, and 'none' (for no map at all).

    Normal map

    Satellite map

    Hybrid map

    Terrain map

    Each type of map provides different kinds of information. For example, when using maps for navigation in a car, it's helpful to see street names, so you could use the normal option. When you are hiking, the terrain map could be helpful to decide how much more you have to climb to get to the top.

    In this task you:

    1. Add an app bar with an options menu that allows the user to change the map type.
    2. Move the map's starting location to your own home location.
    3. Add support for markers, which indicate single locations on a map and can include a label.

  • To create a new menu XML file, right-click your res directory and select New > Android Resource File.
  • In the dialog, name the file map_options.
  • Choose Menu for the resource type.
  • Click OK.
  • In the Code tab, replace the code in the new file with the following code to create the map menu options. The 'none' map type is omitted because 'none' results in the lack of any map at all. This step causes an error, but you resolve it in the next step.
    1. In strings.xml, add resources for the title attributes in order to resolve the errors.
    Google maps mapquest
    1. In MapsActivity, override the onCreateOptionsMenu() method and inflate the menu from the map_options resource file.
    1. In MapsActivity.kt, override the onOptionsItemSelected() method. Change the map type using map-type constants to reflect the user's selection.
    1. Run the app.
    2. Click to change the map type. Notice how the map's appearance changes between the different modes.

    By default, the onMapReady() callback includes code that places a marker in Sydney, Australia, where Google Maps was created. The default callback also animates the map to pan to Sydney.

    In this task, you make the map's camera move to your home, zoom to a level you specify, and place a marker there.

  • In the MapsActivity.kt file, find the onMapReady() method. Remove the code in it that places the marker in Sydney and moves the camera. This is what your method should look like now.
    1. Find the latitude and longitude of your home by following these instructions.
    2. Create a value for the latitude and a value for the longitude, and input their float values.
    1. Create a new LatLng object called homeLatLng. In the homeLatLng object, pass in the values you just created.
    1. Create a val for how zoomed in you want to be on the map. Use zoom level 15f.

    The zoom level controls how zoomed in you are on the map. The following list gives you an idea of what level of detail each level of zoom shows:

    • 1: World
    • 5: Landmass/continent
    • 10: City
    • 15: Streets
    • 20: Buildings
    1. Move the camera to homeLatLng by calling the moveCamera() function on the map object and pass in a CameraUpdate object using CameraUpdateFactory.newLatLngZoom(). Pass in the homeLatLng object and the zoomLevel.
    1. Add a marker to the map at homeLatLng.

    Google Maps Mapquest

    Your final method should look like this:

    1. Run your app. The map should pan to your home, zoom to the desired level, and place a marker on your home.

  • Create a method stub in MapsActivity called setMapLongClick() that takes a GoogleMap as an argument.
  • Attach a setOnMapLongClickListener listener to the map object.
    1. In setOnMapLongClickListener(), call the addMarker() method. Pass in a new MarkerOptions object with the position set to the passed-in LatLng.
    1. At the end of the onMapReady() method, call setMapLongClick() with map.
    1. Run your app.
    2. Touch and hold the map to place a marker at a location.
    3. Tap the marker, which centers it on the screen.

    Note: When a marker is tapped, navigation buttons appear, allowing the user to use the Google Maps app to navigate to the marked position.

    InfoWindow that displays the coordinates of the marker when the marker is tapped.

    1. In setMapLongClick()setOnMapLongClickListener(), create a val for snippet. A snippet is additional text displayed after the title. Your snippet displays the latitude and longitude of a marker.
    1. In addMarker(), set the title of the marker to Dropped Pin using a R.string.dropped_pin string resource.
    2. Set the marker's snippet to snippet.

    The completed function looks like this:

    1. Run your app.
    2. Touch and hold the map to drop a location marker.
    3. Tap the marker to show the info window.

    normal, business POIs also appear on the map. Business POIs represent businesses, such as shops, restaurants, and hotels.

    In this step, you add a GoogleMap.OnPoiClickListener to the map. This click listener places a marker on the map immediately when the user clicks a POI. The click listener also displays an info window that contains the POI name.

    1. Create a method stub in MapsActivity called setPoiClick() that takes a GoogleMap as an argument.
    2. In the setPoiClick() method, set an OnPoiClickListener on the passed-in GoogleMap.
    1. In the setOnPoiClickListener(), create a val poiMarker for the marker .
    2. Set it to a marker using map.addMarker() with MarkerOptions setting the title to the name of the POI.
    1. In the setOnPoiClickListener() function, call showInfoWindow() on poiMarker to immediately show the info window.

    Google Maps Timeline

    Your final code for the setPoiClick() function should look like this.

    1. At the end of onMapReady(), call setPoiClick() and pass in map.
    1. Run your app and find a POI, such as a park or a coffee shop.
    2. Tap the POI to place a marker on it and display the POI's name in an info window.

    You can customize Google Maps in many ways, giving your map a unique look and feel.

    You can customize a MapFragment object using the available XML attributes, as you would customize any other fragment. However, in this step, you customize the look and feel of the content of the MapFragment, using methods on the GoogleMap object.

    To create a customized style for your map, you generate a JSON file that specifies how features in the map are displayed. You don't have to create this JSON file manually. Google provides the Maps Platform Styling Wizard, which generates the JSON for you after you visually style your map. In this task, you style the map with a retro theme, meaning that the map uses vintage colors and you add colored roads.

    Note: Styling only applies to maps that use the normal map type.

  • Navigate to https://mapstyle.withgoogle.com/ in your browser.
  • Select Create a Style.
  • Select Retro.
    1. Click More Options.
    1. Select Road > Fill.
    2. Change the color of the roads to any color you choose (such as pink).
    1. Click Finish.
    1. Copy the JSON code from the resulting dialog and, if you wish, stash it in a plain text note for use in the next step.

  • In Android Studio, in the res directory, create a resource directory and name it raw. You use the raw directory resources like JSON code.
  • Create a file in res/raw called map_style.json.
  • Paste your stashed JSON code into the new resource file.
  • In MapsActivity, create a TAG class variable above the onCreate() method. This is used for logging purposes.
    1. Also in MapsActivity, create a setMapStyle() function that takes in a GoogleMap.
    2. In setMapStyle(), add a try{} block.
    3. In the try{} block, create a val success for the success of styling. (You add the following catch block.)
    4. In the try{} block, set the JSON style to the map, call setMapStyle() on the GoogleMap object. Pass in a MapStyleOptions object, which loads the JSON file.
    5. Assign the result to success. The setMapStyle() method returns a boolean indicating the success status of parsing the styling file and setting the style.
    1. Add an if statement for success being false. If the styling is unsuccessful, print a log that the parsing has failed.
    1. Add a catch{} block to handle the situation of a missing style file. In the catch block, if the file can't be loaded, then throw a Resources.NotFoundException.

    Google Maps Live

    The finished method should look like the following code snippet:

    1. Finally, call the setMapStyle() method in the onMapReady() method passing in your GoogleMap object.
    1. Run your app.
    2. Set the map to normal mode and the new styling should be visible with retro theming and roads of your chosen color.

    Note: If you zoom out enough, the map does not show roads anymore, so you don't see them.

    Google Maps Google Earth

  • In the onMapLongClick() method, add the following line of code to the MarkerOptions() of the constructor to use the default marker, but change the color to blue.
  • Now onMapLongClickListener() looks like this:

    Google Maps Driving Directions

    1. Run the app. The markers that appear after you long click are now shaded blue. Note that POI markers are still red because you didn't add styling to the onPoiClick() method.

    One way you can customize the Google map is by drawing on top of it. This technique is useful if you want to highlight a particular type of location, such as popular fishing spots.

    • Shapes: You can add polylines, polygons, and circles to the map.
    • GroundOverlayobjects: A ground overlay is an image that is fixed to a map. Unlike markers, ground overlays are oriented to the Earth's surface rather than to the screen. Rotating, tilting, or zooming the map changes the orientation of the image. Ground overlays are useful when you wish to fix a single image in one area on the map.

  • Download this Android image and save it in your res/drawable folder. (Make sure the file name is android.png.)
    1. In onMapReady(), after the call to move the camera to your home's position, create a GroundOverlayOptions object.
    2. Assign the object to a variable called androidOverlay.
    1. Use the BitmapDescriptorFactory.fromResource() method to create a BitmapDescriptor object from the downloaded image resource.
    2. Pass the resulting BitmapDescriptor object into the image() method of the GroundOverlayOptions object.
    1. Create a float overlaySize for the width in meters of the desired overlay. For this example, a width of 100f works well.

    Set the position property for the GroundOverlayOptions object by calling the position() method, and pass in the homeLatLng object and the overlaySize.

    1. Call addGroundOverlay() on the GoogleMap object and pass in your GroundOverlayOptions object.
    1. Run the app.
    2. Change the value of zoomLevel to 18f to see the Android image as an overlay.

    Users often use Google Maps to see their current location. To display the device location on your map, you can use the location-data layer.

    The location-data layer adds My Location icon to the map.

    When the user taps the button, the map centers on the device's location. The location is shown as a blue dot if the device is stationary and as a blue chevron if the device is moving.

    In this task, you enable the location-data layer.

  • In the AndroidManifest.xml file, verify that the FINE_LOCATION permission is already present. Android Studio inserted this permission when you selected the Google Maps template.
    1. In MapsActivity, create a REQUEST_LOCATION_PERMISSION class variable.
    1. To check if permissions are granted, create a method in the MapsActivity called isPermissionGranted(). In this method, check if the user has granted the permission.
    1. To enable location tracking in your app, create a method in MapsActivity called enableMyLocation() that takes no arguments and doesn't return anything. Inside, check for the ACCESS_FINE_LOCATION permission. If the permission is granted, enable the location layer. Otherwise, request the permission.
    1. Call enableMyLocation() from the onMapReady() callback to enable the location layer.
    1. Override the onRequestPermissionsResult() method. Check if the requestCode is equal to REQUEST_LOCATION_PERMISSION. If it is, that means that the permission is granted. If the permission is granted, also check if the grantResults array contains PackageManager.PERMISSION_GRANTED in its first slot. If that is true, call enableMyLocation().
    1. Run your app. There should be a dialog requesting access to the device's location. Go ahead and allow permission.

    Note: This dialog may look different if you are not running API level 29.

    The map now displays the device's current location using a blue dot. Notice that there is a location button. If you move the map away from your location and click this button, it centers the map back to the device's location.

    Note: When you run the app on an emulator, the location may not be available. If you haven't used the emulator settings to set a location, the location button is unavailable.

    Download the code for the finished codelab.

    Alternatively, you can download the repository as a zip file, unzip it and open it in Android Studio.

    Note: You need to add an API key to the solution code or no map appears.

    Congratulations! You added a Google map to an Android Kotlin app and styled it.

    Android developer documentation:

    Reference documentation:

    For links to other codelabs in this course, see the Advanced Android in Kotlin codelabs landing page.