utils

AMD: require(["esri/widgets/smartMapping/support/utils"], (smartMappingUtils) => { /* code goes here */ });
ESM: import * as smartMappingUtils from "@arcgis/core/widgets/smartMapping/support/utils.js";
Object: esri/widgets/smartMapping/support/utils
Since: ArcGIS Maps SDK for JavaScript 4.12

Various utils for tying Smart Mapping renderers to the Smart Mapping slider widgets.

Method Overview

Name Return Type Summary Object
String

Formats a UNIX timestamp to a basic date string.

utils
String

Formats a numeric value for display as a label based on the current locale.

utils
Number[]

Computes and returns standard deviation values based on the given average and standard deviation.

utils

Method Details

formatDateLabel

Method
formatDateLabel(value){String}
Since: ArcGIS Maps SDK for JavaScript 4.14 utils since 4.12, formatDateLabel added at 4.14.

Formats a UNIX timestamp to a basic date string. This function is only intended for convenience in formatting thumb values in slider widgets and does not include additional formatting options.

Parameter
value Number

The UNIX timestamp to convert to a formatted date string.

Returns
Type Description
String Returns a formatted date string.

formatNumberLabel

Method
formatNumberLabel(value){String}
Since: ArcGIS Maps SDK for JavaScript 4.19 utils since 4.12, formatNumberLabel added at 4.19.

Formats a numeric value for display as a label based on the current locale.

Parameter
value Number

The value to convert to a formatted label.

Returns
Type Description
String Returns a formatted label based on the current locale.

getDeviationValues

Method
getDeviationValues(standardDeviation, average, count){Number[]}

Computes and returns standard deviation values based on the given average and standard deviation.

Parameters
standardDeviation Number

The standard deviation from the given average.

average Number

The average of the dataset from which to compute standard deviation values.

count Number

The number of standard deviations from the mean to compute.

Returns
Type Description
Number[] Returns the standard deviation values from the given average.

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