Changeset 34955 in osm for applications/editors
- Timestamp:
- 2019-03-31T08:35:09+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r34906 r34955 1067 1067 break; 1068 1068 case MOR_BUOY: 1069 BoySHP shape = (BoySHP) getAttEnum(feature.type, Att.BOYSHP); 1070 if (shape == BoySHP.BOY_UNKN) { 1071 shape = BoySHP.BOY_SPHR; 1072 } 1073 Renderer.symbol(Buoys.Shapes.get(shape), getScheme(feature.type)); 1074 Renderer.symbol(Topmarks.TopMooring, Topmarks.BuoyDeltas.get(shape)); 1069 if (Renderer.zoom >= 17) { 1070 BoySHP shape = (BoySHP) getAttEnum(feature.type, Att.BOYSHP); 1071 if (shape == BoySHP.BOY_UNKN) { 1072 shape = BoySHP.BOY_SPHR; 1073 } 1074 Renderer.symbol(Buoys.Shapes.get(shape), getScheme(feature.type)); 1075 Renderer.symbol(Topmarks.TopMooring, Topmarks.BuoyDeltas.get(shape)); 1076 } 1075 1077 break; 1076 1078 default:
Note:
See TracChangeset
for help on using the changeset viewer.