Changeset 35459 in osm for applications
- Timestamp:
- 2020-05-18T07:38:31+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r35429 r35459 40 40 import s57.S57val.CatOPA; 41 41 import s57.S57val.CatPIL; 42 import s57.S57val.CatPIP; 42 43 import s57.S57val.CatREA; 43 44 import s57.S57val.CatROD; … … 1231 1232 if ((Renderer.zoom >= 16) && (feature.geom.length < 2)) { 1232 1233 if (feature.type == Obj.PIPSOL) { 1233 Renderer.lineSymbols(Areas.Pipeline, 0.33, null, null, 0, Symbols.Mline); 1234 switch ((CatPIP) getAttEnum(feature.type, Att.CATPIP)) { 1235 case PIP_ITAK: 1236 case PIP_OFAL: 1237 case PIP_SEWR: 1238 Renderer.lineSymbols(Areas.Pipeline, 0.33, null, null, 0, Color.black); 1239 break; 1240 default: 1241 Renderer.lineSymbols(Areas.Pipeline, 0.33, null, null, 0, Symbols.Mline); 1242 } 1234 1243 } else if (feature.type == Obj.PIPOHD) { 1235 1244 Renderer.lineVector(new LineStyle(Color.black, 8));
Note:
See TracChangeset
for help on using the changeset viewer.