2011-05-07 22:56:11 +02:00
|
|
|
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();
|
|
|
|
|
2011-05-27 23:43:00 +02:00
|
|
|
public boolean isEllipticYTile();
|
|
|
|
|
2011-05-07 22:56:11 +02:00
|
|
|
public boolean couldBeDownloadedFromInternet();
|
|
|
|
|
|
|
|
}
|