我为Github on JXMapViewers‘通过为每个路径点创建mouseClicked
事件来添加一些示例代码的功能。最终,每个路径点将显示独特的信息,如它的坐标。
对于当前的实现,只有最后一个添加到Set<MyWaypoint>
的元素在控制台上显示如下内容。
mapViewer鼠标单击已检测到在路径点的10个像素内。
对于检测集合中其他路径点的mouseClicked事件,有什么想法吗?
public class Sample4 {
private static JXMapViewer mapViewer;
/**
* @param args the program args (ignored)
*/
public static void main(String[] args) {
// Create a TileFactoryInfo for Virtual Earth
TileFactoryInfo info = new VirtualEarthTileFactoryInfo(VirtualEarthTileFactoryInfo.MAP);
DefaultTileFactory tileFactory = new DefaultTileFactory(info);
tileFactory.setThreadPoolSize(8);
// Setup local file cache
File cacheDir = new File(System.getProperty("user.home") + File.separator + ".jxmapviewer2");
LocalResponseCache.installResponseCache(info.getBaseURL(), cacheDir, false);
// Setup JXMapViewer
mapViewer = new JXMapViewer();
mapViewer.setTileFactory(tileFactory);
GeoPosition frankfurt = new GeoPosition(50, 7, 0, 8, 41, 0);
GeoPosition wiesbaden = new GeoPosition(50, 5, 0, 8, 14, 0);
GeoPosition mainz = new GeoPosition(50, 0, 0, 8, 16, 0);
GeoPosition darmstadt = new GeoPosition(49, 52, 0, 8, 39, 0);
GeoPosition offenbach = new GeoPosition(50, 6, 0, 8, 46, 0);
// Set the focus
mapViewer.setZoom(10);
mapViewer.setAddressLocation(frankfurt);
// Add interactions
MouseInputListener mia = new PanMouseInputListener(mapViewer);
mapViewer.addMouseListener(mia);
mapViewer.addMouseMotionListener(mia);
mapViewer.addMouseListener(new CenterMapListener(mapViewer));
mapViewer.addMouseWheelListener(new ZoomMouseWheelListenerCenter(mapViewer));
mapViewer.addKeyListener(new PanKeyListener(mapViewer));
// Create a track from the geo-positions
final List<GeoPosition> track = Arrays.asList(frankfurt, wiesbaden, mainz, darmstadt, offenbach);
RoutePainter routePainter = new RoutePainter(track);
// Create waypoints from the geo-positions
Set<MyWaypoint> waypoints = new HashSet<MyWaypoint>(Arrays.asList(
new MyWaypoint("1", Color.ORANGE, frankfurt),
new MyWaypoint("2", Color.CYAN, wiesbaden),
new MyWaypoint("3", Color.GRAY, mainz),
new MyWaypoint("4", Color.MAGENTA, darmstadt),
new MyWaypoint("5", Color.GREEN, offenbach)));
// Create a waypoint painter that takes all the waypoints
WaypointPainter<MyWaypoint> waypointPainter = new WaypointPainter<MyWaypoint>();
waypointPainter.setWaypoints(waypoints);
waypointPainter.setRenderer(new FancyWaypointRenderer());
// Create a compound painter that uses both the route-painter and the waypoint-painter
List<Painter<JXMapViewer>> painters = new ArrayList<Painter<JXMapViewer>>();
painters.add(routePainter);
painters.add(waypointPainter);
CompoundPainter<JXMapViewer> painter = new CompoundPainter<JXMapViewer>(painters);
mapViewer.setOverlayPainter(painter);
mapViewer.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent me) {
Point2D gp_pt = null;
for (GeoPosition waypoint : track) {
//convert to world bitmap
gp_pt = mapViewer.getTileFactory().geoToPixel(waypoint, mapViewer.getZoom());
}
//convert to screen
Rectangle rect = mapViewer.getViewportBounds();
Point converted_gp_pt = new Point((int) gp_pt.getX() - rect.x,
(int) gp_pt.getY() - rect.y);
//check if near the mouse
if (converted_gp_pt.distance(me.getPoint()) < 10) {
System.out.println("mapViewer mouse click has been detected within 10 pixels of a waypoint");
} else {
System.out.println("mapViewer mouse click has been dected but NOT with 10 pixels of a waypoint ");
}
}
}); // end MouseAdapter
// Display the viewer in a JFrame
JFrame frame = new JFrame("JXMapviewer2 Example 4");
frame.getContentPane().add(mapViewer);
frame.setSize(800, 600);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public static JXMapViewer getMapViewer() {
return mapViewer;
}
}
发布于 2014-05-20 11:04:35
我认为,如果您想检查所有的路径点,您应该在for中添加“//转换为屏幕”块和"//check (如果靠近鼠标)“,即:
public void mouseClicked(MouseEvent me) {
Point2D gp_pt = null;
for (GeoPosition waypoint : track) {
//convert to world bitmap
gp_pt = mapViewer.getTileFactory().geoToPixel(waypoint, mapViewer.getZoom());
//convert to screen
Rectangle rect = mapViewer.getViewportBounds();
Point converted_gp_pt = new Point((int) gp_pt.getX() - rect.x,
(int) gp_pt.getY() - rect.y);
//check if near the mouse
if (converted_gp_pt.distance(me.getPoint()) < 10) {
System.out.println("mapViewer mouse click has been detected within 10 pixels of a waypoint");
} else {
System.out.println("mapViewer mouse click has been dected but NOT with 10 pixels of a waypoint ");
}
}
}
https://stackoverflow.com/questions/19406947
复制相似问题