I've created an Android application that uses Google Maps API v2.
Can someone tell me if it is possible to download and store map tiles and map data for different areas of the map to be used offline.
The ideal usage for this would be to be able to download the whole of the UK, store it on an SD card and then have my app look on the SD for the relevant map data.
Thanks
Asked
Active
Viewed 1,877 times
1

Paul Alexander
- 2,686
- 4
- 33
- 69
2 Answers
1
The answer pointed by Agil is for the case where you have your own TileProvider (i.e. you own the data). If you have access to the tiles, then yes, that is the right solution for you.
If you were thinking of downloading Google Maps tiles, then no, the API currently doesn't provide a way to download tiles for offline usage; only the one rendered on screen are cached.

Pierre
- 15,865
- 4
- 36
- 50
0
Please refer to this answer. According to that answer, it is possible with Google Maps Android API v2.

Community
- 1
- 1

Erwin Lengkeek
- 128
- 13
-
I have the custom tiles, need to show them but getTile() does not get called on the first launch. I need to show custom tiles on first launch in airplane mode. can somebody help? @Agil – abhishek Dec 07 '16 at 18:12