Reputation: 73
I am developing an application in which I need to use maps offline. I'm using osmdroid and osmbonuspack
To download the maps I've tried:
For me the ideal would be to download the maps from the application itself, and I just want to download the maps you are on a track, not a complete section.
How could I fix it?
Is there any way to download maps from the phone through my application?
Upvotes: 7
Views: 15487
Reputation: 1
Today just OSM Map Tile Packager works for map tile mapnik and it do maps in PNG, so
if(ConexaoInternet.verificaConexao(getActivity())) { //<-- here i am Checking if has conection with internet
mapView.setTileSource(TileSourceFactory.DEFAULT_TILE_SOURCE);
}else{
String[] urls = {"http://127.0.0.1"};
mapView.setTileSource(new XYTileSource("Mapnik", // name of the main file that has been zipped
ResourceProxy.string.mapquest_osm,
9, // min map zoom level
15, // max map zoom level
256, // tile size pixels
".png",
new String[]{"http://a.tile.openstreetmap.org/", "http://b.tile.openstreetmap.org/", "http://c.tile.openstreetmap.org/"}));
}
I prefer put some urls concrete.
Upvotes: 0
Reputation: 3450
About to the second - preferred - approach asked in the question: "Is there any way to download maps from the phone through my application?"
=> Answer is now: Yes!
From OSMBonusPack v4.6, there is a CacheManager class, allowing to download the tiles of a (rectangular) area, directly from the Android application. Tiles are loaded in the standard osmdroid tiles cache.
It can be tested using OSMNavigator.
Upvotes: 5
Reputation: 141
First of all Thank you MKer and to Tom Kincaid from another post, putting the two together. The following works for me:
This was what I needed to do that's different from MKer:
String[] urls = {"http://127.0.0.1"};
mapView.setTileSource(new XYTileSource("MapQuest", // name of the main file that has been zipped
ResourceProxy.string.mapquest_osm,
2, // min map zoom level
14, // max map zoom level
256, // tile size pixels
".jpg", // extension of the tiles (can be ".png" as well)
urls));
After creating the maps using Mobile Atlas Creator
Upvotes: 4
Reputation: 3450
Working solution with MobileAtlasCreator / MOBAC:
There is an osmdroid documentation, but it is very weak, and sometimes outdated.
I struggled for a while on successive issues. Here are the details of a working solution with osmdroid v4.1.
1) When building your offline map with MOBAC:
Select your area, create your "atlas". This produces a zip file.
Upload the zip file on your device, in /sdcard/osmdroid/ (exact path may vary depending on the device. If you already used osmdroid, this directory MUST already exist)
The file name doesn't matter. The extension MUST be ".zip"
2) Now, in your osmdroid application, your onCreate method should be something like this:
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
map = (MapView) findViewById(R.id.map);
map.setTileSource(new XYTileSource("MapQuest",
ResourceProxy.string.mapquest_osm, 0, 18, 256, ".jpg", new String[] {
"http://otile1.mqcdn.com/tiles/1.0.0/map/",
"http://otile2.mqcdn.com/tiles/1.0.0/map/",
"http://otile3.mqcdn.com/tiles/1.0.0/map/",
"http://otile4.mqcdn.com/tiles/1.0.0/map/"}));
map.setBuiltInZoomControls(true);
map.setMultiTouchControls(true);
map.setUseDataConnection(false); //optional, but a good way to prevent loading from the network and test your zip loading.
IMapController mapController = map.getController();
mapController.setZoom(_A ZOOM LEVEL YOU HAVE IN YOUR ZIP_);
GeoPoint startPoint = new GeoPoint(_POSITION SOMEWHERE INSIDE YOUR MAP_);
mapController.setCenter(startPoint);
}
In this code, 2 parameters values are VERY important:
"MapQuest" name (with this EXACT spelling) is MANDATORY => this is used as an internal path inside the zip file. If you open your zip file, you will see that MOBAC created this "MapQuest" directory.
".jpg" extension is also MANDATORY => as MOBAC creates MapQuest tiles in the zip with .jpg extension (important to notice, as standard tile sources in osmdroid are all using ".png" extension).
At this stage, it should be OK - as long as you are really positionning the mapview on an area which is part of your atlas (zoom level & position).
3) Back to MOBAC... You can also choose the following Atlas formats: "Osmdroid SQLite" or "MBTiles SQLite". Transfert the file (Layer.sqlite or Layer.mbtiles) on the device in /sdcard/osmdroid/
Again, in your XYTileSource constructor, the extension MUST be ".jpg". The name doesn't matter.
Both worked fine.
4) Choosing "Osmdroid GEMF" format will not work: it's a known bug in GEMF on handling of jpg tiles. EDIT > In MOBAC, you can use the "custom tile processing" feature to convert JPG tiles to PNG format. Then "Osmdroid GEMF" will be ok.
Upvotes: 23