|
POST
|
Hi, You can modify editing templates in the Classic Map Viewer but not the new Map Viewer. Kind of clunky but try adding the layer to a Classic Map Viewer map, click Edit and then Manage at the bottom of the Add Features panel. You can change the name of the template in there. Create feature templates in Map Viewer Classic Does that help?
... View more
05-12-2023
09:11 AM
|
0
|
0
|
845
|
|
POST
|
Thanks for your reply, Jennifer. I do not own the layer that is supplying the data, so I can't modify it's pop up. I'm pulling in the data using the FeatureSetByPortalItem function, combining it with data from another item and then creating a new FeatureSet object from a JSON definition. I'd be surprised that it would still be formatting the field based on the popup of the original item, since I'm defining a new field. I even tried giving it a different name. The JSON used to create the Feature Set includes the correct number of decimal places. Thanks again!
... View more
04-24-2023
09:06 AM
|
0
|
0
|
1412
|
|
POST
|
Hi, I've created a Data Expression that returns a feature set with several esriFieldTypeDouble fields. When I run it in the Arcade editor, the Output looks correct, with all of the decimal places being preserved. However when I view the Data Table in the widget editor only 2 decimal places are shown. This is a problem because I am sorting on the Double field and the 3rd and 4th digit determine the sort order. Is there a way to format the esriTypeDouble field so that it has more than 2 decimal places? I can probably perform the sort in Arcade but I would like to be able to use the Sort option in the widget editor. Thanks! Jill
... View more
04-21-2023
11:03 AM
|
1
|
2
|
1456
|
|
POST
|
Hi, In a data expression, I'm filtering a feature layer of 911 calls to those in the last 24 hours. The filter often returns more records than I think it should Here is the Arcade: var portal = Portal("https://arcgis.com");
var accidents = FeatureSetByPortalItem(portal, "********",1, ['*'], true)
var t1 = Text(Now(),'Y-MM-DD HH:mm')
var t2 = Text(DateAdd(t1, -24, 'hours'),'Y-MM-DD HH:mm')
var sql = "call > @t2"
Console("call > " + t2)
var recent_accidents = Filter(accidents, sql)
for (var s in recent_accidents) {
Console(Text(s.call,'Y-MM-DD HH:mm'))
} Here are the results: I can't figure out why the call at 14:02 is not being filtered out, even though it occurs before 15:33. Can someone point out my error here? Thanks! Jill
... View more
04-20-2023
01:50 PM
|
0
|
2
|
1072
|
|
POST
|
Hi, Do you mean to loop through the original dataset or the filtered dataset? Also, I'm not sure if the curly braces are required in Arcade. https://developers.arcgis.com/arcade/guide/logic/#for-loops Does the following work? var Land = FeatureSetByName($datastore, "Land", [ "Location","Name","County","School_District","ID"]); VAR LOCATION = FILTER(LAND,"ID=$feature.ID") FOR(VAR I IN LOCATION ) { RETURN I.LOCATION }
... View more
08-30-2022
08:21 AM
|
0
|
0
|
1842
|
|
POST
|
Hi, I think, if I'm understanding you correctly, you just need choose "Apply to outline" in the settings dialog, next to the Color Scheme dropdown. You can increase the width of the outline but choosing "Format all symbols" from the More dropdown on the Classes tab. Does that work? Jill
... View more
08-29-2022
09:05 AM
|
3
|
0
|
6857
|
|
POST
|
Hi, Yes, from the documentation - "This new layer is a view of the data in the hosted feature layer, updates made to the data appear in the hosted feature layer and all of its hosted feature layer views. However, because the view is a separate layer, you can change properties and settings on the view item separately from the hosted feature layer from which it is created." https://doc.arcgis.com/en/arcgis-online/manage-data/create-hosted-views.htm
... View more
06-17-2022
08:38 AM
|
1
|
1
|
2798
|
|
POST
|
Leaflet is a client API, it is used to request data from the ArcGIS Platform services and display it to the end user. It's one of many clients - https://developers.arcgis.com/documentation/mapping-apis-and-services/apis-and-sdks/#web-apis. You can also use a non-Esri client as long as it can communicate with REST endpoint services. The services https://developers.arcgis.com/documentation/mapping-apis-and-services/services/ communicate with the client to provide access to the data and operations such as routing.
... View more
06-17-2022
07:05 AM
|
2
|
0
|
3014
|
|
POST
|
Hi, Is your hosted layer also shared with the public?
... View more
06-16-2022
11:19 AM
|
1
|
1
|
1477
|
|
POST
|
Hi Jeff, In my experience Overwrite usually works without issue but maybe once in a while the service gets corrupted and needs to be deleted and republished. Thanks, Jill
... View more
06-16-2022
10:47 AM
|
0
|
1
|
1907
|
|
POST
|
Hi, Have you looked at ArcGIS Platform? - https://developers.arcgis.com/documentation/mapping-apis-and-services/arcgis-platform/ You can consume individual REST endpoints for just the services you want. Here are are the output formats - https://developers.arcgis.com/rest/services-reference/enterprise/output-formats.htm Jill
... View more
06-16-2022
10:45 AM
|
2
|
0
|
3043
|
|
POST
|
Jeff, Does this bug seem to be what you're experiencing - Bug NIM089166 ? Jill
... View more
06-16-2022
10:35 AM
|
0
|
1
|
1911
|
|
POST
|
Okay, I got this to work but it's really finicky - If I choose the Split By field first, then the Category, then the Statistic, I get the grey symbology. If I fill out the drop downs in a different order - Category, Split By and then Statistic, I get the correct symbology. This of course should not matter but does that work for you?
... View more
06-16-2022
10:25 AM
|
0
|
1
|
1599
|
|
POST
|
Hi Randy, If you go to the Series tab and scroll down you can see where the colors are defined. It looks like it defines a color for the first 25 values or so, and then applies the "other" grey color. What happens if you click "Add Series" and enter one of the location IDs that's been included in the "other" category? Jill
... View more
06-16-2022
10:08 AM
|
0
|
3
|
1603
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-11-2018 10:05 AM | |
| 1 | 04-21-2023 11:03 AM | |
| 1 | 08-22-2024 12:12 PM | |
| 1 | 06-17-2022 08:38 AM | |
| 2 | 05-23-2023 07:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|