OsmAnd/DataExtractionOSM/src/net/osmand/map/ITileSource.java
Victor Shcherb 50249440e2 change net.osmand
git-svn-id: https://osmand.googlecode.com/svn/trunk@455 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
2010-08-16 22:36:24 +00:00

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();
}