Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application which shows maps offline using osmdroid.

It works very well with offline file I provide, but I want this app to download missing tiles from web is a connection is available, how to do this, the following code only shows tiles available locally

private static final ITileSource TILE_SOURCE_SPEC = TileSourceFactory.MAPQUESTOSM;

....

    SimpleRegisterReceiver simpleReceiver = new SimpleRegisterReceiver(this.getActivity());
    MapTileModuleProviderBase onlineTileProvider = new MapTileDownloader(TILE_SOURCE_SPEC);
    MapTileModuleProviderBase moduleProvider = new MapTileFileArchiveProvider(simpleReceiver, TILE_SOURCE_SPEC, mMapSource);
    mTileProvider = new MapTileProviderArray(TILE_SOURCE_SPEC, null, new MapTileModuleProviderBase[] { moduleProvider, onlineTileProvider});
    mMapView = new FixedMapView(getActivity(), TILE_SIZE_PX, mResourceProxy, mTileProvider);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.