The Footprints feature layer shows the boundary or extent of each item participating in the catalog dataset. Can exist only as a child of a catalog layer.
Referenced by: Catalog Layer (CatalogLayer)
Properties
Property | Details |
---|---|
disablePopup | Indicates whether to allow a client to ignore popups defined by the service item. |
id | A unique identifying string for the layer. |
layerDefinition | Additional properties that define drawing information and other configurations for the layer. See layerDefinition properties table. |
listMode | To show or hide layers in the layer list Valid values:
|
opacity | The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency. |
popupInfo | A popupInfo object defining the content of popup windows when you click or query a feature. |
showLabels | Labels will display if this property is set to true and the layer also has a labelingInfo property associated with it. |
showLegend | Boolean value indicating whether to display the layer in the legend. Default value is true . |
title | A user-friendly string title for the layer that can be used in a table of contents. |
visibility | Boolean property determining whether the layer is initially visible in the web scene. |
layerDefinition properties
Property | Details |
---|---|
drawingInfo.labelingInfo[] | An array of labelingInfo objects. |
drawingInfo.renderer | The renderer object contains the drawing information for the operationalLayer. |
elevationInfo | Elevation info defines how features are aligned to ground or other layers. |
maxScale | Represents the maximum scale (most zoomed in) at which the layer is visible in the view. If the web scene is zoomed in beyond this scale, the layer will not be visible. A value of 0 means the layer does not have a maximum scale. If set, the maxScale value should always be smaller than the minScale value, and greater than or equal to the service specification. |
minScale | Represents the minimum scale (most zoomed out) at which the layer is visible in the view. If the web scene is zoomed out beyond this scale, the layer will not be visible. A value of 0 means the layer does not have a minimum scale. If set, the minScale value should always be larger than the maxScale value, and lesser than or equal to the service specification. |
Catalog Footprint Layer Example
{
"id": "218843763a9d48559f060c95479f5b7a",
"title": "Footprints",
"visibility": true,
"opacity": 1,
"layerDefinition": {
"minScale": 20000000,
"maxScale": 24000,
"drawingInfo": {
"renderer": {
"type": "simple",
"symbol": {
"type": "PolygonSymbol3D",
"symbolLayers": [
{
"material": {
"color": [
255,
0,
255,
38
]
},
"type": "Fill",
"outline": {
"color": [
255,
0,
255,
255
],
"size": 1
}
}
]
}
}
}
},
"popupInfo": {},
"disablePopup": false,
"showLegend": true
}