Hi Richard, have you seen this sample? Does it meet your requirements?
https://developers.arcgis.com/javascript/latest/sample-code/widgets-layerlist-legend/
Julie
Yes. This is already offered in the LayerList widget panels.
// displays the legend for each layer list item
const layerList = new LayerList({
view: view,
listItemCreatedFunction: function(event){
const item = event.item;
item.panel = {
content: "legend"
};
}
});
What was asked for and the response are not even close. The existing widget does not incorporate selectability or the actual symbology. What I am looking for is a widget that read the service and displays a legend that includes the layer list and legend features all in one without having to do much coding.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.