2010-08-17 00:36:24 +02:00
|
|
|
package net.osmand.map;
|
2010-04-30 16:35:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2010-07-19 21:28:29 +02:00
|
|
|
public int getBitDensity();
|
|
|
|
|
|
|
|
public boolean couldBeDownloadedFromInternet();
|
|
|
|
|
2010-04-30 16:35:33 +02:00
|
|
|
}
|