Examples of MapNode


Examples of org.osm2world.core.map_data.data.MapNode

   
    OSMNode osmNode = new OSMNode(NaN, NaN,
        COASTLINE_NODE_TAGS, nodeId + 1);
    osmData.getNodes().add(osmNode);
       
    MapNode mapNode = new MapNode(pos, osmNode);
    mapNodes.add(mapNode);
    nodeMap.put(osmNode, mapNode);
   
    return mapNode;
   
View Full Code Here

Examples of org.osm2world.core.map_data.data.MapNode

    final Map<OSMNode, MapNode> nodeMap = new HashMap<OSMNode, MapNode>();

    for (OSMNode node : osmData.getNodes()) {
      VectorXZ nodePos = mapProjection.calcPos(node.lat, node.lon);
      MapNode mapNode = new MapNode(nodePos, node);
      mapNodes.add(mapNode);
      nodeMap.put(node, mapNode);
    }
   
    /* create areas ... */
 
View Full Code Here

Examples of transientlibs.objects.general.MapNode

            lastLandmark().doorDeltaY = analyst.getNextNumber();
           
        }
       
        if (nowStr.equals("child")) {
            MapNode childLandmark = new MapNode();
            childLandmark.ID = analyst.getBinding(Binding.landmarkBinding);
            childLandmark.MapCoords.x = analyst.getNextNumber();
            childLandmark.MapCoords.y = analyst.getNextNumber();
           
            lastLandmark().childLandmarks.add(childLandmark);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.