Skip to content

Experience Builder Data

Since version: 1.32

The Experience Builder Data profile is used to create a FeatureSet as a data source in an ArcGIS Experience Builder app.

Context

The following products implement this profile:

Spatial reference

The spatial reference of this execution context is always Web Mercator (wkid: 3857).

Time zone

The Experience Builder time zone determines the execution context's default time zone.

Profile variables

This profile does not provide any profile variables.

Function bundles

Core | Geometry | Data Access | Portal Access

Return types

FeatureSet

Example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
var p = Portal("https://arcgis.com");

// world cities
var features = FeatureSetByPortalItem(p, "d7cd2181ca854523a90b0e1147604a4d", 0, [
"CITY_NAME", "POP", "POP_RANK", "POP_CLASS"
], true);

return Filter(features, "POP > 1000000");

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.