Tile decoders refactoring

This commit is contained in:
Emux
2019-10-01 18:41:13 +03:00
parent 1294ff9fea
commit c20922b5f5
11 changed files with 19 additions and 19 deletions

View File

@@ -69,6 +69,6 @@ public class OpenMapTilesMvtTileSource extends UrlTileSource {
@Override
public ITileDataSource getDataSource() {
return new OverzoomTileDataSource(new UrlTileDataSource(this, new MvtTileDecoder(locale), getHttpEngine()), mOverZoom);
return new OverzoomTileDataSource(new UrlTileDataSource(this, new TileDecoder(locale), getHttpEngine()), mOverZoom);
}
}