Ignore:
Timestamp:
2018-01-04T11:05:03+01:00 (7 years ago)
Author:
rebeccas95
Message:

Update indoorhelper plugin to support the Simple Indoor Tagging scheme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/indoorhelper/src/model/PresetCounter.java

    r33887 r33974  
    3030 *
    3131 * @author egru
    32  *
     32 * @author rebsc
    3333 */
    3434public class PresetCounter {
     
    4949
    5050        counterList.add(new ObjectCounter(IndoorObject.CONCRETE_WALL, 0));
    51         counterList.add(new ObjectCounter(IndoorObject.DOOR, 0));
     51        counterList.add(new ObjectCounter(IndoorObject.DOOR_PRIVATE, 0));
     52        counterList.add(new ObjectCounter(IndoorObject.DOOR_PUBLIC, 0));
    5253        counterList.add(new ObjectCounter(IndoorObject.ELEVATOR, 0));
    5354        counterList.add(new ObjectCounter(IndoorObject.ENTRANCE, 0));
     55        counterList.add(new ObjectCounter(IndoorObject.ENTRANCE_EXIT_ONLY, 0));
     56        counterList.add(new ObjectCounter(IndoorObject.ACCESS_PRIVATE, 0));
     57        counterList.add(new ObjectCounter(IndoorObject.ACCESS_PUBLIC, 0));
    5458        counterList.add(new ObjectCounter(IndoorObject.GLASS_WALL, 0));
    5559        counterList.add(new ObjectCounter(IndoorObject.ROOM, 0));
    56         counterList.add(new ObjectCounter(IndoorObject.SHELL, 0));
    57         counterList.add(new ObjectCounter(IndoorObject.STAIRWAYS, 0));
    5860        counterList.add(new ObjectCounter(IndoorObject.STEPS, 0));
     61        counterList.add(new ObjectCounter(IndoorObject.CORRIDOR, 0));
    5962        counterList.add(new ObjectCounter(IndoorObject.TOILET_FEMALE, 0));
    6063        counterList.add(new ObjectCounter(IndoorObject.TOILET_MALE, 0));
     64        counterList.add(new ObjectCounter(IndoorObject.ZONE, 0));
     65        counterList.add(new ObjectCounter(IndoorObject.BENCH, 0));
    6166    }
    6267
     
    134139    }
    135140
     141
     142
     143/**
     144*
     145*
     146*
     147*
     148*
     149*
     150*
     151*
     152*
     153*/
    136154}
Note: See TracChangeset for help on using the changeset viewer.