I'm trying to load an image in a particular coordinate in JMapViewer. Can anyone can suggest what class I have to use or provide a little example?
How do I load an image in a particular coordinate in JMapViewer?
1.5k Views Asked by doflamingo At
2
There are 2 best solutions below
1

package geovista.jmapviewer;
//License: GPL. Copyright 2008 by Jan Peter Stotz
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import javax.imageio.ImageIO;
import geovista.jmapviewer.interfaces.TileCache;
import geovista.jmapviewer.interfaces.TileSource;
/**
* Holds one map tile. Additionally the code for loading the tile image and
* painting it is also included in this class.
*
* @author Jan Peter Stotz
*/
public class Tile {
/**
* Hourglass image that is displayed until a map tile has been loaded
*/
public static BufferedImage LOADING_IMAGE;
public static BufferedImage ERROR_IMAGE;
static {
try {
LOADING_IMAGE = ImageIO.read(JMapViewer.class.getResourceAsStream("images/hourglass.png"));
ERROR_IMAGE = ImageIO.read(JMapViewer.class.getResourceAsStream("images/error.png"));
} catch (Exception e1) {
LOADING_IMAGE = null;
ERROR_IMAGE = null;
}
}