Sublayer Properties
Sublayer objects define information about which sublayers are included and various properties about them.
Map Image Sublayers
The required property is index, an integer that aligns to the layer index on the ArcGIS Server (called id in a Map Server's json response).
The sublayer also supports the following properties (see above for details). Some properties only apply to feature sublayers and not raster sublayers.
controlscosmeticcustomRenderer(feature only)disabledControlsextentfieldMetadata(feature only)fixturesinitialFilteredQuery(feature only)labels(see below)namenameField(feature only)state
{
sublayers: [
{
index: 5,
state: {
opacity: 0.5
},
name: "Fancy Sublayer"
},
{
index: 8
}
]
}Labels
Map Image Layers can include label text in their result, assuming the service is configured to support it. The visibility of these labels can be controlled via the labels option. If missing, the service default is used.
{
sublayers: [
{
index: 5,
labels: {
visibile: false
}
}
]
}There is also a map level override that can apply to all MIL Sublayers in the instance. It will take precedence over service defaults, but not over specific configuration on a sublayer object. This is primarily a shortcut to avoid adding definitions to multiple layer configs.
{
map: {
labelsDefault: {
visible: false
}
}
}WMS Sublayers
The required property is id, a string that aligns to the layer Name on the WMS.
The sublayer also supports the following properties (see above for details).
controlsdisabledControlsextentnamestate
{
sublayers: [
{
id: "Houses",
state: {
opacity: 0.7
},
name: "Nice Homes"
}
]
}Beta Property - styleLegends
This is not fully implemented, but the limited functionality can allow one to override the sublayer's legend graphic. It will only work on the sublayer's default style.
{
sublayers: [
{
id: "Houses",
styleLegends: [
{
name: "defaultStyleName",
url: "http://www.myserver.ca/custom-legend-graphic.png"
}
]
}
]
}