f0d44ae8fe
Fix the main bugs, add features and convert most of the layers. Move/refactor some things as well. Add a canvas map dialog next to the built-in one -- it's not 100% functional but it's quite close actually. As before, the excitement has been taking place at our team clone. https://gitorious.org/fg/canvas-hackers-fgdata/commits/0b4cc84 (topics/canvas-map-dialog branch this time, current HEAD in above URL.)
19 lines
550 B
Text
19 lines
550 B
Text
# WARNING: *.model files will be deprecated, see: http://wiki.flightgear.org/MapStructure
|
|
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']() ,"fix");
|
|
var numNum = 0;
|
|
foreach(result; results) {
|
|
# Skip airport fixes
|
|
if(string.match(result.id,"*[^0-9]")) { # this may need to be moved to FIX.lcontroller?
|
|
me.push(result);
|
|
numNum = numNum + 1;
|
|
}
|
|
}
|
|
|
|
me.notifyView();
|
|
}
|