Finish rest of zoom out core logic - still need to finish web UI

This commit is contained in:
Mike Primm 2011-06-22 13:56:21 -05:00
parent bec1108fa1
commit e7e4406e77
7 changed files with 67 additions and 42 deletions

View file

@ -17,7 +17,6 @@ import org.dynmap.Log;
import org.dynmap.MapManager;
import org.dynmap.MapTile;
import org.dynmap.MapType;
import org.dynmap.MapType.ZoomStepDirection;
import org.dynmap.utils.MapChunkCache;
import org.json.simple.JSONObject;
import java.awt.image.DataBufferInt;
@ -339,7 +338,9 @@ public class KzedMap extends MapType {
public int baseZoomFileStepSize() { return zTileWidth; }
public ZoomStepDirection zoomFileStepDirection() { return ZoomStepDirection.NEGATIVE_X_POSITIVE_Y; }
private static final int[] stepseq = { 0, 2, 1, 3 };
public int[] zoomFileStepSequence() { return stepseq; }
public String getName() {
return "KzedMap";