Reputation: 259
How i can show google map offline?
I have gone through various stackoverflow question and answer but not able to find solution.
I have implemented com.google.android.gms.maps.MapFragment
and i am showing direction from one point to other. I have got coordinates from GMapV2Direction. Now i want to show this as offline.
Following are the links i got from stackoverflow but not useful.
Plese help!!!
Upvotes: 3
Views: 5848
Reputation: 335
See this solution or this one. Basically you just create your own tileprovider and access tiles locally. Totally doable with the v2 api. API Reference
There's some false information floating around out there that the v2 google maps api requires an internet connection. There was a but where the api would require a single access after app install to verify with Google Play services, but I believe this has been fixed. See this and this
Upvotes: 4