Adan Archila
Adan Archila

Reputation: 323

Phonegap in Android and iOS - Suggestions for building an app from scratch

this is just for personal knowledge, I will really appreciate your comments. I wanna build an Android/iOS app in phonegap, basically it's a business listing app, each business listing will have this data:

I want to have all the directory listings inside the app, so you can use it "offline" not the maps of course, for using the maps you must be online.

So my questions are:

I hope it's clear, sorry for my broken english! :-)

Upvotes: 1

Views: 752

Answers (2)

Avadhani Y
Avadhani Y

Reputation: 7626

  1. You can use Sqlite Database to store the data. Please read the document provided in the link :http://docs.phonegap.com/en/1.7.0/cordova_storage_storage.md.html#Storage.
  2. You can use Google Maps API during offline. But during online, you can use the PhoneGapAPI provided in the link :http://docs.phonegap.com/en/1.7.0/cordova_geolocation_geolocation.md.html#Geolocation
  3. Yes, you can use phonegap as it is the bestway for your Application. For more information please go through the PhoneGap Documentation link:http://docs.phonegap.com/en/1.7.0/index.html

Upvotes: 2

zxglive2006
zxglive2006

Reputation: 21

1.Save data in SharePreferences or sqllite. 2. Use google or bing maps api is more easy. It's expensive to get the local map data and update it.

Upvotes: 2

Related Questions