50249440e2
git-svn-id: https://osmand.googlecode.com/svn/trunk@455 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
22 lines
393 B
Java
22 lines
393 B
Java
package net.osmand.map;
|
|
|
|
|
|
public interface ITileSource {
|
|
|
|
public int getMaximumZoomSupported();
|
|
|
|
public String getName();
|
|
|
|
public int getTileSize();
|
|
|
|
public String getUrlToLoad(int x, int y, int zoom);
|
|
|
|
public int getMinimumZoomSupported();
|
|
|
|
public String getTileFormat();
|
|
|
|
public int getBitDensity();
|
|
|
|
public boolean couldBeDownloadedFromInternet();
|
|
|
|
}
|