Fix build

This commit is contained in:
Alexey Kulish 2017-04-28 19:37:13 +03:00
parent 77b7290a20
commit 7ebfcdbfd2

View file

@ -0,0 +1,21 @@
package net.osmand.plus.mapillary;
import android.graphics.Canvas;
import net.osmand.data.RotatedTileBox;
import net.osmand.plus.views.MapTileLayer;
import net.osmand.plus.views.OsmandMapLayer;
import net.osmand.plus.views.OsmandMapTileView;
public class MapillaryLayer extends MapTileLayer {
public MapillaryLayer() {
super(false);
}
@Override
public void onPrepareBufferImage(Canvas canvas, RotatedTileBox tileBox, DrawSettings drawSettings) {
super.onPrepareBufferImage(canvas, tileBox, drawSettings);
// todo draw
}
}