9af485ad93
- remove debug prints - proper ADF/ILS display - add LCD/CRT option - fix ranges
20 lines
No EOL
363 B
Text
20 lines
No EOL
363 B
Text
var DMEModel = {};
|
|
DMEModel.new = func make( LayerModel, DMEModel );
|
|
|
|
DMEModel.init = func {
|
|
me._view.reset();
|
|
|
|
if(0) {
|
|
debug.dump( me._controller );
|
|
print(typeof(
|
|
me._controller.query_range()
|
|
));
|
|
}
|
|
|
|
var results = positioned.findWithinRange(me._controller.query_range() ,"dme");
|
|
foreach(result; results) {
|
|
me.push(result);
|
|
}
|
|
|
|
me.notifyView();
|
|
} |