Charlie,
The easiest way to make the detail panel the default is to find the following code snippet (~ line 630 of layout.js)
Code:
if (configOptions.displaylegend == 'true' || configOptions.displaylegend === true) {
addLegend(layerInfo);
}
and move them to approx line 598 - just above the code that adds the details button and panel
<!-- ADD LEGEND CODE HERE -->
Code:
//Add the Detail button and panel
if ((configOptions.displaydetails === 'true' || configOptions.displaydetails === true) && configOptions.description !== "") {
......
Bookmarks