Package aimax.osm.data.impl

Examples of aimax.osm.data.impl.DefaultMapWay


    @Override
    public void addWay(long id, String name, List<EntityAttribute> atts,
        List<Long> wayNodeIds) {
      if (counter == 0) {
        DefaultMapWay way = new DefaultMapWay(id);
        way.setAttributes(atts);
        if (attFilter.classify(way) != null) {
          super.addWay(id, name, atts, wayNodeIds);
        }
      }
    }
View Full Code Here

TOP

Related Classes of aimax.osm.data.impl.DefaultMapWay

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.