﻿/**
 * Start searching for layers in layer model
 * Different top level therefore excluded from recursion
 * @param {Object} layerNames
 * @param {Object} operation Operation can be 'checkLayers' or 'collectLocatable'
 */
function findNodeByLayerName(layerNames, operation){
    if (operation == "collectLocatable") {
        locatableLayers = [];
    }
    for (k = 0; k < model.length; k++) {
        findInChildren(layerNames, model[k], operation);
    }
}

/**
 * Recursively find layer to turn on in tree
 * @param {Object} layerNames
 * @param {Object} subModel
 */
function findInChildren(layerNames, subModel, operation){
    if (subModel.children) {
        for (var i = 0; i < subModel.children.length; i++) {
            findInChildren(layerNames, subModel.children[i], operation);
        }
    }
    else {
        //We found a leaf in the tree
        if (operation == "checkLayers") {
            //checkChanged indicates whether anything happened to layer's checked property
            var checkChanged = false;
            //Go through layers we are searching for
            for (var j = 0; j < layerNames.length; j++) {
                if (layerNames[j] == subModel.layerNames[0]) {
                    subModel.checked = true;
                    checkChanged = true;
                }
                
                
            }
            if (!checkChanged) {
                subModel.checked = false;
                checkChanged = false;
            }
            return;
        }
        else 
            if (operation = "collectLocatable") {
                //Go through layers we are searching for and collect locatable and visible layers
                for (var j = 0; j < layerNames.length; j++) {
                    if ("ujbudaVectorWMS:" + layerNames[j] == subModel.layerNames[0]) {
                        if (subModel.locatable && subModel.checked) {
                            locatableLayers.push(layerNames[j]);
                        }
                    }
                }
            }
        
    }
}
/**
 * Collecting locatable layers
 * @param {Object} currVisibleLayers
 */
function collectLocatable(currVisibleLayers){
    findNodeByLayerName(currVisibleLayers, "collectLocatable");
    return locatableLayers;
}

/**
 * Provides info on queryable object through getFeatureInfo request
 * @param {Object} e
 */
function getFeatureInfo(e){
    collectLocatable(ujbudaVectorWMS.params.LAYERS);
    var url = ujbudaVectorWMS.getFullRequestString({
        REQUEST: "GetFeatureInfo",
        VERSION: "1.1.1",
        EXCEPTIONS: "application/vnd.ogc.se_xml",
        BBOX: ujbudaVectorWMS.map.getExtent().toBBOX(),
        X: e.xy.x,
        Y: e.xy.y,
        INFO_FORMAT: 'text/xml',
        QUERY_LAYERS: locatableLayers,
        WIDTH: ujbudaVectorWMS.map.size.w,
        HEIGHT: ujbudaVectorWMS.map.size.h,
        FEATURE_COUNT: 2
    });
    //alert('url: ' + url);
    OpenLayers.loadURL(url, '', this, showInfo);
    OpenLayers.Event.stop(e);
}

//Define handler for buttons no idea why to put here instead of the main module
/**
 * Handler for layer switcher
 * @param {Object} btn
 */
function switchPreDefLegend(btn){
    findNodeByLayerName(btn.children, "checkLayers");
    treeWindow.destroy();
    tree = null;
    tree = new mapfish.widgets.LayerTree({
        map: map,		
        el: 'tree',
		//model: model //by kimi
		model: model //by atis - e nélkül nem megy IE alatt!!!!
    });
        
   treeWindow = new Ext.Window({
        title: 'Rétegek',
        width: 250,
        height: 400,
        minWidth: 250,
        minHeight: 200,
        x: 50,
        y: 100,
        layout: 'fit',
        plain: true,
        closable: false,
        bodyStyle: 'padding:5px;',
        collapsible: true,
        items: [{
            xtype: 'layertree',
            layerTree: tree,
            map: map,
            model: model
        }]
    });
    treeWindow.show();
    
}

var model = [{
    text: 'Háttér',
    checked: false,
    leaf: false,
    expanded: true,
    children: [{
        text: 'Ortofotó 2008',
        checked: true,
        layerNames: ['ujbudaOrto2008'],
        leaf: true
    }, {
        text: 'Ortofotó 2007',
        checked: false,
        layerNames: ['ujbudaOrto2007'],
        leaf: true
    }, {
        text: 'Ortofotó 2005',
        checked: false,
        layerNames: ['ujbudaOrto2005'],
        leaf: true
    }, {
        text: 'Üres háttér',
        checked: false,
        layerNames: ['uresHatter'],
        leaf: true
    }]
}, {
    text: 'Közterület foglalási engedélyek',
    checked: false,
    layerNames: ['kozterLayer'],
    leaf: true,
    radio: false,
    radioGrp: '',
    locatable: false
}, {
    text: 'Alap',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Úthálózat',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'Úthálózat1',
            checked: false,
            layerNames: ['ujbudaVectorWMS:ALAP_street_1_2'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_street_1_2_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }, {
            text: 'Úthálózat2',
            checked: false,
            layerNames: ['ujbudaVectorWMS:ALAP_street_1_1'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_street_1_1_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }, {
            text: 'Úthálózat3',
            checked: false,
            layerNames: ['ujbudaVectorWMS:ALAP_street_2_2'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_street_2_2_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }, {
            text: 'Úthálózat4',
            checked: false,
            layerNames: ['ujbudaVectorWMS:ALAP_street_2_1'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_street_2_1_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }, {
            text: 'Utcanevek (alaptérkép)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:ALAP_street_TEXT_all'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_street_TEXT_all_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }]
    }, {
        text: 'Alaptérkép kitöltései',
        checked: false,
        layerNames: ['ujbudaVectorWMS:ALAP_kitoltesek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_kitoltesek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Duna',
        checked: false,
        layerNames: ['ujbudaVectorWMS:ALAP_Duna'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_Duna_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Kerülethatár',
        checked: false,
        layerNames: ['ujbudaVectorWMS:ALAP_kerulethatar'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_kerulethatar_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Vasút',
        checked: false,
        layerNames: ['ujbudaVectorWMS:ALAP_railways'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_railways_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Vizek',
        checked: false,
        layerNames: ['ujbudaVectorWMS:ALAP_viz'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/ALAP_viz_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}, {
    text: 'Fotók',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Légifotók',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FOTO_Legifotok', 'ujbudaVectorWFS'],
		icon:'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FOTO_Legifotok_Default.png',
        //layerNames: ['ujbudaVectorWFS'],
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }]
}, {
    text: 'KVSZ',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Szabályozási tervek',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'Kerületi szabályozási tervek',
            checked: false,
            layerNames: ['ujbudaVectorWMS:TEMATIKUS_Szabályozzási_tervek'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_Szabályozzási_tervek_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Kerületi szabályozási tervek (felirat)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:TEMATIKUS_Szabályozzási_tervek_felirat'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_Szabályozzási_tervek_felirat_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }]
    }, {
        text: 'Egyéb',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'Főbb utak irányadó szabályozása és minimális szabályozási szélessége',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_OVEZET_irszabut'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_OVEZET_irszabut_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }, {
            text: 'Hatályban maradó szabályozási vonalak',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_SZAB_szabalyozas'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_SZAB_szabalyozas_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: false
        }]
    }, {
        text: 'Övezeti terv',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'KVSZ Övezeti terv',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_OVEZET_Terfel'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_OVEZET_Terfel_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }]
    }, {
        text: 'Védelmi és korlátozási területek',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'Beépített, beépítésre szánt mélyfekvésű terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_felszmt'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_felszmt_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Egyéb barlang előfordulásos terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_egyeb_barlang'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_egyeb_barlang_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'elektrvedt',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_elektrvedt'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_elektrvedt_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Felszínmozgásveszélyes terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_fmozg'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_fmozg_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fokozottan védett barlang felszíni vetülete',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_barlpol'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_barlpol_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fővárosi jelentőségű védett fasor',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_fasor'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_fasor_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fővárosi jelentőségű védett közpark, tér, kert',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_park'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_park_Default.png',
            locatable: true
        }, {
            text: 'Fővárosi jelentőségű védett temető',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_bptemeto'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_bptemeto_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fővárosi jelentőségű védett természeti terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_htermpol'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_htermpol_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fővárosi rendeletben védett épület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_ved7szim'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_ved7szim_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Fővárosi rendeletben védett épületegyüttes',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_vedett6'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_vedett6_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'furdpol',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_furdpol'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_furdpol_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Gázvezeték védelmi övezete',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_gazvedt2'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_gazvedt2_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Helyi jelentőségű fasorok',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_javvedfasor'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_javvedfasor_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Helyi jelentőségű temető, közpark, kert',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_Javved'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_Javved_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Helyi jelentőségű terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_kerkiemut'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_kerkiemut_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Karsztos terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_karsztos'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_karsztos_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Metró védelmi zóna',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_Mélykor'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_Mélykor_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Mikrohullámú sáv',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_magaskor'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_magaskor_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Műemlék',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_omvhszim'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_omvhszim_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Műemléki jelentőségű terület (Világörökség kiterjesztett területe)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_vilormu'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_vilormu_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Műemléki környezet',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_mkpol'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_mkpol_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Országos jelentőségű védett természeti  érték (karsztforrások, kutak, egyéb gyógyvizek)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_htermsz'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_htermsz_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Országos jelentőségű védett természeti terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_otermved'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_otermved_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Régészetileg védett terület',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_regeszet'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_regeszet_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Településrendezési célok megvalósításához szükséges területek',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_elovegyb'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_elovegyb_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Üzemtervezett erdők határa',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_erdogazd'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_erdogazd_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Városkép szempontjából kiemelt útvonalak',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_varpol2c'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_varpol2c_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'varpol',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_varpol1b'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_varpol1b_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Védelmi és korlátozási területek felirata',
            checked: false,
            layerNames: ['ujbudaVectorWMS:KVSZ_VEDKORL_ved_felirat'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/KVSZ_VEDKORL_ved_felirat_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }]
    }]
}, {
    text: 'Egyéb',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Védelmi övezet',
        checked: false,
        expanded: false,
        leaf: false,
        children: [{
            text: 'Védett pontok (türelmi zóna)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:TEMATIKUS_vedelmiovezet_pontok'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_vedelmiovezet_pontok_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }, {
            text: 'Védelmi övezet területe (türelmi zóna)',
            checked: false,
            layerNames: ['ujbudaVectorWMS:TEMATIKUS_vedelmiovezet_terulet'],
            icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_vedelmiovezet_terulet_Default.png',
            leaf: true,
            radio: false,
            radioGrp: '',
            locatable: true
        }]
    }, {
        text: 'Általános iskolák beiskolázási körzetei',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_Iskolai_korzetek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_Iskolai_korzetek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Általános iskolák beiskolázási körzetei felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_Iskolai_korzetek_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_Iskolai_korzetek_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Szelektív hulladékgyűjtők',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_szelektiv_hulladekgyujtok'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_szelektiv_hulladekgyujtok_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Városrészek',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_varosreszek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_varosreszek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Városrészek felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_varosreszek_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_varosreszek_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    },{
        text: 'Építési körzetek ügyintézők szerint',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_epitesikorztek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_epitesikorztek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    },{
        text: 'Építési körzetek ügyintézők szerint felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_epitesikorztek_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_epitesikorztek_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    },{
        text: 'Fizető parkolási övezetek',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_parkolasiovezetek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_parkolasiovezetek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    },{
        text: 'Fizető parkolási övezetek felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_parkolasiovezetek_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_parkolasiovezetek_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}, {
    text: 'Útkataszter',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Úthálózat állapota',
        checked: false,
        layerNames: ['ujbudaVectorWMS:UTKATASZTER_Utallpotfelmeres'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/UTKATASZTER_Utallpotfelmeres_Default.png',
        leaf: true,
        radio: true,
        radioGrp: 'Utallapot',
        locatable: true
    }, {
        text: 'Úthálózat tulajdonos-fenntartó szerint',
        checked: false,
        layerNames: ['ujbudaVectorWMS:UTKATASZTER_Utallpotfelmeres_tulajdonos'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/UTKATASZTER_Utallpotfelmeres_tulajdonos_Default.png',
        leaf: true,
        radio: true,
        radioGrp: 'Utallapot',
        locatable: true
    }]
}, {
    text: 'Választási térképek',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Országgyűlési képviselők körzete',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2006_orszaggyulesi_korzet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2006_orszaggyulesi_korzet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Országgyűlési képviselők körzete felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2006_orszaggyulesi_korzet_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2006_orszaggyulesi_korzet_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Önkormányzati képviselők körzete',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2006_onkormanyzati_korzetek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2006_onkormanyzati_korzetek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Önkormányzati képviselők körzete felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2006_onkormanyzati_korzetek_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2006_onkormanyzati_korzetek_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Szavazókörök',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2008_szavazokorok'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2008_szavazokorok_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'Szavazókörök felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:TEMATIKUS_V_2008_szavazokorok_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/TEMATIKUS_V_2008_szavazokorok_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}, {
    text: 'Földhivatal_2009',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'Földrészlet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_FOLDRESZLET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_FOLDRESZLET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'HRSZ',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_FOLDRESZLET_HRSZ_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Akna',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_AKNA'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_AKNA_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Alagut',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_ALAGUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_ALAGUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Birtokhatár pont',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_BHP'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_BHP_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Burkolat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_BURKOLAT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_BURKOLAT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Emlékmű',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_EMLEKMU'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_EMLEKMU_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-lépcső',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_EP_LEPCSO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_EP_LEPCSO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-pillér',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_EP_PILLER'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_EP_PILLER_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Fal, kerítés',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_FAL_KERITES'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_FAL_KERITES_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Fekvéshatár',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_FEKVESHATAR'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_FEKVESHATAR_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Felüljáró',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_FELULJARO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_FELULJARO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-Gazdasági',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_GAZD_EPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_GAZD_EPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Házszám (földhivatal)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_HAZSZAM'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_HAZSZAM_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Híd',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_HID'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_HID_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-Intézmény',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_INTEZMENYI_EP'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_INTEZMENYI_EP_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-Intézmény (felirat)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_INTEZMENYI_EP_text'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_INTEZMENYI_EP_text_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Vasút-ipari',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_IPARI_VASUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_IPARI_VASUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Kapcsoló jel',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_KAPCS_JEL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_KAPCS_JEL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Kerülethatár',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_KERULETHATAR'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_KERULETHATAR_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Lépcső-közterületi',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_KOZT_LEPCSO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_KOZT_LEPCSO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Kút',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_KUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_KUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-lakó',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_LAKOEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_LAKOEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Alappont',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_M_ALAPPONT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_M_ALAPPONT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Minőségi osztály (felirat)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_MIN_OSZT_text'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_MIN_OSZT_text_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Műtárgy-víz',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_MUTARGY_VIZ'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_MUTARGY_VIZ_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Művelési ág',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_MUVAG'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_MUVAG_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Művelési ág (felirat)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_MUVAG_text'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_MUVAG_text_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Rámpa',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_RAMPA'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_RAMPA_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Támfal',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_TAMFAL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_TAMFAL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-templom',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_TEMPLOM'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_TEMPLOM_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Terasz',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_TERASZ'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_TERASZ_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Töltés',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_TOLTES'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_TOLTES_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-üdülő',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_UDULOEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_UDULOEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Utcanév (földhivatali)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_UTCANEV'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_UTCANEV_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-üzemi',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_UZEMI_EPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_UZEMI_EPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Épület-üzemi (felirat)',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_UZEMI_EPULET_text'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_UZEMI_EPULET_text_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'Vetített sík',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2009_VETITETT_SIK'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2009_VETITETT_SIK_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}, {
    text: 'Földhivatal_2007',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'FH2007_AKNA',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_AKNA'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_AKNA_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_ALAGUT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_ALAGUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_ALAGUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_ALRESZLET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_ALRESZLET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_ALRESZLET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_BIRTOKHPONT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_BIRTOKHPONT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_BIRTOKHPONT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_BURKOLAT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_BURKOLAT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_BURKOLAT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_EGYEBKUT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_EGYEBKUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_EGYEBKUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_EMLEKMU',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_EMLEKMU'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_EMLEKMU_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_EPULETLEPCSO',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_EPULETLEPCSO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_EPULETLEPCSO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_EPULETSZIN',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_EPULETSZIN'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_EPULETSZIN_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_F0',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_F0'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_F0_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_FELULJARO',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_FELULJARO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_FELULJARO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_FOLDRESZLET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_FOLDRESZLET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_FOLDRESZLET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'FH2007_FOLDRESZLET_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_FOLDRESZLET_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_FOLDRESZLET_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_FOLDRESZLET_probaszinek',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_FOLDRESZLET_probaszinek'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_FOLDRESZLET_probaszinek_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_GAZDASAGIEPULET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_GAZDASAGIEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_GAZDASAGIEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_HAZSZAM',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_HAZSZAM'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_HAZSZAM_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_HAZSZAM_pont',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_HAZSZAM_pont'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_HAZSZAM_pont_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_HIDSZEGELYVONAL',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_HIDSZEGELYVONAL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_HIDSZEGELYVONAL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_IPARIVASUT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_IPARIVASUT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_IPARIVASUT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KAPCSOLOJEL',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KAPCSOLOJEL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KAPCSOLOJEL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KEMENY',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KEMENY'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KEMENY_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KERITESLABAZAT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KERITESLABAZAT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KERITESLABAZAT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KERULETHATAR',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KERULETHATAR'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KERULETHATAR_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KILATO',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KILATO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KILATO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KOZEPULET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KOZEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KOZEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KOZTERLEPCSO',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KOZTERLEPCSO'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KOZTERLEPCSO_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_KULTERBELTER',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_KULTERBELTER'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_KULTERBELTER_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_LABAZATNELKULIKE',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_LABAZATNELKULIKE'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_LABAZATNELKULIKE_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_LAKOEPULET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_LAKOEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_LAKOEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_LEVFALSIK',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_LEVFALSIK'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_LEVFALSIK_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_MEDENCE',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_MEDENCE'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_MEDENCE_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_MEDERVONAL',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_MEDERVONAL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_MEDERVONAL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_MINOSEGIOSZTALY',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_MINOSEGIOSZTALY'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_MINOSEGIOSZTALY_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_MUVELESIAG',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_MUVELESIAG'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_MUVELESIAG_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_PILLER',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_PILLER'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_PILLER_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_RAMPA',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_RAMPA'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_RAMPA_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_TAMFAL',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_TAMFAL'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_TAMFAL_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_TARTOOSZLOP',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_TARTOOSZLOP'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_TARTOOSZLOP_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_TEMPLOM',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_TEMPLOM'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_TEMPLOM_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_TERASZRAMPA',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_TERASZRAMPA'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_TERASZRAMPA_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_TOLTES',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_TOLTES'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_TOLTES_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_UDULOEPULET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_UDULOEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_UDULOEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_UTCANEV',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_UTCANEV'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_UTCANEV_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2007_UZEMEPULET',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2007_UZEMEPULET'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2007_UZEMEPULET_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}, {
    text: 'Földhivatal_2008',
    checked: false,
    expanded: false,
    leaf: false,
    children: [{
        text: 'FH2008_Akna',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Akna'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Akna_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Alagut',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Alagut'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Alagut_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Alreszlet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Alreszlet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Alreszlet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Alreszlet_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Alreszlet_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Alreszlet_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Birtokpont',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Birtokpont'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Birtokpont_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Burkolat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Burkolat'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Burkolat_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Burkolat_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Burkolat_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Burkolat_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Egyebkut',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Egyebkut'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Egyebkut_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Emlekmu',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Emlekmu'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Emlekmu_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Emlekmu_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Emlekmu_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Emlekmu_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_EOV_szelveny',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_EOV_szelveny'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_EOV_szelveny_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Epuletlepcso',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Epuletlepcso'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Epuletlepcso_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Feluljaro',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Feluljaro'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Feluljaro_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Foldreszlet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Foldreszlet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Foldreszlet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Foldreszlet_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Foldreszlet_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Foldreszlet_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_foldreszlet_HRSZ_felirat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_foldreszlet_HRSZ_felirat'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_foldreszlet_HRSZ_felirat_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Foldreszlet_tulajdonilapokkal',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Foldreszlet_tulajdonilapokkal'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Foldreszlet_tulajdonilapokkal_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: true
    }, {
        text: 'FH2008_Gazdasagiepulet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Gazdasagiepulet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Gazdasagiepulet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Hazszam',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Hazszam'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Hazszam_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Hazszam_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Hazszam_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Hazszam_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Hidszegelyvonal',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Hidszegelyvonal'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Hidszegelyvonal_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kapcsolojel',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kapcsolojel'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kapcsolojel_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kemeny',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kemeny'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kemeny_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Keriteslabazat',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Keriteslabazat'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Keriteslabazat_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kerulet_teljes_foldreszlet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kerulet_teljes_foldreszlet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kerulet_teljes_foldreszlet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kerulethatar',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kerulethatar'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kerulethatar_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kilato',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kilato'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kilato_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kilato_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kilato_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kilato_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kozepulet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kozepulet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kozepulet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kozepulet_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kozepulet_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kozepulet_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Kozterlepcso',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Kozterlepcso'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Kozterlepcso_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_KulterBelter',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_KulterBelter'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_KulterBelter_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Labazatnelkulikerites',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Labazatnelkulikerites'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Labazatnelkulikerites_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Lakoepulet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Lakoepulet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Lakoepulet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Levfalsik',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Levfalsik'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Levfalsik_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Medence',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Medence'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Medence_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Medence_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Medence_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Medence_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Medervonal',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Medervonal'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Medervonal_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Minosegiosztaly',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Minosegiosztaly'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Minosegiosztaly_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Minosegiosztaly_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Minosegiosztaly_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Minosegiosztaly_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Piller',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Piller'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Piller_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Tamfal',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Tamfal'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Tamfal_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Tartooszlop',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Tartooszlop'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Tartooszlop_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Templom',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Templom'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Templom_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Templom_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Templom_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Templom_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Teraszrampa',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Teraszrampa'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Teraszrampa_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Toltes',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Toltes'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Toltes_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Uduloepulet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Uduloepulet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Uduloepulet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Utcanev',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Utcanev'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Utcanev_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Uzemepulet',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Uzemepulet'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Uzemepulet_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Uzemepulet_POINT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Uzemepulet_POINT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Uzemepulet_POINT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }, {
        text: 'FH2008_Uzemepulet_TEXT',
        checked: false,
        layerNames: ['ujbudaVectorWMS:FH2008_Uzemepulet_TEXT'],
        icon: 'http://terinfo.ujbuda.hu/ujbudaVectorWMS100404/LegendImages/FH2008_Uzemepulet_TEXT_Default.png',
        leaf: true,
        radio: false,
        radioGrp: '',
        locatable: false
    }]
}];

var preDefLegendModel = [{
    text: 'Alaptérkép (ortofotóval)',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:ALAP_railways', 'ujbudaVectorWMS:ALAP_street_1_2', 'ujbudaVectorWMS:ALAP_street_1_1', 'ujbudaVectorWMS:ALAP_street_2_2', 'ujbudaVectorWMS:ALAP_street_2_1', 'ujbudaVectorWMS:ALAP_street_TEXT_all', 'ujbudaVectorWMS:FOTO_Legifotok']
}, {
    text: 'Alaptérkép (hagyományos)',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kitoltesek', 'ujbudaVectorWMS:ALAP_Duna', 'ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:ALAP_railways', 'ujbudaVectorWMS:ALAP_viz', 'ujbudaVectorWMS:ALAP_street_1_2', 'ujbudaVectorWMS:ALAP_street_1_1', 'ujbudaVectorWMS:ALAP_street_2_2', 'ujbudaVectorWMS:ALAP_street_2_1', 'ujbudaVectorWMS:ALAP_street_TEXT_all', 'ujbudaVectorWMS:FOTO_Legifotok']
}, {
    text: 'Földhivatal 2009',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_BHP', 'ujbudaVectorWMS:FH2009_GAZD_EPULET', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_HID', 'ujbudaVectorWMS:FH2009_INTEZMENYI_EP', 'ujbudaVectorWMS:FH2009_INTEZMENYI_EP_text', 'ujbudaVectorWMS:FH2009_IPARI_VASUT', 'ujbudaVectorWMS:FH2009_LAKOEPULET', 'ujbudaVectorWMS:FH2009_TEMPLOM', 'ujbudaVectorWMS:FH2009_UDULOEPULET', 'ujbudaVectorWMS:FH2009_UTCANEV', 'ujbudaVectorWMS:FH2009_UZEMI_EPULET', 'ujbudaVectorWMS:FH2009_UZEMI_EPULET_text']
}, {
    text: 'KVSZ: szabályozási tervek',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:TEMATIKUS_Szabályozzási_tervek', 'ujbudaVectorWMS:TEMATIKUS_Szabályozzási_tervek_felirat', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_BHP', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'KVSZ: övezeti terv',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:KVSZ_OVEZET_Terfel', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_BHP', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'KVSZ: védelmi korlátozások',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:KVSZ_VEDKORL_felszmt', 'ujbudaVectorWMS:KVSZ_VEDKORL_egyeb_barlang', 'ujbudaVectorWMS:KVSZ_VEDKORL_elektrvedt', 'ujbudaVectorWMS:KVSZ_VEDKORL_fmozg', 'ujbudaVectorWMS:KVSZ_VEDKORL_barlpol', 'ujbudaVectorWMS:KVSZ_VEDKORL_fasor', 'ujbudaVectorWMS:KVSZ_VEDKORL_park', 'ujbudaVectorWMS:KVSZ_VEDKORL_bptemeto', 'ujbudaVectorWMS:KVSZ_VEDKORL_htermpol', 'ujbudaVectorWMS:KVSZ_VEDKORL_ved7szim', 'ujbudaVectorWMS:KVSZ_VEDKORL_vedett6', 'ujbudaVectorWMS:KVSZ_VEDKORL_furdpol', 'ujbudaVectorWMS:KVSZ_VEDKORL_gazvedt2', 'ujbudaVectorWMS:KVSZ_VEDKORL_javvedfasor', 'ujbudaVectorWMS:KVSZ_VEDKORL_Javved', 'ujbudaVectorWMS:KVSZ_VEDKORL_kerkiemut', 'ujbudaVectorWMS:KVSZ_VEDKORL_karsztos', 'ujbudaVectorWMS:KVSZ_VEDKORL_Mélykor', 'ujbudaVectorWMS:KVSZ_VEDKORL_magaskor', 'ujbudaVectorWMS:KVSZ_VEDKORL_omvhszim', 'ujbudaVectorWMS:KVSZ_VEDKORL_vilormu', 'ujbudaVectorWMS:KVSZ_VEDKORL_mkpol', 'ujbudaVectorWMS:KVSZ_VEDKORL_htermsz', 'ujbudaVectorWMS:KVSZ_VEDKORL_otermved', 'ujbudaVectorWMS:KVSZ_VEDKORL_regeszet', 'ujbudaVectorWMS:KVSZ_VEDKORL_elovegyb', 'ujbudaVectorWMS:KVSZ_VEDKORL_erdogazd', 'ujbudaVectorWMS:KVSZ_VEDKORL_varpol2c', 'ujbudaVectorWMS:KVSZ_VEDKORL_varpol1b', 'ujbudaVectorWMS:KVSZ_VEDKORL_ved_felirat', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_BHP', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'KVSZ: hatályban maradó szabályozási vonalak, főbb utak irányadó szabályozása',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:KVSZ_OVEZET_irszabut', 'ujbudaVectorWMS:KVSZ_SZAB_szabalyozas', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_BHP', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'Földhivatal 2007',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:FH2007_ALRESZLET', 'ujbudaVectorWMS:FH2007_BIRTOKHPONT', 'ujbudaVectorWMS:FH2007_FOLDRESZLET', 'ujbudaVectorWMS:FH2007_FOLDRESZLET_TEXT', 'ujbudaVectorWMS:FH2007_GAZDASAGIEPULET', 'ujbudaVectorWMS:FH2007_HAZSZAM', 'ujbudaVectorWMS:FH2007_IPARIVASUT', 'ujbudaVectorWMS:FH2007_KILATO', 'ujbudaVectorWMS:FH2007_KOZEPULET', 'ujbudaVectorWMS:FH2007_LAKOEPULET', 'ujbudaVectorWMS:FH2007_TEMPLOM', 'ujbudaVectorWMS:FH2007_UDULOEPULET', 'ujbudaVectorWMS:FH2007_UTCANEV', 'ujbudaVectorWMS:FH2007_UZEMEPULET']
}, {
    text: 'Földhivatal 2008',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:FH2008_Alreszlet', 'ujbudaVectorWMS:FH2008_Alreszlet_TEXT', 'ujbudaVectorWMS:FH2008_Birtokpont', 'ujbudaVectorWMS:FH2008_Emlekmu', 'ujbudaVectorWMS:FH2008_foldreszlet_HRSZ_felirat', 'ujbudaVectorWMS:FH2008_Foldreszlet_tulajdonilapokkal', 'ujbudaVectorWMS:FH2008_Gazdasagiepulet', 'ujbudaVectorWMS:FH2008_Hazszam_TEXT', 'ujbudaVectorWMS:FH2008_Kilato', 'ujbudaVectorWMS:FH2008_Kozepulet', 'ujbudaVectorWMS:FH2008_Kozepulet_TEXT', 'ujbudaVectorWMS:FH2008_Lakoepulet', 'ujbudaVectorWMS:FH2008_Templom', 'ujbudaVectorWMS:FH2008_Templom_TEXT', 'ujbudaVectorWMS:FH2008_Uduloepulet', 'ujbudaVectorWMS:FH2008_Uduloepulet_TEXT', 'ujbudaVectorWMS:FH2008_Utcanev', 'ujbudaVectorWMS:FH2008_Uzemepulet', 'ujbudaVectorWMS:FH2008_Uzemepulet_TEXT']
}, {
    text: 'Utkataszter: tulajdonos szerint',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:UTKATASZTER_Utallpotfelmeres_tulajdonos', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'Utkataszter: állapot szerint',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:UTKATASZTER_Utallpotfelmeres', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_FOLDRESZLET_HRSZ', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
    text: 'Általános iskolák beiskolázási körzetei',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kitoltesek', 'ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:ALAP_railways', 'ujbudaVectorWMS:ALAP_viz', 'ujbudaVectorWMS:ALAP_street_1_2', 'ujbudaVectorWMS:ALAP_street_1_1', 'ujbudaVectorWMS:ALAP_street_2_2', 'ujbudaVectorWMS:ALAP_street_2_1', 'ujbudaVectorWMS:ALAP_street_TEXT_all', 'ujbudaVectorWMS:TEMATIKUS_Iskolai_korzetek', 'ujbudaVectorWMS:TEMATIKUS_Iskolai_korzetek_TEXT']
}, {
    text: 'Védelmi övezet (türelmi zóna)',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kitoltesek', 'ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:ALAP_railways', 'ujbudaVectorWMS:ALAP_viz', 'ujbudaVectorWMS:ALAP_street_1_2', 'ujbudaVectorWMS:ALAP_street_1_1', 'ujbudaVectorWMS:ALAP_street_2_2', 'ujbudaVectorWMS:ALAP_street_2_1', 'ujbudaVectorWMS:ALAP_street_TEXT_all', 'ujbudaVectorWMS:TEMATIKUS_vedelmiovezet_pontok', 'ujbudaVectorWMS:TEMATIKUS_vedelmiovezet_terulet']
}, {
    text: 'Választási adatok',
    checked: false,
    group: 'preDefLegends',
    handler: switchPreDefLegend,
    children: ['ujbudaVectorWMS:ALAP_kerulethatar', 'ujbudaVectorWMS:TEMATIKUS_V_2006_orszaggyulesi_korzet', 'ujbudaVectorWMS:TEMATIKUS_V_2006_orszaggyulesi_korzet_TEXT', 'ujbudaVectorWMS:TEMATIKUS_V_2006_onkormanyzati_korzetek', 'ujbudaVectorWMS:TEMATIKUS_V_2006_onkormanyzati_korzetek_TEXT', 'ujbudaVectorWMS:TEMATIKUS_V_2008_szavazokorok', 'ujbudaVectorWMS:TEMATIKUS_V_2008_szavazokorok_TEXT', 'ujbudaVectorWMS:FH2009_FOLDRESZLET', 'ujbudaVectorWMS:FH2009_HAZSZAM', 'ujbudaVectorWMS:FH2009_UTCANEV']
}, {
	text:'Építési körzetek ügyintézők szerint',
	checked:false,
	group:'preDefLegends',
	handler:switchPreDefLegend,
	children:['ujbudaVectorWMS:ALAP_street_1_2','ujbudaVectorWMS:ALAP_street_1_1','ujbudaVectorWMS:ALAP_street_2_2','ujbudaVectorWMS:ALAP_street_2_1','ujbudaVectorWMS:ALAP_street_TEXT_all','ujbudaVectorWMS:ALAP_kitoltesek','ujbudaVectorWMS:ALAP_kerulethatar','ujbudaVectorWMS:ALAP_railways','ujbudaVectorWMS:ALAP_viz','ujbudaVectorWMS:TEMATIKUS_epitesikorztek','ujbudaVectorWMS:TEMATIKUS_epitesikorztek_TEXT']
},{
	text:'Fizető parkolási övezetek',
	checked:false,
	group:'preDefLegends',
	handler:switchPreDefLegend,
	children:['ujbudaVectorWMS:ALAP_street_1_2','ujbudaVectorWMS:ALAP_street_1_1','ujbudaVectorWMS:ALAP_street_2_2','ujbudaVectorWMS:ALAP_street_2_1','ujbudaVectorWMS:ALAP_street_TEXT_all','ujbudaVectorWMS:ALAP_kitoltesek','ujbudaVectorWMS:ALAP_kerulethatar','ujbudaVectorWMS:ALAP_railways','ujbudaVectorWMS:ALAP_viz','ujbudaVectorWMS:TEMATIKUS_parkolasiovezetek','ujbudaVectorWMS:TEMATIKUS_parkolasiovezetek_TEXT']
}];
