コード例 #1
0
 /**
  * Is this a multi-level node that should be decomposed to multiple coincident nodes? Currently
  * returns true only for elevators.
  *
  * @param node
  * @return whether the node is multi-level
  * @author mattwigway
  */
 private boolean isMultiLevelNode(OSMNode node) {
   return node.hasTag("highway") && "elevator".equals(node.getTag("highway"));
 }