Changeset 33947 in osm for applications/editors/josm/plugins/seachart/src/render
- Timestamp:
- 2017-12-09T16:13:19+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r33943 r33947 558 558 if (feature.objs.containsKey(Obj.TOPMAR)) { 559 559 AttMap topmap = feature.objs.get(Obj.TOPMAR).get(0); 560 if (topmap.containsKey(Att.STATUS) && (testAttribute(Obj.TOPMAR, Att.STATUS, StsSTS.STS_ILLD))) { 561 Renderer.symbol(Beacons.Floodlight); 562 } 560 563 if (topmap.containsKey(Att.TOPSHP)) { 561 564 if (topmap.containsKey(Att.ORIENT)) { … … 566 569 } else if (feature.objs.containsKey(Obj.DAYMAR)) { 567 570 AttMap topmap = feature.objs.get(Obj.DAYMAR).get(0); 571 if (topmap.containsKey(Att.STATUS) && (testAttribute(Obj.DAYMAR, Att.STATUS, StsSTS.STS_ILLD))) { 572 Renderer.symbol(Beacons.Floodlight); 573 } 568 574 if (topmap.containsKey(Att.TOPSHP)) { 569 575 if (topmap.containsKey(Att.ORIENT)) {
Note:
See TracChangeset
for help on using the changeset viewer.