Hello
I am very new to javascript coding, I had a third party group build a webmap for us. We are in testing phase now and I am trying to learn basics. My layer data is stored in ArcGIS Online as feature service layers and we are using web token to connect to the data map and layers. I was wanting to set up labels for each feature and where to add the code in.
Here is a sample of the connected in the code
{
type: 'feature',
url: 'https:// /FeatureServer/1?token=' + tokenNumber,
title: 'Parcels',
options: {
id: 'Parcels',
opacity: 1.0,
visible: true,
outFields: ['*'],
mode: 1
},
editorLayerInfos: {
disableGeometryUpdate: false
},
legendLayerInfos: {
exclude: false,
layerInfo: {
title: 'Parcels'
}
},
layerControlLayerInfos: {
layerGroup: 'Parcels'
}
},
Any good references would help. Thank you