Book Image

Learning Android Google Maps

Book Image

Learning Android Google Maps

Overview of this book

This book helps you to overcome the most common problems faced by users and helps you create a successful map application without any hassle. The book starts with a brief description of how to set up an environment and obtain an API key to create your map application. This book will teach you about adding markers, overlays, and information windows to the map in detail. You will then dive deep into customizing various types of maps and working with location data and Google Street view. By the end of this book, you will be able to create succinct map applications in Android using Google maps efficiently.
Table of Contents (18 chapters)
Learning Android Google Maps
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Preface

This book completely covers the Android Google Maps API, which helps users to integrate the Google Map functionalities with their Android applications. This book also has real-time examples, which makes the learning process simpler and smoother.

What this book covers

Chapter 1, Setting Up the Development Environment, shows you how to install Android Studio and Eclipse IDE; configure Android SDK; create an Android virtual device in Windows, Mac, and Linux; and download the Google Play services.

Chapter 2, Configuring an API Key and Creating Our First Map Application, explains you how to obtain an API key from Google Cloud Console. It also helps you create your first Map application.

Chapter 3, Working with Different Map Types, helps you learn about the different map types, such as hybrid, terrain, and indoor as well as the lite mode.

Chapter 4, Adding Information to Maps, helps you understand how to add markers, overlays, and information windows to the map.

Chapter 5, Interacting with a Map, explains how to add custom controls, toolbars, gestures, and events to the map.

Chapter 6, Working with Custom Views, helps you change different camera views and animate the camera. It also helps you with map padding.

Chapter 7, Working with Location Data, helps you learn how to work with real-time location data (GPS data) and integrate it with an Android application.

Chapter 8, Knowing about the Street View, explains you how to add Street View to the map and use custom location in it.

Chapter 9, Google Maps Intents, explains you how to complete certain tasks using the native Google Maps application and Google Maps Intents.

Chapter 10, Creating a Custom Map Application, helps you create a real-time full fledged Android application using the map concepts learned in the previous chapters.

Appendix, Answers to Self-test Questions, covers the answers to all the self-test questions that appear at the end of every chapter.

What you need for this book

To practice the code you need a perfectly working PC or Mac with the OS of your choice. The important software required is Android Studio or Eclipse with ADT plugin. It is recommended to use Android Studio over Eclipse as the support for Eclipse may end anytime in future. It is also recommended to have a physical Android device for testing apps as it is faster than the virtual device.

Who this book is for

If you are an Android developer and want to integrate maps into your application, then this book is definitely for you. This book is intended for novice Android application developers who would like to get up and running with map-rich applications using Google Maps. Some basic development experience would be helpful, but it's not essential.

Conventions

In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.

Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Now, extract the downloaded ZIP package and run the eclipse.exe executable."

A block of code is set as follows:

dependencies {
    compile 'com.google.android.gms:play-services:7.5.0'
    compile 'com.android.support:appcompat-v7:21.0.3'
}

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

if(db.getMarkerCount() > 0){
            List<Marker> markerList = db.getAllMarkers();
            for (int i = 0; i < db.getMarkerCount(); i++) {
                Marker mkr = markerList.get(i);

Any command-line input or output is written as follows:

sudo dpkg --add-architecture i386
sudo apt-get update

New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Now, check the Developer Tools box and select Next."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

Reader feedback

Feedback from our readers is always welcome. Let us know what you think about this book—what you liked or disliked. Reader feedback is important for us as it helps us develop titles that you will really get the most out of.

To send us general feedback, simply e-mail , and mention the book's title in the subject of your message.

If there is a topic that you have expertise in and you are interested in either writing or contributing to a book, see our author guide at www.packtpub.com/authors.

Customer support

Now that you are the proud owner of a Packt book, we have a number of things to help you to get the most from your purchase.

Downloading the example code

You can download the example code files from your account at http://www.packtpub.com for all the Packt Publishing books you have purchased. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.

Downloading the color images of this book

We also provide you with a PDF file that has color images of the screenshots/diagrams used in this book. The color images will help you better understand the changes in the output. You can download this file from https://www.packtpub.com/sites/default/files/downloads/Learning_Android_Google_Maps_ColorImages.pdf.

Errata

Although we have taken every care to ensure the accuracy of our content, mistakes do happen. If you find a mistake in one of our books—maybe a mistake in the text or the code—we would be grateful if you could report this to us. By doing so, you can save other readers from frustration and help us improve subsequent versions of this book. If you find any errata, please report them by visiting http://www.packtpub.com/submit-errata, selecting your book, clicking on the Errata Submission Form link, and entering the details of your errata. Once your errata are verified, your submission will be accepted and the errata will be uploaded to our website or added to any list of existing errata under the Errata section of that title.

To view the previously submitted errata, go to https://www.packtpub.com/books/content/support and enter the name of the book in the search field. The required information will appear under the Errata section.

Piracy

Piracy of copyrighted material on the Internet is an ongoing problem across all media. At Packt, we take the protection of our copyright and licenses very seriously. If you come across any illegal copies of our works in any form on the Internet, please provide us with the location address or website name immediately so that we can pursue a remedy.

Please contact us at with a link to the suspected pirated material.

We appreciate your help in protecting our authors and our ability to bring you valuable content.

Questions

If you have a problem with any aspect of this book, you can contact us at , and we will do our best to address the problem.