Changeset 30769 in osm for applications/viewer/jmapviewer


Ignore:
Timestamp:
2014-10-28T07:14:02+01:00 (10 years ago)
Author:
the111
Message:

Fix #josm10674 - ConcurrentModificationException when adding multiple marker

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/JMapViewer.java

    r30759 r30769  
    1010import java.awt.event.ActionListener;
    1111import java.awt.event.MouseEvent;
     12import java.util.Collections;
    1213import java.util.LinkedList;
    1314import java.util.List;
     
    8586        VERTICAL
    8687    }
     88
    8789    protected ZOOM_BUTTON_STYLE zoomButtonStyle;
    8890
     
    109111        tileSource = new OsmTileSource.Mapnik();
    110112        tileController = new TileController(tileSource, tileCache, this);
    111         mapMarkerList = new LinkedList<>();
    112         mapPolygonList = new LinkedList<>();
    113         mapRectangleList = new LinkedList<>();
     113        mapMarkerList = Collections.synchronizedList(new LinkedList<MapMarker>());
     114        mapPolygonList = Collections.synchronizedList(new LinkedList<MapPolygon>());
     115        mapRectangleList = Collections.synchronizedList(new LinkedList<MapRectangle>());
    114116        mapMarkersVisible = true;
    115117        mapRectanglesVisible = true;
     
    264266
    265267        if (markers) {
    266             for (MapMarker marker : mapMarkerList) {
    267                 if(marker.isVisible()){
    268                     int x = tileSource.LonToX(marker.getLon(), mapZoomMax);
    269                     int y = tileSource.LatToY(marker.getLat(), mapZoomMax);
    270                     x_max = Math.max(x_max, x);
    271                     y_max = Math.max(y_max, y);
    272                     x_min = Math.min(x_min, x);
    273                     y_min = Math.min(y_min, y);
    274                 }
    275             }
    276         }
    277 
    278         if (rectangles) {
    279             for (MapRectangle rectangle : mapRectangleList) {
    280                 if(rectangle.isVisible()){
    281                     x_max = Math.max(x_max, tileSource.LonToX(rectangle.getBottomRight().getLon(), mapZoomMax));
    282                     y_max = Math.max(y_max, tileSource.LatToY(rectangle.getTopLeft().getLat(), mapZoomMax));
    283                     x_min = Math.min(x_min, tileSource.LonToX(rectangle.getTopLeft().getLon(), mapZoomMax));
    284                     y_min = Math.min(y_min, tileSource.LatToY(rectangle.getBottomRight().getLat(), mapZoomMax));
    285                 }
    286             }
    287         }
    288 
    289         if (polygons) {
    290             for (MapPolygon polygon : mapPolygonList) {
    291                 if(polygon.isVisible()){
    292                     for (ICoordinate c : polygon.getPoints()) {
    293                         int x = tileSource.LonToX(c.getLon(), mapZoomMax);
    294                         int y = tileSource.LatToY(c.getLat(), mapZoomMax);
     268            synchronized (mapMarkerList) {
     269                for (MapMarker marker : mapMarkerList) {
     270                    if (marker.isVisible()) {
     271                        int x = tileSource.LonToX(marker.getLon(), mapZoomMax);
     272                        int y = tileSource.LatToY(marker.getLat(), mapZoomMax);
    295273                        x_max = Math.max(x_max, x);
    296274                        y_max = Math.max(y_max, y);
    297275                        x_min = Math.min(x_min, x);
    298276                        y_min = Math.min(y_min, y);
     277                    }
     278                }
     279            }
     280        }
     281
     282        if (rectangles) {
     283            synchronized (mapRectangleList) {
     284                for (MapRectangle rectangle : mapRectangleList) {
     285                    if (rectangle.isVisible()) {
     286                        x_max = Math.max(x_max, tileSource.LonToX(rectangle.getBottomRight().getLon(), mapZoomMax));
     287                        y_max = Math.max(y_max, tileSource.LatToY(rectangle.getTopLeft().getLat(), mapZoomMax));
     288                        x_min = Math.min(x_min, tileSource.LonToX(rectangle.getTopLeft().getLon(), mapZoomMax));
     289                        y_min = Math.min(y_min, tileSource.LatToY(rectangle.getBottomRight().getLat(), mapZoomMax));
     290                    }
     291                }
     292            }
     293        }
     294
     295        if (polygons) {
     296            synchronized (mapPolygonList) {
     297                for (MapPolygon polygon : mapPolygonList) {
     298                    if (polygon.isVisible()) {
     299                        for (ICoordinate c : polygon.getPoints()) {
     300                            int x = tileSource.LonToX(c.getLon(), mapZoomMax);
     301                            int y = tileSource.LatToY(c.getLat(), mapZoomMax);
     302                            x_max = Math.max(x_max, x);
     303                            y_max = Math.max(y_max, y);
     304                            x_min = Math.min(x_min, x);
     305                            y_min = Math.min(y_min, y);
     306                        }
    299307                    }
    300308                }
     
    320328    }
    321329
    322 
    323330    /**
    324331     * Sets the displayed map pane and zoom level so that all map markers are
     
    430437     */
    431438    public Integer getLatOffset(double lat, double offset, boolean checkOutside) {
    432         int y = tileSource.LatToY(lat+offset, zoom);
     439        int y = tileSource.LatToY(lat + offset, zoom);
    433440        y -= center.y - getHeight() / 2;
    434441        if (checkOutside) {
     
    457464     */
    458465    public Integer getRadius(MapMarker marker, Point p) {
    459         if(marker.getMarkerStyle() == MapMarker.STYLE.FIXED)
    460             return (int)marker.getRadius();
    461         else if(p!=null){
     466        if (marker.getMarkerStyle() == MapMarker.STYLE.FIXED)
     467            return (int) marker.getRadius();
     468        else if (p != null) {
    462469            Integer radius = getLatOffset(marker.getLat(), marker.getRadius(), false);
    463             radius = radius==null?null:p.y-radius.intValue();
     470            radius = radius == null ? null : p.y - radius.intValue();
    464471            return radius;
    465         }else return null;
     472        } else
     473            return null;
    466474    }
    467475
     
    500508     */
    501509    public double getMeterPerPixel() {
    502         Point origin=new Point(5,5);
    503         Point center=new Point(getWidth()/2, getHeight()/2);
    504 
    505         double pDistance=center.distance(origin);
    506 
    507         Coordinate originCoord=getPosition(origin);
    508         Coordinate centerCoord=getPosition(center);
     510        Point origin = new Point(5, 5);
     511        Point center = new Point(getWidth() / 2, getHeight() / 2);
     512
     513        double pDistance = center.distance(origin);
     514
     515        Coordinate originCoord = getPosition(origin);
     516        Coordinate centerCoord = getPosition(center);
    509517
    510518        double mDistance = tileSource.getDistance(originCoord.getLat(), originCoord.getLon(),
    511519                centerCoord.getLat(), centerCoord.getLon());
    512520
    513         return mDistance/pDistance;
     521        return mDistance / pDistance;
    514522    }
    515523
     
    614622
    615623        if (mapPolygonsVisible && mapPolygonList != null) {
    616             for (MapPolygon polygon : mapPolygonList) {
    617                 if(polygon.isVisible()) paintPolygon(g, polygon);
     624            synchronized (mapPolygonList) {
     625                for (MapPolygon polygon : mapPolygonList) {
     626                    if (polygon.isVisible())
     627                        paintPolygon(g, polygon);
     628                }
    618629            }
    619630        }
    620631
    621632        if (mapRectanglesVisible && mapRectangleList != null) {
    622             for (MapRectangle rectangle : mapRectangleList) {
    623                 if(rectangle.isVisible()) paintRectangle(g, rectangle);
     633            synchronized (mapRectangleList) {
     634                for (MapRectangle rectangle : mapRectangleList) {
     635                    if (rectangle.isVisible())
     636                        paintRectangle(g, rectangle);
     637                }
    624638            }
    625639        }
    626640
    627641        if (mapMarkersVisible && mapMarkerList != null) {
    628             for (MapMarker marker : mapMarkerList) {
    629                 if(marker.isVisible())paintMarker(g, marker);
     642            synchronized (mapMarkerList) {
     643                for (MapMarker marker : mapMarkerList) {
     644                    if (marker.isVisible())
     645                        paintMarker(g, marker);
     646                }
    630647            }
    631648        }
     
    638655     */
    639656    protected void paintMarker(Graphics g, MapMarker marker) {
    640         Point p = getMapPosition(marker.getLat(), marker.getLon(), marker.getMarkerStyle()==MapMarker.STYLE.FIXED);
     657        Point p = getMapPosition(marker.getLat(), marker.getLon(), marker.getMarkerStyle() == MapMarker.STYLE.FIXED);
    641658        Integer radius = getRadius(marker, p);
    642659        if (scrollWrapEnabled) {
     
    10261043        }
    10271044        switch (style) {
    1028             case HORIZONTAL:
    1029                 zoomSlider.setBounds(10, 10, 30, 150);
    1030                 zoomInButton.setBounds(4, 155, 18, 18);
    1031                 zoomOutButton.setBounds(26, 155, 18, 18);
    1032                 break;
    1033             case VERTICAL:
    1034                 zoomSlider.setBounds(10, 27, 30, 150);
    1035                 zoomInButton.setBounds(14, 8, 20, 20);
    1036                 zoomOutButton.setBounds(14, 176, 20, 20);
    1037                 break;
    1038             default:
    1039                 zoomSlider.setBounds(10, 10, 30, 150);
    1040                 zoomInButton.setBounds(4, 155, 18, 18);
    1041                 zoomOutButton.setBounds(26, 155, 18, 18);
    1042                 break;
     1045        case HORIZONTAL:
     1046            zoomSlider.setBounds(10, 10, 30, 150);
     1047            zoomInButton.setBounds(4, 155, 18, 18);
     1048            zoomOutButton.setBounds(26, 155, 18, 18);
     1049            break;
     1050        case VERTICAL:
     1051            zoomSlider.setBounds(10, 27, 30, 150);
     1052            zoomInButton.setBounds(14, 8, 20, 20);
     1053            zoomOutButton.setBounds(14, 176, 20, 20);
     1054            break;
     1055        default:
     1056            zoomSlider.setBounds(10, 10, 30, 150);
     1057            zoomInButton.setBounds(4, 155, 18, 18);
     1058            zoomOutButton.setBounds(26, 155, 18, 18);
     1059            break;
    10431060        }
    10441061        repaint();
     
    10881105    void fireJMVEvent(JMVCommandEvent evt) {
    10891106        Object[] listeners = evtListenerList.getListenerList();
    1090         for (int i=0; i<listeners.length; i+=2) {
    1091             if (listeners[i]==JMapViewerEventListener.class) {
    1092                 ((JMapViewerEventListener)listeners[i+1]).processCommand(evt);
     1107        for (int i = 0; i < listeners.length; i += 2) {
     1108            if (listeners[i] == JMapViewerEventListener.class) {
     1109                ((JMapViewerEventListener) listeners[i + 1]).processCommand(evt);
    10931110            }
    10941111        }
Note: See TracChangeset for help on using the changeset viewer.