POSITION NODE NODE_POSITION POSITION x-coord y-coord POSITION nodename x-coord y-coord

Specifies where to place the node on the map. Coordinates are in pixel units, with the origin at the top-left of the map.

Optionally, you can also specify another node that the coordinates are relative to. This allows you to have 'sub-nodes' that follow a master node around as you alter the map. Relative nodes can be relative to other relative nodes, as long as the node at the end of the chain is not relatively positioned!

Example of a 'sub-node', that will be 20 pixels above the main node, wherever that gets moved to. It is used to show additional information about the main node. NODE main_node POSITION 200 320 LABEL MAIN NODE sub_node POSITION main_node 0 -20 LABEL {nodes:main_node:invalue} Add relative position from other nodes.