Changeset 33177 in osm for applications/editors/josm/plugins/seachart/src/render
- Timestamp:
- 2017-03-06T02:38:04+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r32907 r33177 1205 1205 private static void obstructions() { 1206 1206 if ((Renderer.zoom >= 12) && (feature.type == Obj.OBSTRN)) { 1207 switch ((CatOBS) getAttEnum(feature.type, Att.CATOBS)) { 1208 case OBS_BOOM: 1207 if (getAttEnum(feature.type, Att.CATOBS) == CatOBS.OBS_BOOM) { 1209 1208 Renderer.lineVector(new LineStyle(Color.black, 5, new float[] {20, 20}, null)); 1210 1209 if (Renderer.zoom >= 15) { 1211 1210 Renderer.lineText("Boom", new Font("Arial", Font.PLAIN, 80), Color.black, -20); 1212 1211 } 1213 default:1214 break;1215 1212 } 1216 1213 }
Note:
See TracChangeset
for help on using the changeset viewer.