Changeset 29266 in osm for applications/editors/josm/plugins/smed2/src/panels
- Timestamp:
- 2013-02-19T18:02:02+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/panels/ShowFrame.java
r29198 r29266 14 14 import seamap.Renderer; 15 15 import seamap.SeaMap; 16 import seamap.SeaMap.Coord; 17 import seamap.SeaMap.Feature; 16 import seamap.SeaMap.*; 18 17 19 18 public class ShowFrame extends JFrame implements MapHelper { … … 33 32 showMap = new SeaMap(); 34 33 showMap.nodes = map.nodes; 35 showMap. ways = map.ways;36 showMap. mpolys = map.mpolys;34 showMap.edges = map.edges; 35 showMap.areas = map.areas; 37 36 showMap.index = map.index; 38 37 if (feature != null) { … … 44 43 45 44 @Override 46 public Point2D getPoint( Coordcoord) {45 public Point2D getPoint(Snode coord) { 47 46 return new Point2D.Double(150, 150); 48 47 }
Note:
See TracChangeset
for help on using the changeset viewer.