Book Image

PhoneGap 3 Beginner's Guide

By : Giorgio Natili
Book Image

PhoneGap 3 Beginner's Guide

By: Giorgio Natili

Overview of this book

<p>You don’t have to know complex languages like Objective C to compete in the ever-growing mobile market place. The PhoneGap framework lets you use your web development skills to build HTML and JavaScript-based mobile applications with native wrappers that run on all the major mobile platforms, including Android, iOS, and Windows Phone 8.</p> <p>"PhoneGap 3 Beginner's Guide" will help you break into the world of mobile application development. You will learn how to set up and configure your mobile development environment, implement the most common features of modern mobile apps, and build rich, native-style applications. The examples in this book deal with real use case scenarios, which will help you develop your own apps, and then publish them on the most popular app stores.</p> <p>Dive deep into PhoneGap and refine your skills by learning how to build the main features of a real world app.</p> <p>"PhoneGap 3 Beginner's Guide" will guide you through the building blocks of a mobile application that lets users plan a trip and share their trip information. With the help of this app, you will learn how to work with key PhoneGap tools and APIs, extend the framework’s functionality with plug-ins, and integrate device features such as the camera, contacts, storage, and more. By the time you’re finished, you will have a solid understanding of the common challenges mobile app developers face, and you will know how to solve them.</p>
Table of Contents (22 chapters)
PhoneGap 3 Beginner's Guide
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – discovering places with Google Places


Execute the following steps:

  1. Add the Geolocation API plugin using the command line.

    $ cordova plugins add https: //git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
    
  2. Download the async RequireJS plugin from GitHub at https://github.com/millermedeiros/requirejs-plugins/blob/master/src/async.js and save it to the js/libs/require/plugins folder. This plugin allows you to asynchronously load external libraries or dependencies. In this example, it will be used to load the Google Places API.

  3. Add the path to the async plugin into the configuration of RequireJS you already defined in the main.js file.

    require.config({
    
        paths: {
            // All the already defined paths
            async: 'libs/require/plugins/async'
        },
    
        // Other configurations
    
    });
  4. Go to the js/utils folder and create a new RequireJS module named gmaps. This module allows your app to download the Google Places API only when requested by another module; use the...