Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (C) 2008-2013 LimeTri. All rights reserved.
*
* AgroSense is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* There are special exceptions to the terms and conditions of the GPLv3 as it
* is applied to this software, see the FLOSS License Exception
* .
*
* AgroSense is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* AgroSense. If not, see .
*/
package eu.limetri.client.mapviewer.swing.empty;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import eu.limetri.client.mapviewer.data.Tile;
import eu.limetri.client.mapviewer.data.TileFactory;
import eu.limetri.client.mapviewer.data.TileFactoryInfo;
/**
* A null implementation of TileFactory. Draws empty areas.
*
* @author joshy
*/
public class EmptyTileFactory extends TileFactory> {
/** The empty tile image. */
private BufferedImage emptyTile;
/** Creates a new instance of EmptyTileFactory */
public EmptyTileFactory() {
this(new TileFactoryInfo("EmptyTileFactory 256x256", 1, 15, 17, 256,
true, true, "", "x", "y", "z"));
}
/** Creates a new instance of EmptyTileFactory using the specified info. */
public EmptyTileFactory(TileFactoryInfo info) {
super(info);
int tileSize = info.getTileSize(info.getMinimumZoomLevel());
emptyTile = new BufferedImage(tileSize, tileSize,
BufferedImage.TYPE_INT_ARGB);
Graphics2D g = emptyTile.createGraphics();
g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g.setColor(Color.GRAY);
g.fillRect(0, 0, tileSize, tileSize);
g.setColor(Color.WHITE);
g.drawOval(10, 10, tileSize - 20, tileSize - 20);
g.fillOval(70, 50, 20, 20);
g.fillOval(tileSize - 90, 50, 20, 20);
g.fillOval(tileSize / 2 - 10, tileSize / 2 - 10, 20, 20);
g.dispose();
}
/**
* Gets an instance of an empty tile for the given tile position and zoom on
* the world map.
*
* @param x
* The tile's x position on the world map.
* @param y
* The tile's y position on the world map.
* @param zoom
* The current zoom level.
*/
public Tile getTile(int x, int y, int zoom) {
return new Tile(x, y, zoom) {
public boolean isLoaded() {
return true;
}
public BufferedImage getImage() {
return emptyTile;
}
};
}
/**
* Override this method to load the tile using, for example, an ExecutorService.
* @param tile The tile to load.
*/
protected void startLoading(Tile tile){
// noop
}
@Override
public void clearQueueAndStopLoading() {
//noop
}
}