Book Image

HTML5 iPhone Web Application Development

By : Alvin Crespo
Book Image

HTML5 iPhone Web Application Development

By: Alvin Crespo

Overview of this book

<p>Create compelling web applications specifically tailored for distribution on iOS Safari. Work through real world examples with references, and in-depth discussions on the approach; including its benefits and drawbacks.<br /><br />"HTML5 iPhone Web Application Development" strives to teach all levels of developers, beginners and professionals, the process of creating web applications for iOS Safari. Utilizing current industry standards for frontend development, learn to take advantage of HTML5, CSS3 and JavaScript to create compelling software.<br /><br />Start with reviewing current industry standards for frontend development, and end with creating a native application using the same codebase.</p> <p>Your journey will begin with an overview of current industry standards for frontend technology, quickly moving to solve real world issues; from creating a resizable or responsive gallery, to creating a single page application that utilizes the popular Backbone.js framework.</p> <p>"HTML5 iPhone Web Application Development" aims to make you an expert in developing web applications for the iOS Safari platform.</p>
Table of Contents (17 chapters)
HTML5 iPhone Web Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Google Maps API


Before we get on to implementing Geolocation with Google Maps, we need to do some setup work that is pretty simple. As you may already know, Google Maps provides an API that you can tap into to implement their maps into your application, making it easy for you to display information relative to a user's input or even better—their current location. However, for several reasons we need to use an API key from Google to authorize our application and keep track of the requests made from your application. In this section we'll cover the setup work and hopefully move you along quickly.

The API(s)

First of all, you need to know that there are several APIs related to Maps, including JavaScript v3, Places, iOS SDK, Android API, Earth API, and more. For our purposes we'll be using the JavaScript API v3; note that we will be using using version 3 of the API. If you would like more information on the several APIs you can visit the following page:

https://developers.google.com/maps/

Obtaining...