Fix build
This commit is contained in:
parent
77b7290a20
commit
7ebfcdbfd2
1 changed files with 21 additions and 0 deletions
21
OsmAnd/src/net/osmand/plus/mapillary/MapillaryLayer.java
Normal file
21
OsmAnd/src/net/osmand/plus/mapillary/MapillaryLayer.java
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue