1

我通过为每个航点创建事件来为JXMapViewers 上的Github上的一些示例代码添加功能。mouseClicked最终,每个航路点都会显示独特的信息,例如它的坐标。

在我当前的实现中,只有添加到控制台的最后一个元素Set<MyWaypoint>显示以下内容。

在航点的 10 像素内检测到 mapViewer 鼠标点击

关于为 Set 中的其他航点检测 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;
    }
}
4

1 回答 1

1

我认为如果你想检查所有航点,你应该在 for 中添加“//转换为屏幕”块和“//检查是否靠近鼠标”,即:

       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 ");
                }
            }

        }
于 2014-05-20T11:04:35.570 回答