POST
|
@JeffreyThompson2 Thanks for the idea. I guess I could have avoided all that and simply created one big image of all the text and images!
... View more
07-28-2025
12:15 PM
|
0
|
0
|
232
|
POST
|
The above is the preview. Why do page elements not stay where I have them in the page (below)? All I'm doing is adding Text and Images to a Sidebar. I'm not sure what Kept within the parent container does, but it doesn't seem to have any effect.
... View more
07-28-2025
11:01 AM
|
0
|
2
|
278
|
POST
|
Could be anything. Here's two things that pop into my head since I can't see your project. Could be there is a Definition Query set to show only certain fields and then forgot about. Right click layer properties > Definition Query. Or look in the symbology. Maybe you don't have all the values added.
... View more
07-25-2025
06:35 AM
|
0
|
1
|
594
|
POST
|
I found a few lines referring to the file sizes allowed in the data-file-upload.tsx file. 10MB is the limit for a .csv file. That can't be what's stopping me. const MaxFileSize: { [key in SupportedFileTypes]: number /** bytes */ } = {
[SupportedFileTypes.CSV]: 10485760,
[SupportedFileTypes.GeoJson]: 10485760,
[SupportedFileTypes.Shapefile]: 2097152,
// KML size limitaion: https://doc.arcgis.com/en/arcgis-online/reference/kml.htm
[SupportedFileTypes.KML]: 10485760,
[SupportedFileTypes.GPX]: 10485760
} So, I looked to the Exceeded Max Records error in the same file, which is apparently 1000. But, I haven't seen where to change it yet.
... View more
07-24-2025
02:59 PM
|
0
|
1
|
362
|
POST
|
@VenkataKondepati Yes, my question is referring to the dev edition. (1) I'm not sure how to get the source file of an out-of-the-box widget such as the Add Data widget. (2) I then was wondering where to tweak it.
... View more
07-24-2025
01:41 PM
|
0
|
1
|
406
|
POST
|
The limit on the Add Data Widget is surprisingly small. It doesn't tell you the limit either. It won't even take a 46KB .csv file. That almost makes it kind of useless. I'm here wondering if I can manipulate the widget to increase the limit? Or can you even customize out-of-the-box widgets? EDIT: The actual error/warning reads: The number of records in <file> exceeds the maximum threshold.
... View more
07-24-2025
01:27 PM
|
0
|
5
|
413
|
POST
|
This tutorial from 2017 has a Move Effect in the Format Polygon Symbol pane. I've added a gradient stroke, but I don't see the Move Effect option. Where is it now? I'm on v. 3.5.2
... View more
07-23-2025
12:31 PM
|
0
|
2
|
216
|
POST
|
Thanks @KenBuja, that works great. Alternatively, could you use When() and DateDiff functions? This is one way I've tried it, but it's not showing all of them. // Variables containing the opening and closing days of the attraction
var openingDay = $feature.Dateof
var closingDay = $feature.closingDate
// Variable containing today's date in date only format
var todaysDate = DateOnly()
// Calculate the number of days between today and opening day
var difDays = DateDiff(openingDay, todaysDate, 'days') //openingDay is a Date only field with opening dates
// Categorize feature based on date comparisons
When(
difDays >= 14 || todaysDate > closingDay, 'Closed',
difDays > 0 && difDays < 15,'Opening soon',
todaysDate > closingDay, 'Over',
'Open'
);
... View more
07-22-2025
02:20 PM
|
0
|
1
|
255
|
POST
|
I have a Date only field called closingDate. How would I use that field in a Styles expression as a means to hide the symbol on the map when that date is over? Something like this: // Variable containing closing day of event
var closingDay = $feature.closingDate
// Variable containing today's date in date only format
var todaysDate = DateOnly()
if (closingDay < todaysDate) {
return null;
}
... View more
07-22-2025
12:52 PM
|
0
|
3
|
286
|
POST
|
Ok. Did you go into the Map Layers widget and select any layers? When none are selected you'll also get that message. No items selected: Items selected (blue check marks next to layers):
... View more
07-15-2025
01:06 PM
|
0
|
0
|
355
|
POST
|
Back in the Map widget are you sure it is selected? That happens when no map is selected, for ex:
... View more
07-15-2025
11:58 AM
|
0
|
0
|
374
|
POST
|
example How would I recreate this expandable "infoDiv" using map components? I don't understand how to get it in the view when there is no longer a view. I'd rather not create a html/css button outside the view. This is the html of the app I'm currently creating. <arcgis-map zoom="14" center="-88.1, 41.5">
<arcgis-search position="top-left"></arcgis-search>
<arcgis-zoom position="top-left"></arcgis-zoom>
<arcgis-home></arcgis-home>
<arcgis-locate scale="5000"></arcgis-locate>
<arcgis-swipe swipe-position="32"></arcgis-swipe>
<arcgis-expand position="top-right">
<arcgis-layer-list></arcgis-layer-list>
</arcgis-expand>
</arcgis-map>
... View more
07-07-2025
09:49 AM
|
0
|
1
|
253
|
POST
|
I have a two fields that deal with the operating hours of cooling centers. The HOURS field has text that displays in a pop-up in AGOL. The HoursDays field converts the hours to the 24hr clock and those values are used in the Arcade expression to style the features in the webmap. The feature styles show either "Open now" or "Closed" based on the 24hr values. // convert to 24 hour time
function ConvertTime(input) {
var theTime = input;
if (Find(":", theTime) > -1) {
var times = split(theTime, ":");
theTime = Number(times[0]) + Number(times[1]) / 60;
}
return Number(theTime);
}
var current = ConvertTime(Time(Now()));
var fTime = $feature.HoursDays;
var times = Split(fTime, ',')
var todaysTime = times[Weekday(Today()) - 1];
if (todaysTime == 'closed') return 'Closed'
var todaysTimes = Split(todaysTime, '-')
var start = ConvertTime(todaysTimes[0]);
var end = ConvertTime(todaysTimes[1]);
iif(current >= start && current <= end, 'Open now', 'Closed') What I'm missing is a way to use Arcade to create a "Closed" style for government holidays, namely: January 1st, 2025 January 20th, 2025 February 17th, 2025 May 26th, 2025 June 19th, 2025 July 4th, 2025 September 1st, 2025 October 13th, 2025 November 11th, 2025 November 27th, 2025 December 25th, 2025 Any ideas?
... View more
06-27-2025
09:43 AM
|
0
|
1
|
1108
|
POST
|
I'm attempting to remove an esri TileLayer from the legend. This does not remove it: esriTileLayer = new TileLayer({
url: "https://services.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer",
legendEnabled: false,
title: "I'm a title",
}); If I do not give it a title the default still appears: esriTileLayer = new TileLayer({
url: "https://services.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer",
legendEnabled: false,
// title: "I'm a title",
});
... View more
04-23-2025
06:27 AM
|
0
|
2
|
405
|
Title | Kudos | Posted |
---|---|---|
1 | 01-17-2019 08:21 AM | |
1 | 07-06-2023 07:08 AM | |
1 | 03-26-2025 06:39 AM | |
1 | 07-31-2024 07:55 AM | |
1 | 03-17-2025 08:52 AM |
Online Status |
Offline
|
Date Last Visited |
Monday
|