interface StreamLayerJson {
    blendMode?:
        | "invert"
        | "normal"
        | "lighter"
        | "multiply"
        | "color"
        | "average"
        | "color-burn"
        | "color-dodge"
        | "darken"
        | "destination-atop"
        | "destination-in"
        | "destination-out"
        | "destination-over"
        | "difference"
        | "exclusion"
        | "hard-light"
        | "hue"
        | "lighten"
        | "luminosity"
        | "minus"
        | "overlay"
        | "plus"
        | "reflect"
        | "saturation"
        | "screen"
        | "soft-light"
        | "source-atop"
        | "source-in"
        | "source-out"
        | "vivid-light"
        | "xor";
    capabilities?: string;
    customParameters?: Record<string, unknown>;
    definitionEditor?: DefinitionEditorJson;
    disablePopup?: boolean;
    effect?: EffectJson;
    featureCollection?: FeatureCollectionJson;
    featureCollectionType?: "route" | "markup" | "notes";
    formInfo?: FormInfoJson;
    id?: string;
    itemId?: string;
    layerDefinition?: LayerDefinitionJson;
    layerType: "ArcGISStreamLayer";
    listMode?: LayerListMode;
    maxScale?: number;
    minScale?: number;
    mode?:
        | 0
        | 1
        | 2
        | 6;
    opacity?: number;
    popupInfo?: PopupInfoJson;
    refreshInterval?: number;
    screenSizePerspective?: boolean;
    showLabels?: boolean;
    showLegend?: boolean;
    subtypeCode?: string | number;
    timeAnimation?: boolean;
    title?: string;
    type?: LegacyOperationalLayerJsonType | LegacyBasemapLayerJsonType;
    url?: string;
    visibility?: boolean;
    visibilityTimeExtent?: [number, number];
    visibleLayers?: number[];
}

Hierarchy

Properties

blendMode?:
    | "invert"
    | "normal"
    | "lighter"
    | "multiply"
    | "color"
    | "average"
    | "color-burn"
    | "color-dodge"
    | "darken"
    | "destination-atop"
    | "destination-in"
    | "destination-out"
    | "destination-over"
    | "difference"
    | "exclusion"
    | "hard-light"
    | "hue"
    | "lighten"
    | "luminosity"
    | "minus"
    | "overlay"
    | "plus"
    | "reflect"
    | "saturation"
    | "screen"
    | "soft-light"
    | "source-atop"
    | "source-in"
    | "source-out"
    | "vivid-light"
    | "xor"

Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer.

capabilities?: string

A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: Create | Delete | Query | Update | Editing.

customParameters?: Record<string, unknown>

A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types.

definitionEditor?: DefinitionEditorJson

Stores interactive filters.

disablePopup?: boolean

Indicates whether to allow a client to ignore popups defined by the service item.

effect?: EffectJson

Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work.

featureCollection?: FeatureCollectionJson

A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied.

featureCollectionType?: "route" | "markup" | "notes"

Indicates the type of features in the feature collection. If featureCollectionType is missing, it means the feature collection is a regular single-layer or multi-layer feature collection.

formInfo?: FormInfoJson

A formInfo object defining the content of the form when you are editing a feature.

id?: string

A unique identifying string for the layer.

itemId?: string

Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.

layerDefinition?: LayerDefinitionJson

A layerDefinition object defining the attribute schema and drawing information for the layer.

layerType

The type of layer.

listMode?: LayerListMode

Indicates how the layer should display in the table of contents. The known values are listed below. See support/esri!ListMode.

maxScale?: number

A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.

minScale?: number

A number representing the minimum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400.

mode?:
    | 0
    | 1
    | 2
    | 6

Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.

  • 0: Snapshot mode. Immediately retrieves all features when the map is loaded.
  • 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps.
  • 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing.
opacity?: number

The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.

popupInfo?: PopupInfoJson

A PopupInfo object defining the content of pop-up windows when you click or query a feature.

refreshInterval?: number

When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm.

screenSizePerspective?: boolean

Apply perspective scaling to screen-size symbols.

showLabels?: boolean

Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.

showLegend?: boolean

Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.

subtypeCode?: string | number

The feature subtype code identifying the layer. Used with SubtypeGroupLayers.

timeAnimation?: boolean

Indicates whether to disable time animation if the layer supports it.

title?: string

A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.

(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.

url?: string

The URL to the layer.If the layer is not from a web service but rather a feature collection, than the url property is omitted.

visibility?: boolean

Determines whether the layer is initially visible in the web map.

visibilityTimeExtent?: [number, number]

Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.

visibleLayers?: number[]

An array of sublayer ids that should appear visible. Used with feature layers that are based on feature collections.