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
416 B
Text
19 lines
416 B
Text
# See: http://wiki.flightgear.org/MapStructure
|
|
|
|
# Class things:
|
|
var name = 'FLT';
|
|
var parents = [LineSymbol];
|
|
var __self__ = caller(0)[0];
|
|
LineSymbol.makeinstance( name, __self__ );
|
|
|
|
SymbolLayer.get(name).df_style = { # style to use by default
|
|
line_width: 5,
|
|
color: [0,0,1]
|
|
};
|
|
|
|
var init = func {
|
|
me.element.setColor(me.layer.style.color)
|
|
.setStrokeLineWidth(me.layer.style.line_width);
|
|
me.needs_update = 0;
|
|
};
|
|
|