Represents a sublayer in a SubtypeGroupLayer. Each SubtypeSublayer is not a standalone service, but rather each sublayer corresponds to one subtype in the source feature service. This pattern allows each sublayer to be symbolized independently of one another, without requiring an individual service per sublayer. This relationship differs from the relationship between the MapImageLayer and its sublayers. In the case with the MapImageLayer, its sublayers represent individual map services.
The SubtypeSublayers are identified by their unique subtypeCode. You can configure the properties of each sublayer while initializing the SubtypeGroupLayer
// Only includes one SubtypeSublayer from the SubtypeGroupLayer
let layer = new SuptypeGroupLayer({
url: "https://sampleserver7.arcgisonline.com/server/rest/services/UtilityNetwork/NapervilleElectric/FeatureServer/0",
sublayers: [{ // autocasts as a Collection of SubtypeSublayers
subtypeCode: 14,
visible: true,
renderer: {
type: "simple", // autocasts as a SimpleRenderer()
symbol: {
type: "simple-marker", // autocasts as a SimpleMarkerSymbol()
style: "circle",
color: [120, 120, 120, 255],
size: 6
}
}
}]
});
Constructors
-
new SubtypeSublayer(properties)
-
Parameterproperties Objectoptional
See the properties for a list of all the properties that may be passed into the constructor.
Property Overview
Name | Type | Summary | Class |
---|---|---|---|
Capabilities | Describes the layer's supported capabilities. more details | SubtypeSublayer | |
String | The name of the class. more details | Accessor | |
Boolean | Determines if the layer is editable. more details | SubtypeSublayer | |
Boolean | Indicates whether the layer is editable taking in to consideration privileges of the currently signed-in user and whether the parent subtype group layer is editable or not. more details | SubtypeSublayer | |
Field[] | An array of fields in the layer. more details | SubtypeSublayer | |
FormTemplate | The template used in an associated layer's FeatureForm. more details | SubtypeSublayer | |
String | The geometry type of features in the layer. more details | SubtypeSublayer | |
String | The unique ID assigned to the layer. more details | SubtypeSublayer | |
LabelClass[] | The label definition for this layer, specified as an array of LabelClass. more details | SubtypeSublayer | |
Boolean | Indicates whether to display labels for this layer. more details | SubtypeSublayer | |
Boolean | Indicates whether the layer will be included in the legend. more details | SubtypeSublayer | |
Error | The Error object returned if an error occurred while loading. more details | SubtypeSublayer | |
String | Represents the status of a load operation. more details | SubtypeSublayer | |
Object[] | A list of warnings which occurred while loading. more details | SubtypeSublayer | |
Number | The maximum scale (most zoomed in) at which the layer is visible in the view. more details | SubtypeSublayer | |
Number | The minimum scale (most zoomed out) at which the layer is visible in the view. more details | SubtypeSublayer | |
String | The name of an | SubtypeSublayer | |
Number | The opacity of the layer. more details | SubtypeSublayer | |
SubtypeGroupLayer | The SubtypeGroupLayer to which the sublayer belongs. more details | SubtypeSublayer | |
Boolean | Indicates whether to display popups when features in the layer are clicked. more details | SubtypeSublayer | |
PopupTemplate | The popup template for the layer. more details | SubtypeSublayer | |
Renderer | The renderer assigned to the layer. more details | SubtypeSublayer | |
SpatialReference | The spatial reference of the layer. more details | SubtypeSublayer | |
Number | The unique identifier representing the SubtypeSublayer created from the SubtypeGroupLayer. more details | SubtypeSublayer | |
FeatureTemplate[] | An array of feature templates defined in the feature layer. more details | SubtypeSublayer | |
String | The title of the layer used to identify it in places such as the Legend widget. more details | SubtypeSublayer | |
String | For SubtypeSublayer the type is always "subtype-sublayer". more details | SubtypeSublayer | |
Boolean | Indicates if the layer is visible in the View. more details | SubtypeSublayer |
Property Details
-
capabilities CapabilitiesreadonlySince: ArcGIS Maps SDK for JavaScript 4.27
-
Describes the layer's supported capabilities.
-
The name of the class. The declared class name is formatted as
esri.folder.className
.
-
editingEnabled Boolean
-
Determines if the layer is editable.
- Default Value:true
- See also
-
effectiveEditingEnabled BooleanreadonlySince: ArcGIS Maps SDK for JavaScript 4.26
-
Indicates whether the layer is editable taking in to consideration privileges of the currently signed-in user and whether the parent subtype group layer is editable or not.
-
An array of fields in the layer. Each field represents an attribute that may contain a value for each feature in the layer. For example, a field named
POP_2015
, stores information about total population as a numeric value for each feature; this value represents the total number of people living within the geographic bounds of the feature.Example// define each field's schema const fields = [ new Field({ name: "ObjectID", alias: "ObjectID", type: "oid" }), new Field({ name: "description", alias: "Description", type: "string" }), new Field ({ name: "title", alias: "Title", type: "string" }) ]; // See the sample snippet for the source property const layer = new SubtypeSublayer({ // Object ID field is inferred from the fields array fields: fields });
-
formTemplate FormTemplateautocast
-
The template used in an associated layer's FeatureForm. All of the properties and field configurations set on the layer's FeatureForm are handled via the FormTemplate.
- See also
Example// Create the Field Elements to pass into the template const fieldElement1 = new FieldElement({ fieldName: "firstname", label: "First name", description: "First name of emergency contact" }); const fieldElement2 = new FieldElement({ fieldName: "lastname", label: "Last name", description: "Last name of emergency contact" }); // Create the form's template const formTemplate = new FormTemplate({ title: "Emergency information", description: "In case of emergency, update any additional information needed", elements: [fieldElement1, fieldElement2] // pass in array of field elements from above }); // Pass the template to the layer subtypeSublayer.formTemplate = formTemplate; // Pass the layer to the FeatureForm const form = new FeatureForm({ container: "form", // html div referencing the form layer: subtypeSublayer });
-
geometryType StringreadonlySince: ArcGIS Maps SDK for JavaScript 4.27
-
The geometry type of features in the layer. All features must be of the same type.
Possible Values:"point"|"multipoint"|"polyline"|"polygon"|"multipatch"|"mesh"
-
id Stringreadonly
-
The unique ID assigned to the layer.
-
labelingInfo LabelClass[]autocast
-
The label definition for this layer, specified as an array of LabelClass. Use this property to specify labeling properties for the layer such as label expression, placement, and size.
Multiple Label classes with different
where
clauses can be used to define several labels with varying styles on the same feature. Likewise, multiple label classes may be used to label different types of features (for example blue labels for lakes and green labels for parks).See the Labeling guide page for more information and known limitations.
Known Limitations
3D SceneViews only support displaying one LabelClass per feature.
- See also
Exampleconst statesLabelClass = new LabelClass({ labelExpressionInfo: { expression: "$feature.NAME" }, symbol: { type: "text", // autocasts as new TextSymbol() color: "black", haloSize: 1, haloColor: "white" } }); subtypeSubLayer.labelingInfo = [ statesLabelClass ];
-
labelsVisible Boolean
-
Indicates whether to display labels for this layer. If
true
, labels will appear as defined in the labelingInfo property.Known Limitations
3D SceneViews only support displaying one LabelClass per feature.
- Default Value:true
-
legendEnabled Boolean
-
Indicates whether the layer will be included in the legend.
- Default Value:true
-
loadError Errorreadonly
-
The Error object returned if an error occurred while loading.
- Default Value:null
-
loadStatus Stringreadonly
-
Represents the status of a load operation.
Value Description not-loaded The object's resources have not loaded. loading The object's resources are currently loading. loaded The object's resources have loaded without errors. failed The object's resources failed to load. See loadError for more details. Possible Values:"not-loaded"|"loading"|"failed"|"loaded"
- Default Value:not-loaded
-
A list of warnings which occurred while loading.
-
maxScale Number
-
The maximum scale (most zoomed in) at which the layer is visible in the view. If the map 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. The maxScale value should always be smaller than the minScale value, and greater than or equal to the service specification.
- Default Value:0
-
minScale Number
-
The minimum scale (most zoomed out) at which the layer is visible in the view. If the map 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. The minScale value should always be larger than the maxScale value, and lesser than or equal to the service specification.
- Default Value:0
-
objectIdField Stringreadonly
-
The name of an
oid
field containing a unique value or identifier for each feature in the layer. This property is required when constructing a FeatureLayer from a collection of client-side features. If not specified, it will be inferred from the fields array.
-
opacity Number
-
The opacity of the layer. This value can range between
1
and0
, where0
is 100 percent transparent and1
is completely opaque.- Default Value:1
Example// Makes the layer 50% transparent layer.opacity = 0.5;
-
parent SubtypeGroupLayer
-
The SubtypeGroupLayer to which the sublayer belongs.
-
popupEnabled Boolean
-
Indicates whether to display popups when features in the layer are clicked. The layer needs to have a popupTemplate to define what information should be displayed in the popup. Alternatively, a default popup template may be automatically used if Popup.defaultPopupTemplateEnabled is set to
true
.- Default Value:true
- See also
-
popupTemplate PopupTemplateautocast
-
The popup template for the layer. When set on the layer, the
popupTemplate
allows users to access attributes and display their values in the view's popup when a feature is selected using text and/or charts. See the PopupTemplate sample for an example of how PopupTemplate interacts with a FeatureLayer.A default popup template is automatically used if no
popupTemplate
has been defined when Popup.defaultPopupTemplateEnabled is set totrue
.- See also
-
The renderer assigned to the layer. The renderer defines how to visualize each feature in the layer. Depending on the renderer type, features may be visualized with the same symbol, or with varying symbols based on the values of provided attribute fields or functions.
However, when creating a FeatureLayer from client-side features, this property must be specified in the layer's constructor along with the source, fields, objectIdField properties.
Example// all features in the layer will be visualized with // a 6pt black marker symbol and a thin, white outline layer.renderer = { type: "simple", // autocasts as new SimpleRenderer() symbol: { type: "simple-marker", // autocasts as new SimpleMarkerSymbol() size: 6, color: "black", outline: { // autocasts as new SimpleLineSymbol() width: 0.5, color: "white" } } };
-
spatialReference SpatialReference
-
The spatial reference of the layer. When creating the layer from a url, the spatial reference is read from the service.
When creating a FeatureLayer from client-side features, this property is inferred from the geometries of the features provided in the source property.
-
subtypeCode Number
-
The unique identifier representing the SubtypeSublayer created from the SubtypeGroupLayer.
- Default Value:null
-
templates FeatureTemplate[]
-
An array of feature templates defined in the feature layer. See ArcGIS Pro subtypes document.
-
title String
-
The title of the layer used to identify it in places such as the Legend widget. The title is set to the subtype description of layer.
-
type Stringreadonly
-
For SubtypeSublayer the type is always "subtype-sublayer".
-
visible Boolean
-
Indicates if the layer is visible in the View. When
false
, the layer may still be added to a Map instance that is referenced in a view, but its features will not be visible in the view.- Default Value:true
Example// The layer is no longer visible in the view layer.visible = false;
Method Overview
Name | Return Type | Summary | Class |
---|---|---|---|
Promise<FeatureEditResult> | Adds an attachment to a feature. more details | SubtypeSublayer | |
Adds one or more handles which are to be tied to the lifecycle of the object. more details | Accessor | ||
Cancels a load() operation if it is already in progress. more details | SubtypeSublayer | ||
PopupTemplate | Creates a popup template for the layer, populated with all the fields of the layer. more details | SubtypeSublayer | |
Promise<FeatureEditResult> | Deletes attachments from a feature. more details | SubtypeSublayer | |
Field | Returns the Field instance for a field name (case-insensitive). more details | SubtypeSublayer | |
Domain | Returns the Domain associated with the given field name. more details | SubtypeSublayer | |
Boolean | Returns true if a named group of handles exist. more details | Accessor | |
Boolean |
| SubtypeSublayer | |
Boolean |
| SubtypeSublayer | |
Boolean |
| SubtypeSublayer | |
Promise | Loads the resources referenced by this class. more details | SubtypeSublayer | |
Promise<object> | Query information about attachments associated with features. more details | SubtypeSublayer | |
Removes a group of handles owned by the object. more details | Accessor | ||
Promise<FeatureEditResult> | Updates an existing attachment for a feature. more details | SubtypeSublayer | |
Promise |
| SubtypeSublayer |
Method Details
-
addAttachment(feature, attachment){Promise<FeatureEditResult>}
-
Adds an attachment to a feature. This operation is available only if the layer's capabilities.data.supportsAttachment is
true
.Parametersfeature GraphicFeature to associate with the added attachment.
attachment HTMLFormElement|FormDataHTML form that contains a file upload field specifying the file to be added as an attachment.
ReturnsType Description Promise<FeatureEditResult> When resolved, a FeatureEditResult object is returned. - See also
Exampleview.when(function () { view.on("click", function (event) { view.hitTest(event).then(function (response) { const feature = response.results[0].graphic; // The form is defined as below in the html. // For enterprise services: // 1. File input name must be "attachment" // <form id="attachmentForm"> // Select a file: <input type="file" name="attachment"> // </form> const attachmentForm = document.getElementById("attachmentForm"); const formData = new FormData(attachmentForm); // For enterprise services - add input with name:f and value:json formData.append("f","json"); const form = new FormData(); form.set("attachment", file); form.append("f","json") let form = document.getElementById("myForm"); // Add an attachment to the clicked feature. // The attachment is taken from the form. layer.addAttachment(feature, form).then(function (result) { console.log("attachment added: ", result); }) .catch(function (err) { console.log("attachment adding failed: ", err); }); }); }); });
-
addHandles(handleOrHandles, groupKey)inheritedSince: ArcGIS Maps SDK for JavaScript 4.25
-
Adds one or more handles which are to be tied to the lifecycle of the object. The handles will be removed when the object is destroyed.
// Manually manage handles const handle = reactiveUtils.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); this.addHandles(handle); // Destroy the object this.destroy();
ParametershandleOrHandles WatchHandle|WatchHandle[]Handles marked for removal once the object is destroyed.
groupKey *optionalKey identifying the group to which the handles should be added. All the handles in the group can later be removed with Accessor.removeHandles(). If no key is provided the handles are added to a default group.
-
cancelLoad()
-
Cancels a load() operation if it is already in progress.
-
createPopupTemplate(options){PopupTemplate}
-
Creates a popup template for the layer, populated with all the fields of the layer.
Parameteroptions CreatePopupTemplateOptionsoptionalOptions for creating the popup template.
ReturnsType Description PopupTemplate The popup template, or null
if the layer does not have any fields.
-
deleteAttachments(feature, attachmentIds){Promise<FeatureEditResult>}Since: ArcGIS Maps SDK for JavaScript 4.26
-
Deletes attachments from a feature. This operation is available only if the layer's capabilities.data.supportsAttachment is set to
true
.Parametersfeature GraphicFeature containing attachments to be deleted.
Ids of the attachments to be deleted.
ReturnsType Description Promise<FeatureEditResult> When resolved, a FeatureEditResult object is returned. FeatureEditResult indicates whether or not the edit was successful. If successful, the objectId
of the result is the Id of the new attachment. If unsuccessful, it also includes an errorname
and errormessage
.- See also
-
getField(fieldName){Field}
-
Returns the Field instance for a field name (case-insensitive).
ParameterfieldName StringName of the field.
ReturnsType Description Field the matching field or undefined
- See also
-
getFieldDomain(fieldName){Domain}
-
Returns the Domain associated with the given field name. The domain can be either a CodedValueDomain or RangeDomain.
ParameterfieldName StringName of the field.
ReturnsType Description Domain The Domain object associated with the given field name for the given feature. Example// Get a range domain associated with the first feature // returned from queryFeatures(). subtypeSublayer.queryFeatures(query).then(function(results){ const domain = subtypeSublayer.getFieldDomain("Height"); console.log("domain", domain) });
-
Since: ArcGIS Maps SDK for JavaScript 4.25
-
Returns true if a named group of handles exist.
ParametergroupKey *optionalA group key.
ReturnsType Description Boolean Returns true
if a named group of handles exist.Example// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
isFulfilled(){Boolean}
-
isFulfilled()
may be used to verify if creating an instance of the class is fulfilled (either resolved or rejected). If it is fulfilled,true
will be returned.ReturnsType Description Boolean Indicates whether creating an instance of the class has been fulfilled (either resolved or rejected).
-
isRejected(){Boolean}
-
isRejected()
may be used to verify if creating an instance of the class is rejected. If it is rejected,true
will be returned.ReturnsType Description Boolean Indicates whether creating an instance of the class has been rejected.
-
isResolved(){Boolean}
-
isResolved()
may be used to verify if creating an instance of the class is resolved. If it is resolved,true
will be returned.ReturnsType Description Boolean Indicates whether creating an instance of the class has been resolved.
-
load(signal){Promise}
-
Loads the resources referenced by this class. This method automatically executes for a View and all of the resources it references in Map if the view is constructed with a map instance.
This method must be called by the developer when accessing a resource that will not be loaded in a View.
The
load()
method only triggers the loading of the resource the first time it is called. The subsequent calls return the same promise.It's possible to provide a
signal
to stop being interested into aLoadable
instance load status. When the signal is aborted, the instance does not stop its loading process, only cancelLoad can abort it.Parametersignal AbortSignaloptionalSignal object that can be used to abort the asynchronous task. The returned promise will be rejected with an Error named
AbortError
when an abort is signaled. See also AbortController for more information on how to construct a controller that can be used to deliver abort signals.ReturnsType Description Promise Resolves when the resources have loaded.
-
Since: ArcGIS Maps SDK for JavaScript 4.26
-
Query information about attachments associated with features. It will return an error if the layer's capabilities.data.supportsAttachment property is
false
. Attachments for multiple features can be queried if the layer's capabilities.operations.supportsQueryAttachments istrue
.Known Limitations
When the layer's capabilities.operations.supportsQueryAttachments property is
false
, AttachmentQuery.objectIds property only accepts a singleobjectId
.ParametersAutocasts from ObjectSpecifies the attachment parameters for query.
options ObjectoptionalAn object with the following properties.
Specificationsignal AbortSignaloptionalSignal object that can be used to abort the asynchronous task. The returned promise will be rejected with an Error named
AbortError
when an abort is signaled. See also AbortController for more information on how to construct a controller that can be used to deliver abort signals.ReturnsType Description Promise<object> When resolved, returns an object containing AttachmentInfos grouped by the source feature objectIds. ExamplesubtypeGroupLayer.when(function () { // queryObjectIds for all features within the layer subtypeGroupLayer.queryObjectIds().then(function (objectIds) { // Define parameters for querying attachments, // query features where objectIds are less than 735, // and only query jpeg attachments for these features. let attachmentQuery = { objectIds: objectIds, definitionExpression: "OBJECTID < 735", attachmentTypes: ["image/jpeg"] }; // Only pass in one objectId for attachmentQuery.objectIds // if the layer's capabilities.operations.supportsQueryAttachments is false subtypeGroupLayer.queryAttachments(attachmentQuery).then(function (attachments) { // Print out all returned attachment infos to the console. attachmentQuery.objectIds.forEach(function (objectId) { if (attachments[objectId]) { let attachment = attachments[objectId]; console.group("attachment for", objectId); attachment.forEach(function (item) { console.log("attachment id", item.id); console.log("content type", item.contentType); console.log("name", item.name); console.log("size", item.size); console.log("url", item.url); console.groupEnd(); }); } }); }) .catch(function (error) { console.log("attachment query error", error); }) }); });
-
removeHandles(groupKey)inheritedSince: ArcGIS Maps SDK for JavaScript 4.25
-
Removes a group of handles owned by the object.
ParametergroupKey *optionalA group key or an array or collection of group keys to remove.
Exampleobj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");
-
updateAttachment(feature, attachmentId, attachment){Promise<FeatureEditResult>}Since: ArcGIS Maps SDK for JavaScript 4.26
-
Updates an existing attachment for a feature. This operation is available only if the layer's capabilities.data.supportsAttachment is set to
true
.Parametersfeature GraphicThe feature containing the attachment to be updated.
attachmentId NumberId of the attachment to be updated.
attachment HTMLFormElement|FormDataHTML form that contains a file upload field pointing to the file to be added as an attachment.
ReturnsType Description Promise<FeatureEditResult> When resolved, a FeatureEditResult object is returned. FeatureEditResult indicates whether or not the edit was successful. If successful, the objectId
of the result is the Id of the new attachment. If unsuccessful, it also includes an errorname
and errormessage
.- See also
-
when(callback, errback){Promise}
-
when()
may be leveraged once an instance of the class is created. This method takes two input parameters: acallback
function and anerrback
function. Thecallback
executes when the instance of the class loads. Theerrback
executes if the instance of the class fails to load.Parameterscallback FunctionoptionalThe function to call when the promise resolves.
errback FunctionoptionalThe function to execute when the promise fails.
ReturnsType Description Promise Returns a new promise for the result of callback
that may be used to chain additional functions.Example// Although this example uses MapView, any class instance that is a promise may use when() in the same way let view = new MapView(); view.when(function(){ // This function will execute once the promise is resolved }, function(error){ // This function will execute if the promise is rejected due to an error });