This is an old revision of the document!


Map Presets

A number of map presents may be defined, grouping the following commands:

  • Map selection
  • Visual Centerpoint does not affect radar range
  • Zoom level

Format subject to change

Root Elementpresets
Elementpreset
AttributeFormatRemarks
idstringUnique Preset ID
namestringPreset Display Name
groupstringPreset Group
center_pointLat/LonVisual Centrepoint
rangefloatVisual range from centrepoint to edge of screen, expressed in Nautical Miles
toolbarbooleanAdd the preset to the toolbar
cleanbooleanDisable all maps before applying preset
insetbooleanOpen a new preset to display preset
Root Elementpreset
Elementmap
AttributeFormatRemarks
idstringMap ID to toggle
textbooleanEnable / disable text labels

Example

<?xml version="1.0" encoding="UTF-8"?>
<presets>
	<!-- EBBU ACC -->
	<preset id="01 EBBU ACC" name="EBBU ACC" group="ACC" clearmaps="true" toolbar="true" menu="true">
		<main range="150" lat="N050534911" lon="E004290864"/>
		<maps>
			<map id="EBBU_BDRY"      visible="true"  text="false" />
			<map id="EBBU_AIRSP"     visible="true"  text="false" />
			<map id="EBBU_LOW"       visible="true"  text="false" />
			<map id="EBBU_AIRWAYS"   visible="true"  text="false" />
			<map id="EBBU_FIX_1"     visible="true"  text="false" />
			<map id="EBBU_VOR_1"     visible="true"  text="false" />
		</maps>
	</preset>
 
	<!-- EBBR APP -->
	<preset id="02 EBBR APP" name="EBBR APP" group="APP" clearmaps="true" toolbar="true" menu="false">
		<main range="30" lat="N0505405" lon="E0042904"/>
		<inset id="EBBR APP" range="5" ref="BUB"/>
		<inset id="EBAW TWR" range="5" lat="N0511122" lon="E0042737"/>
		<maps>
			<!-- EBBU -->
			<map id="EBBU_BDRY"             visible="true"  text="false" />
			<map id="EBBU_AIRSP"            visible="true"  text="false" />
			<map id="EBBU_FIX_1"            visible="true"  text="false" />
			<map id="EBBU_VOR_1"            visible="true"  text="false" />
			<!-- EBBR -->
			<map id="EBBR_AD_GND"           visible="true"  text="false" />
			<map id="EBBR_AD_RWY"           visible="true"  text="false" />
			<map id="EBBR_AD_RWY_MARKINGS"  visible="true"  text="false" />
			<map id="EBBR_AD_STANDS"        visible="true"  text="false" />
			<map id="EBBR_AD_STOPBARS"      visible="true"  text="false" />
			<map id="EBBR_AD_TWY"           visible="true"  text="false" />
			<map id="EBBR_REC_25"           visible="true"  text="false" />
			<map id="EBBR_RWY"              visible="true"  text="false" />
			<map id="EBBR_VFR"              visible="true"  text="false" />
			<!-- EBAW -->
			<map id="EBAW_AD_GND"           visible="true"  text="false" />
			<map id="EBAW_AD_RWY_MARKINGS"  visible="true"  text="false" />
			<map id="EBAW_AD_TWY"           visible="true"  text="false" />
			<map id="EBAW_CTR"              visible="true"  text="false" />
			<map id="EBAW_REC_RWY29"        visible="true"  text="false" />
			<map id="EBAW_RWY"              visible="true"  text="false" />
			<map id="EBAW_VFR"              visible="true"  text="false" />
		</maps>
	</preset>
</presets>

Back