Book Image

Appcelerator Titanium Smartphone App Development Cookbook

By : Boydlee Pollentine
Book Image

Appcelerator Titanium Smartphone App Development Cookbook

By: Boydlee Pollentine

Overview of this book

<p>Appcelerator Titanium Mobile allows developers to realize their potential to develop full native iPhone and Android applications by using free Titanium Studio tools without the need to know Objective-C or Java. This practical hands-on cookbook shows you exactly how to leverage the Titanium API to its full advantage and become confident in developing mobile applications in no time at all.<br /><br />Appcelerator Titanium Smartphone App Development Cookbook offers a set of practical and clear recipes with a step-by-step approach for building native applications for both the iPhone and Android platforms using your existing knowledge of JavaScript.<br /><br />This cookbook takes a pragmatic approach to using your JavaScript knowledge to create applications for the iPhone and Android platforms, from putting together basic UIs to handling events and implementation of third party services such Twitter, Facebook and Push notifications. This book shows you how to utilize both remote and local datasources using XML, JSON and the SQLite database system. The topics covered will guide you to use popular Titanium Studio tools effectively and help you leverage all the advanced mobile features such as Geolocation, Accelerometer, animation and more. Finally, you’ll learn how to register developer accounts and how to publish your very own apps to the Android and Apple marketplaces.</p>
Table of Contents (18 chapters)
Appcelerator Titanium Smartphone App Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Getting your current position using GeoLocation


Our map may be working, but it is currently hardcoded to appear above London, England, and not all of us merry chaps work for Her Majesty. One of the great things about mapping technology is that we can determine our location from anywhere in the world via GPS satellites and, when GPS fails, mobile tower signals. This allows us to put maps into context, and let's you issue data to your user that is targeted to their environment.

In order to get our current location, we need to use the Titanium.Geolocation namespace, which contains a method called getCurrentPosition. The next recipe will explain how to use this namespace to adjust the bounds of our MapView to our current location.

Note

Complete source code for this recipe can be found in the /Chapter 3/Recipe 2 folder.

How to do it...

Add in the following code after you have added your MapView component to the window:

//set the distance filter
Titanium.Geolocation.distanceFilter = 10; 

//apple now...