1
0
Fork 0
fgdata/Nasal/canvas/map/fixes.model
Gijs de Rooy 2b6964911f Boeing ND:
- add VOR, APP, PLAN and CTR modes.
- add true/mag switch
- display waypoint altitudes
2013-12-28 16:18:35 +01:00

18 lines
No EOL
478 B
Text

var FixModel = {};
FixModel.new = func make( LayerModel, FixModel );
FixModel.init = func {
me._view.reset(); # wraps removeAllChildren() ATM
var results = positioned.findWithinRange( me._controller['query_range']()*2 ,"fix");
var numNum = 0;
foreach(result; results) {
# Skip airport navaids (real thing makes distinction between high/low altitude fixes)
if(string.match(result.id,"*[^0-9]")) {
me.push(result);
numNum = numNum + 1;
}
}
me.notifyView();
}