Hi!
After trying to implement correctly the MapExtended for several times now on this wiki, I'm reaching out for help regarding the set-up...
As you can see, I'm trying to have the following:
window.mapsExtendedConfig = {
"minimalLayout": true,
"enableSearch": true,
"enableSidebar": true,
"sidebarInitialState": "hide",
"openPopupsOnHover": false,
"enableFullscreen": true,
"fullscreenMode": "window"
"categoryGroups": [
{
"label": "Imperium",
"collapsed": true,
"children": [
"Adepta Sororitas",
"Adeptus Astartes",
"Adeptus Mechanicus",
"Adeptus Ministorum",
"Astra Militarum",
"Collegia Titanica",
"Inquisition",
"Libre-Marchand",
"Questor Imperialis",
"Serres de l'Empereur",
{
"label": "Flottes",
"children": [
"Flotte Impériale",
"Force Aérienne Impériale"
],
"hidden": true
}
]
},
{
"label": "Chaos",
"collapsed": true,
"children": [
"Hereticus Astartes",
"Mechanicum Noir",
"Legiones Daemonica",
"Perdus et Damnés",
"Questor Traitoris",
"Titanicus Traitoris",
{
"label": "Flottes",
"children": [
"Flotte Chaotique",
"Force Aérienne Chaotique"
],
"hidden": true
}
]
},
{
"label": "Xenos",
"collapsed": true,
"children": [
"Anhrathe",
"Arlequin",
"Asuryani",
"Drukhari",
"Exodite",
"Ynnari",
"Empire T'au",
"Ligue de Votann",
"Nécron",
"Orks",
"Culte Génovore",
"Tyranides",
"Xenos",
{
"label": "Flottes",
"children": [
"Flotte Xenos",
"Force Aérienne Xenos"
],
"hidden": true
}
]
},
{
"label": "Autres Factions",
"collapsed": true,
"children": [
"Sécessionniste"
]
},
{
"label": "Géographie",
"collapsed": true,
"children": [
"Secteur",
"Sous-Secteur",
"Système",
"Monde",
"Station Spatiale",
"Bâtiment"
]
},
{
"label": "Autres Éléments",
"collapsed": true,
"children": [
"Campagne",
"Gang",
"Institution Planétaire",
"Kill Team",
"Vaisseau Spatial",
"Autres"
]
}
]
};
However, no matter how I'm trying to fix things, I have the following issues:
Grouped categories aren't showing up
Search and marker listing isn't working
Interaction with the sidebar doesn't have an impact on the map (wether I'm disabling categories or enabling them doesn't affect the map)
Thank you for the help!