Changeset 31028 in osm for applications/editors/josm/plugins/seachart/src/render/Rules.java
- Timestamp:
- 2015-02-20T01:43:42+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r31027 r31028 282 282 switch (feature.type) { 283 283 case BUAARE: 284 Renderer.lineVector(feature, new LineStyle(new Color(0x 40000000, true)));284 Renderer.lineVector(feature, new LineStyle(new Color(0x20000000, true))); 285 285 break; 286 286 case COALNE: … … 289 289 case DEPARE: 290 290 Double depmax = 0.0; 291 if (((depmax = (Double) getAttVal(feature, feature.type, 0, Att.DRVAL2)) != null) && (depmax <= 0.0)) {291 if (((depmax = (Double) getAttVal(feature, Obj.DEPARE, 0, Att.DRVAL2)) != null) && (depmax <= 0.0)) { 292 292 Renderer.lineVector(feature, new LineStyle(Gdries)); 293 293 }
Note:
See TracChangeset
for help on using the changeset viewer.