Package aimax.osm.data.impl

Examples of aimax.osm.data.impl.DefaultMapNode


    @Override
    public void addNode(long id, String name, List<EntityAttribute> atts,
        float lat, float lon) {
      if (counter == 0) {
        DefaultMapNode node = new DefaultMapNode(id);
        node.setAttributes(atts);
        if (attFilter.classify(node) != null)
          super.addNode(id, name, atts, lat, lon);
      } else if (counter == 1 && super.isNodeReferenced(id))
        super.addNode(id, name, atts, lat, lon);
    }
View Full Code Here

TOP

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

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.