|Previous| |Contents| |Next|

Dipsplaying overlaying maps in offset

Assume, there are two maps m1 and m2 (m1 is above m2). Normally, therion displays m1 overlying m2.

To display map m2 in offset, you need to create a map containing m2 and specify offset and preview type for m2 in this map. Example:

map m12
  m1
  break
  m2 [0 8 m] below
endmap

After selection of m12 in configuration file, you receive:

Joining arrows are created from map-connection points specified in scraps that are moved. Otherwise these points are ignored.

If the situation is more complicated, and there is m3 below m2,

you need to create more complicated map structure to handle this.

map m23
  m2
  break
  m3 [-8 0 m] below
endmap

map m123
  m1
  break
  m23 [0 8 m] below
endmap

Then m123 looks like this:


|Previous| |Contents| |Next|