Changeset 29202 in osm for applications/editors/josm/plugins/smed2/src/seamap/SeaMap.java
- Timestamp:
- 2013-01-17T12:08:28+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/seamap/SeaMap.java
r29200 r29202 120 120 private Feature feature; 121 121 private ArrayList<Long> list; 122 private long mpid;123 122 124 123 public SeaMap() { … … 154 153 list = new ArrayList<Long>(); 155 154 mpolys.put(id, list); 156 mpid = id; 155 feature = new Feature(); 156 feature.refs = id; 157 feature.flag = Fflag.AREA; 157 158 } 158 159 … … 164 165 if (outer) { 165 166 list.add(0, way); 166 outers.put(way, mpid);167 outers.put(way, feature.refs); 167 168 } else { 168 169 list.add(way);
Note:
See TracChangeset
for help on using the changeset viewer.