37c005c222
See the clone at https://gitorious.org/fg/canvas-hackers-fgdata/source/topics/canvas-radar:
10 lines
No EOL
338 B
Text
10 lines
No EOL
338 B
Text
# WARNING: *.model files will be deprecated, see: http://wiki.flightgear.org/MapStructure
|
|
var NavaidModel = {};
|
|
NavaidModel.new = func make(LayerModel, NavaidModel);
|
|
NavaidModel.init = func {
|
|
me._view.reset();
|
|
var navaids = findNavaidsWithinRange(me._controller.query_range());
|
|
foreach(var n; navaids)
|
|
me.push(n);
|
|
me.notifyView();
|
|
} |