Ignore:
Timestamp:
2013-02-19T18:02:02+01:00 (12 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/panels/ShowFrame.java

    r29198 r29266  
    1414import seamap.Renderer;
    1515import seamap.SeaMap;
    16 import seamap.SeaMap.Coord;
    17 import seamap.SeaMap.Feature;
     16import seamap.SeaMap.*;
    1817
    1918public class ShowFrame extends JFrame implements MapHelper {
     
    3332                showMap = new SeaMap();
    3433                showMap.nodes = map.nodes;
    35                 showMap.ways = map.ways;
    36                 showMap.mpolys = map.mpolys;
     34                showMap.edges = map.edges;
     35                showMap.areas = map.areas;
    3736                showMap.index = map.index;
    3837                if (feature != null) {
     
    4443       
    4544        @Override
    46         public Point2D getPoint(Coord coord) {
     45        public Point2D getPoint(Snode coord) {
    4746                return new Point2D.Double(150, 150);
    4847        }
Note: See TracChangeset for help on using the changeset viewer.