|
POST
|
This is in the Dashboard map element configuration, not the web map.
... View more
08-13-2025
11:20 AM
|
0
|
1
|
760
|
|
POST
|
The HTML formatting in a text element doesn't get interpreted in the web map. Instead, use an Arcade element to show the HTML var test = "<b>This is the first line</b><br>This is the second line"
return {
type : 'text',
text : test //this property supports html tags
}
... View more
08-13-2025
11:17 AM
|
3
|
5
|
1887
|
|
POST
|
What do the calculated expressions that use the Manufacture_Date field look like?
... View more
08-13-2025
10:58 AM
|
0
|
3
|
1658
|
|
POST
|
The map's Settings dialog includes a toggle for Layer visibility
... View more
08-13-2025
10:50 AM
|
0
|
0
|
767
|
|
POST
|
You can use an Arcade element to return the formatted text var output = `<h3 style='margin:0;'>Mingo Ruddell Quiet Zone - Mingo St</h3><strong>Start:</strong> July 16, 2025 <strong>End:</strong> May 1, 2028<br><strong>Description:</strong><br><details><summary>Read more</summary>Mingo Road Improvements from Mingo/Bell intersection to Mingo/Mockingbird intersection. Improvements to include a possible center-left-turn lane, street lighting, new bike/ped facilities, as well as drainage and utility improvements as needed</details><br><a href='somewebite.com' target='_blank'>More Info</a></div>`
return {
type : 'text',
text : output
} and it looks like you have an extra </div> at the end of the string
... View more
08-08-2025
12:48 PM
|
1
|
0
|
1297
|
|
POST
|
It looks like your app uses JavaScript 3.x, which is used by Map Viewer Classic. Some Arcade functionality is not available in JavaScript 3.x (see the matrix here), since the latest JavaScript version (3.43) only has access to Arcade version 1.21. That popup element doesn't work in my testing in Map Viewer Classic. Map Viewer popup Map Viewer Classic popup
... View more
08-08-2025
07:32 AM
|
1
|
0
|
450
|
|
IDEA
|
The user should also be notified when closing a project that memory workspace layers data sources will be lost.
... View more
08-06-2025
08:01 AM
|
0
|
0
|
369
|
|
POST
|
Unfortunately, you can't use formatting tags in Arcade for labels on AGOL. What you would have to do is create a separate label class for each type of name. In each label class use the Label style to set the font and Offset Y to provide the proper spacing
... View more
08-05-2025
10:35 AM
|
2
|
0
|
466
|
|
IDEA
|
The Edit select tools should work the same as in other Esri products (like ArcGIS Pro), where you can add items to a selection using Shift+mouse and remove items using Ctrl+mouse. Currently, you have to select more than one item initially before you can add to the selection, but this is using Ctrl+mouse. The only way to remove items from the selection is clicking on them individually from the list. It's easier in some circumstances to remove a number of features using the mouse on the map. It would also be helpful to flash the features on the map as you mouse over them in the list (and/or add a Flash capability in the Overflow options)
... View more
08-05-2025
10:00 AM
|
4
|
1
|
311
|
|
POST
|
You can trouble-shoot by using the Console function and opening the Console tab after clicking "Run" The code would sometimes not run due to the bin names. If I changed them to this, it would run consistently var bins = {
"a": 0,
"b": 0,
"c": 0,
"d": 0,
"e": 0
};
for (var f in fs) {
var acres = f["Taxlot_Acres"];
if (IsEmpty(acres)) continue;
When(
acres < 1, bins["a"] += 1,
acres < 5, bins["b"] += 1,
acres < 10, bins["c"] += 1,
acres < 24, bins["d"] += 1,
bins["e"] += 1
);
} Then you would add the proper column names in the settings
... View more
08-05-2025
07:29 AM
|
0
|
0
|
647
|
|
POST
|
This should work // Connect to your hosted feature layer by portal item ID and layer index
var portal = Portal("https://www.arcgis.com");
var fs = FeatureSetByPortalItem(
portal,
"012345ABCEDF6789", // Your item ID
2, // Layer index
["Taxlot_Acres"], // Only bring in needed field
false // Exclude geometry (faster)
);
// Define output schema
var fields = [
{ name: "bin", type: "esriFieldTypeString" },
{ name: "count", type: "esriFieldTypeInteger" }
];
// Initialize bin counters
var bins = {
"<1": 0,
"1–4": 0,
"5–9": 0,
"10–24": 0,
"25+": 0
};
for (var f in fs) {
var acres = f["Taxlot_Acres"];
if (IsEmpty(acres)) continue;
When(
acres < 1, bins["<1"] += 1,
acres < 5, bins["1-5"] += 1,
acres < 10, bins["5-9"] += 1,
acres < 24, bins["10-24"] += 1,
bins["25+"] += 1
);
}
var features = [];
for (var b of bins) {
Push(features, { attributes: { bin: b.key, count: b.value } });
}
return FeatureSet({ fields: fields, features: features });
... View more
08-04-2025
07:22 AM
|
0
|
3
|
683
|
|
POST
|
Have you checked whether the labels are showing correctly when opened in Map Viewer Classic? Map Viewer Classic and Web AppBuilder use ArcGIS Maps SDK for JavaScript 3.x while the new Map Viewer uses ArcGIS Maps SDK for JavaScript 4.x. If your labels use something only available in 4.x, Web AppBuilder won't be able to render them.
... View more
08-01-2025
01:10 PM
|
0
|
1
|
2091
|
|
POST
|
Why doesn't this use the normal convention (like in ArcGIS Pro and Web AppBuilder) of Shift to add features and Ctrl to remove features?
... View more
07-25-2025
11:41 AM
|
0
|
0
|
1577
|
|
POST
|
You can use the lasso or rectangle tools to do this by just clicking once on the point. What you have to do is hold down the Ctrl key before starting the selection
... View more
07-25-2025
10:31 AM
|
0
|
0
|
1591
|
|
POST
|
Yes, by pressing the Ctrl key while clicking on points, but it doesn't always seem to work properly. I don't know if it's an issue of tolerance, but it doesn't consistently work. You can use the Ctrl key with the rectangle and lasso options to add to the selection. It's surprising that it doesn't follow the normal Esri selection convention of using Shift to add to the selection, Ctrl to remove from the selection
... View more
07-25-2025
08:16 AM
|
2
|
2
|
1637
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-04-2025 06:39 AM | |
| 1 | 2 weeks ago | |
| 1 | 04-10-2026 12:01 PM | |
| 1 | 04-13-2026 09:11 AM | |
| 1 | 10-11-2023 06:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|