org.osmdroid.tileprovider.modules.IArchiveFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmdroid-android Show documentation
Show all versions of osmdroid-android Show documentation
An Android library to display OpenStreetMap views.
package org.osmdroid.tileprovider.modules;
import java.io.InputStream;
import org.osmdroid.tileprovider.MapTile;
import org.osmdroid.tileprovider.tilesource.ITileSource;
public interface IArchiveFile {
/**
* Get the input stream for the requested tile.
* @return the input stream, or null if the archive doesn't contain an entry for the requested tile
*/
InputStream getInputStream(ITileSource tileSource, MapTile tile);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy