add getter for UrlTileSource.getUrl()

This commit is contained in:
Hannes Janetzek
2014-02-25 22:54:55 +01:00
parent 9fe4be522a
commit 50e3794cb9
6 changed files with 12 additions and 8 deletions

View File

@@ -35,6 +35,6 @@ public class OSciMap1TileSource extends UrlTileSource {
@Override
public ITileDataSource getDataSource() {
return new UrlTileDataSource(this, new TileDecoder(), new LwHttp(mUrl));
return new UrlTileDataSource(this, new TileDecoder(), new LwHttp(getUrl()));
}
}