can we download data from google maps and store in apps folder for offline usage
of course im thinking small areas like couple of cities
somehow i would like to
make it work without maps being downloaded over and over again due to internet limit
and another question
is it possible to use gps loc. to google map coordinate
Comments
I don't think you can use google services in your app without a paid API
Likes: gemboy100
I use map services a lot in my geolocation app. I have two map engines implemented:
- a native google maps plugin for iOS and Android: I put the native map view under gideros canvas and make gideros background transparent, after what I can draw over the native map
- a pure lua based map engine that fetch tiles from own OpenStreetMap server
There is also a map plugin (by @PaulH) in gideros that can show the native iOS or Android map and have the ability to place markers. See http://forum.giderosmobile.com/discussion/6840/new-plugin-available-native-mapping-for-android-ios#latest
Likes: gemboy100