tiles now served by mod_tile - need to patch it for other mime types than image/png

This commit is contained in:
Hannes Janetzek 2013-08-04 14:38:44 +02:00
parent 049751f05f
commit de001b9dfa

View File

@ -31,7 +31,8 @@ public class OSciMap4TileSource extends UrlTileSource {
class TileDataSource extends PbfTileDataSource { class TileDataSource extends PbfTileDataSource {
public TileDataSource(URL url) { public TileDataSource(URL url) {
super(new TileDecoder()); super(new TileDecoder());
mConn = new LwHttp(url, "application/x-protobuf", "vtm", false); //mConn = new LwHttp(url, "application/x-protobuf", "vtm", false);
mConn = new LwHttp(url, "image/png", "vtm", false);
} }
} }
} }