JMapViewerToolTip
のカスタムMapMarker
にa を追加しようとしています。しかし、検索を繰り返しても、これを解決するのに役立ちません。
カスタムMapMarkerは次のとおりです。
public class MapMarkerUnit extends MapObjectImpl implements MapMarker
Paint Methodオーバーライドは
public void paint(Graphics g, Point position, int radio) {
String filename = "marker.png";
//System.out.print(filename);
BufferedImage x = null;
try {
x = ImageIO.read(getClass().getResource(filename));
} catch (IOException ex) {
Logger.getLogger(MapMarkerUnit.class.getName()).log(Level.SEVERE, null, ex);
}
g.drawImage(x, position.x-16, position.y-37,null);
//if(getLayer()==null||getLayer().isVisibleTexts()) paintText(g, new Point(position.x+20,position.y));
}
ご協力いただきありがとうございます。