Changeset 16032 in osm for applications


Ignore:
Timestamp:
2009-06-21T12:38:54+02:00 (15 years ago)
Author:
szeller
Message:

added Coordinate, the interface MapSquare. MapSquares will be painted before MapSquares to avoid overlapping of them

Location:
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
Files:
2 added
2 edited

Legend:

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

    r11783 r16032  
    1010import java.awt.event.ActionEvent;
    1111import java.awt.event.ActionListener;
    12 import java.awt.geom.Point2D;
    1312import java.util.LinkedList;
    1413import java.util.List;
     
    2322import org.openstreetmap.gui.jmapviewer.JobDispatcher.JobThread;
    2423import org.openstreetmap.gui.jmapviewer.interfaces.MapMarker;
     24import org.openstreetmap.gui.jmapviewer.interfaces.MapSquare;
    2525import org.openstreetmap.gui.jmapviewer.interfaces.TileCache;
    2626import org.openstreetmap.gui.jmapviewer.interfaces.TileLoader;
     
    5353
    5454    protected List<MapMarker> mapMarkerList;
     55    protected List<MapSquare> mapSquareList;
     56
    5557    protected boolean mapMarkersVisible;
     58    protected boolean mapSquaresVisible;
     59
    5660    protected boolean tileGridVisible;
    5761
     
    9296        jobDispatcher = JobDispatcher.getInstance();
    9397        mapMarkerList = new LinkedList<MapMarker>();
     98        mapSquareList = new LinkedList<MapSquare>();
    9499        mapMarkersVisible = true;
     100        mapSquaresVisible = true;
    95101        tileGridVisible = false;
    96102        setLayout(null);
     
    253259    }
    254260
    255     public Point2D.Double getPosition() {
     261    public Coordinate getPosition() {
    256262        double lon = OsmMercator.XToLon(center.x, zoom);
    257263        double lat = OsmMercator.YToLat(center.y, zoom);
    258         return new Point2D.Double(lat, lon);
    259     }
    260 
    261     public Point2D.Double getPosition(Point mapPoint) {
     264        return new Coordinate(lat, lon);
     265    }
     266
     267    public Coordinate getPosition(Point mapPoint) {
    262268        int x = center.x + mapPoint.x - getWidth() / 2;
    263269        int y = center.y + mapPoint.y - getHeight() / 2;
    264270        double lon = OsmMercator.XToLon(x, zoom);
    265271        double lat = OsmMercator.YToLat(y, zoom);
    266         return new Point2D.Double(lat, lon);
     272        return new Coordinate(lat, lon);
     273    }
     274
     275    public Coordinate getPosition(int mapPointX, int mapPointY) {
     276        int x = center.x + mapPointX - getWidth() / 2;
     277        int y = center.y + mapPointY - getHeight() / 2;
     278        double lon = OsmMercator.XToLon(x, zoom);
     279        double lat = OsmMercator.YToLat(y, zoom);
     280        return new Coordinate(lat, lon);
    267281    }
    268282
     
    357371
    358372        // g.drawString("Tiles in cache: " + tileCache.getTileCount(), 50, 20);
    359         if (!mapMarkersVisible || mapMarkerList == null)
    360             return;
    361         for (MapMarker marker : mapMarkerList) {
    362             Point p = getMapPosition(marker.getLat(), marker.getLon());
    363             // System.out.println(marker + " -> " + p);
    364             if (p != null)
    365                 marker.paint(g, p);
     373
     374        if (mapSquaresVisible && mapSquareList != null) {
     375            for (MapSquare square : mapSquareList) {
     376                Coordinate topLeft = square.getTopLeft();
     377                Coordinate bottomRight = square.getBottomRight();
     378                if (topLeft != null && bottomRight != null) {
     379                    Point pTopLeft = getMapPosition(topLeft.getLat(), topLeft.getLon());
     380                    Point pBottomRight = getMapPosition(bottomRight.getLat(), bottomRight.getLon());
     381                    if (pTopLeft != null && pBottomRight != null) {
     382                        square.paint(g, pTopLeft, pBottomRight);
     383                    }
     384                }
     385            }
     386        }
     387
     388        if (mapMarkersVisible && mapMarkerList != null) {
     389            for (MapMarker marker : mapMarkerList) {
     390                Point p = getMapPosition(marker.getLat(), marker.getLon());
     391                if (p != null) {
     392                    marker.paint(g, p);
     393                }
     394            }
    366395        }
    367396    }
     
    419448        if (zoom > tileSource.getMaxZoom() || zoom < tileSource.getMinZoom() || zoom == this.zoom)
    420449            return;
    421         Point2D.Double zoomPos = getPosition(mapPoint);
     450        Coordinate zoomPos = getPosition(mapPoint);
    422451        jobDispatcher.cancelOutstandingJobs(); // Clearing outstanding load
    423452        // requests
    424         setDisplayPositionByLatLon(mapPoint, zoomPos.x, zoomPos.y, zoom);
     453        setDisplayPositionByLatLon(mapPoint, zoomPos.getLat(), zoomPos.getLon(), zoom);
    425454    }
    426455
     
    505534    }
    506535
     536    public void setMapSquareList(List<MapSquare> mapSquareList) {
     537        this.mapSquareList = mapSquareList;
     538        repaint();
     539    }
     540
     541    public List<MapSquare> getMapSquareList() {
     542        return mapSquareList;
     543    }
     544
    507545    public void addMapMarker(MapMarker marker) {
    508546        mapMarkerList.add(marker);
     547        repaint();
     548    }
     549
     550    public void addMapSquare(MapSquare square) {
     551        mapSquareList.add(square);
     552        repaint();
     553    }
     554
     555    public void removeMapSquare(MapSquare square) {
     556        mapSquareList.remove(square);
     557        repaint();
    509558    }
    510559
     
    557606    }
    558607
     608    public boolean isMapSquaresVisible() {
     609        return mapSquaresVisible;
     610    }
     611
     612    /**
     613     * Enables or disables painting of the {@link MapSquare}
     614     *
     615     * @param mapMarkersVisible
     616     * @see #addMapSquare(MapSquare)
     617     * @see #getMapSquareList()
     618     */
     619    public void setMapSquaresVisible(boolean mapSquaresVisible) {
     620        this.mapSquaresVisible = mapSquaresVisible;
     621        repaint();
     622    }
    559623}
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/interfaces/MapMarker.java

    r14053 r16032  
    99
    1010/**
    11  * Interface to be implemented by all elements that can be displayed on the map.
     11 * Interface to be implemented by all one dimensional elements that can be displayed on the map.
    1212 *
    1313 * @author Jan Peter Stotz
Note: See TracChangeset for help on using the changeset viewer.