utils
require(["esri/widgets/smartMapping/support/utils"], function(smartMappingUtils) { /* code goes here */ });
esri/widgets/smartMapping/support/utils
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. more details | more details | utils | |
Number[] | Computes and returns standard deviation values based on the given average and standard deviation. more details | more details | utils |
Method Details
- formatDateLabel(value){String}Since: ArcGIS API for JavaScript 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 NumberThe UNIX timestamp to convert to a formatted date string.
Returns:Type Description String Returns a formated date string.
Computes and returns standard deviation values based on the given average and standard deviation.
Parameters:standardDeviation NumberThe standard deviation from the given
average
.average NumberThe average of the dataset from which to compute standard deviation values.
count NumberThe number of standard deviations from the mean to compute.
Returns:Type Description Number[] Returns the standard deviation values from the given average.