Merge pull request #187 from andreynovikov/oscimap-tile-decoder

Make TileDecoder public
This commit is contained in:
Emux 2016-09-28 20:17:19 +03:00 committed by GitHub
commit 929beb87fc

View File

@ -78,7 +78,7 @@ public class TileDecoder extends PbfDecoder {
private final static float REF_TILE_SIZE = 4096.0f; private final static float REF_TILE_SIZE = 4096.0f;
private final float mScaleFactor = REF_TILE_SIZE / Tile.SIZE; private final float mScaleFactor = REF_TILE_SIZE / Tile.SIZE;
TileDecoder() { public TileDecoder() {
mElem = new MapElement(); mElem = new MapElement();
mTileTags = new TagSet(100); mTileTags = new TagSet(100);
} }