Changeset 30184 in osm for applications/editors/josm


Ignore:
Timestamp:
2014-01-05T14:50:22+01:00 (11 years ago)
Author:
malcolmh
Message:

add dependent apps

Location:
applications/editors/josm/plugins/smed2
Files:
20 added
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/render/Renderer.java

    r30157 r30184  
    198198                switch (feature.flag) {
    199199                case LINE:
    200                         Edge edge = map.edges.get(feature.refs);
     200                        Edge edge = map.edges.get(feature.id);
    201201                        area = map.new Area();
    202202                        area.add(map.new Bound(map.new Side(edge, true), true));
    203203                        break;
    204204                case AREA:
    205                         area = map.areas.get(feature.refs);
     205                        area = map.areas.get(feature.id);
    206206                        break;
    207207                default:
     
    288288                switch (feature.flag) {
    289289                case LINE:
    290                         EdgeIterator eit = map.new EdgeIterator(map.edges.get(feature.refs), true);
     290                        EdgeIterator eit = map.new EdgeIterator(map.edges.get(feature.id), true);
    291291                        point = context.getPoint(eit.next());
    292292                        p.moveTo(point.getX(), point.getY());
     
    297297                        break;
    298298                case AREA:
    299                         for (Bound bound : map.areas.get(feature.refs)) {
     299                        for (Bound bound : map.areas.get(feature.id)) {
    300300                                BoundIterator bit = map.new BoundIterator(bound);
    301301                                point = context.getPoint(bit.next());
     
    373373                        break;
    374374                case AREA:
    375                         for (Bound bound : map.areas.get(feature.refs)) {
     375                        for (Bound bound : map.areas.get(feature.id)) {
    376376                                BoundIterator bit = map.new BoundIterator(bound);
    377377                                point = context.getPoint(bit.next());
     
    506506                switch (feature.flag) {
    507507                case LINE:
    508                         Edge edge = map.edges.get(feature.refs);
     508                        Edge edge = map.edges.get(feature.id);
    509509                        area = map.new Area();
    510510                        area.add(map.new Bound(map.new Side(edge, true), true));
    511511                        break;
    512512                case AREA:
    513                         area = map.areas.get(feature.refs);
     513                        area = map.areas.get(feature.id);
    514514                        break;
    515515                default:
Note: See TracChangeset for help on using the changeset viewer.