Skip to content

Instantly share code, notes, and snippets.

@green3g
Last active February 20, 2019 21:15
Show Gist options
  • Select an option

  • Save green3g/127a2b74b49f45ee49778049f82156b5 to your computer and use it in GitHub Desktop.

Select an option

Save green3g/127a2b74b49f45ee49778049f82156b5 to your computer and use it in GitHub Desktop.
// config.js
export default {
view: {
map: {...},
widgets: [{
type: 'layers',
options: {
// pass options to the layers list widget
// https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#listItemCreatedFunction
listItemCreatedFunction(item){
item.panel = {content: item.layer.layerId + ' ' + item.layer.title }
}
}
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment