|
IDEA
|
Absolutely agree with this. It would be good to be able to configure them separately. Another use case for this discussion is that we have a primary layer for which we show the details in a list and feature info widget. For this layer, we'd like to disable popups, but still allow selection from the map (without the select widget, which is too cumbersome for this). Or as described in the original post, the popup could have just a title, but details are found in Feature Info. Then, we have secondary layers that are not used in list or feature info widgets. For these, we'd like to keep the popups as the way to get more info. Because of this, we can't disable popups on the ExB map widget. Possible options would be to allow the selection when popup disabled in web map (described in related post here) or for ExB to allow disabling (or perhaps configuring) popups for individual layers. Thanks!
... View more
06-23-2021
09:14 AM
|
0
|
0
|
5656
|
|
POST
|
Also interested in a timeline for this. I have the same issue, where the feature info widget takes over the selecting. I'd like to use Selected Features, but I need the popup configuration. Thanks.
... View more
06-23-2021
08:32 AM
|
1
|
0
|
3513
|
|
BLOG
|
@KevinGonzago , @Jianxia I see Print on the list. Do you all know of a timeline for a print widget for exp builder? Thanks!
... View more
04-15-2021
05:33 AM
|
6
|
0
|
18959
|
|
IDEA
|
I'm curious if anyone can let me know if the consideration of this feature has moved along any? I ask because I am being asked to provide an update on whether we should look into an Esri solution for this in near future. Thanks!
... View more
04-14-2021
07:48 AM
|
0
|
0
|
4164
|
|
IDEA
|
Definitely agree this would be helpful. Triple Kudos if I could. We have groundwater data and values are feet below land surface. Right now, we are using a custom programmed web page, which works well, but the person who developed it has moved on to another position. If we could build out a dashboard and show the data properly with an inverted axis, we could port it over to something that could be maintained over time. See image for axis inverted in our application. This kind of thing is applicable in many geological and water applications, since they deal with the subsurface.
... View more
01-28-2021
10:00 AM
|
0
|
0
|
4288
|
|
IDEA
|
I can see that it wouldn't make quite as much sense to define things outside of one layer. Unless some custom functions could be defined and accept parameters and then could be re-used. An simple example use case for passing parameters to an expression: This example really still applies to a single layer, but could possibly be extrapolated beyond. Say you have a bunch of numeric data and some kind of total column, illustrated in table below. You want to report for each row the Value as a ratio of total and of each other. You could have one expression for a ratio, which would take two arguments; could be fields, or could be some set value. ID Value1 Value2 Value3 Value4 TOTAL A 12 6 6 0 24 B 10 10 0 5 25 C 0 10 10 10 30 Then in the popup configuration, you just call that one expression where you want it along with the fields you want to use in the expression: POPUP Station A Value 1 / TOTAL: {expression/expr0, Value1, TOTAL} Value 2 / TOTAL: {expression/expr0, Value2, TOTAL} Value 3 / TOTAL: {expression/expr0, Value3, TOTAL} Value 1 / Value 2: {expression/expr0, Value1, Value2} etc... I know you could achieve this example in one expression and return the lines with text formatting. But you loose some control of formatting that way. Or some If or When statements in a single expression to account for different fields. But things get a little messier if it were a more complex expression. Possibly I'm missing something existing that makes this easier than I'm thinking about it here. If so, this discussion may not be helpful :).
... View more
01-28-2021
09:48 AM
|
0
|
0
|
3165
|
|
IDEA
|
@Anonymous User I have to admit I either overlooked that 'Existing' tab, or it is very new. Anyways, that is definitely helpful for reusing pieces of code across multiple expressions, thanks! Maybe the Existing tab idea could be expanded. What if all of your expressions were managed in an Expression Manager that looked a lot like that Existing tab. All of your expressions are listed there, and you could easily move between them to make edits - click an expression name on the right, edit the code on the left and save. There could be find and replace, which could be set to within the expression or for all of your expressions. The idea of global scope (sorry if that term is not used correctly). What if you can set an expression to be global, which means it can be referenced by other expressions. When meat of multiple expressions may all be the same, you could define that chunk once and reference that global expression where needed. Or expressions could possibly accept parameters like functions. Could be referenced (in the popup at least) like {expression/expr2, field1, field4}.
... View more
01-21-2021
07:43 PM
|
0
|
0
|
3230
|
|
IDEA
|
That does makes sense. There would need to be a certain amount of topological cleanliness for it to work well, and dense line data may not work well. In my case, I have trails across the state in an enterprise gdb. I might be making maps at all kinds of scales to show those trails. Depending on the scale, I may want them to appear simpler or smoother for a better looking map. I could use the geoprocessing tools, but then I'm adding the step of creating data outside the enterprise db, possibly multiple times because I don't get the parameters just right the first time. Having it in the symbology effects would make it easier to adjust and find the right parameters. Or say the scale of the map has to change for something else, and now I want the trails simplified more or less than before. I'm always looking for ways to not have to take data out of the gdb, so there isn't something that becomes stale later when data change. This kind of situation would apply well to streams in my use case as well. Possibly contours, depending on the source and the scale. Could combine with a definition query to reduce contour interval and then smooth as needed. Thanks!
... View more
01-20-2021
06:24 AM
|
0
|
0
|
2309
|
|
IDEA
|
It would be nice to have 'Simplify Line' and 'Smooth line' in the symbol effects. This would replace to need to use either of those tools in cartography toolset if it could be done dynamically as an effect. The existing effects seem to incorporate somewhat complex geometry operations, so it seems like this could be possible - though I'm sure it would impact performance on a large line datasets. I believe QGIS has some functionality like this for smoothing. One use case - If I have trails in an enterprise database, and I want those trails to look better on the map, I wouldn't have to export data using those tools just to produce one map.
... View more
01-15-2021
12:04 PM
|
3
|
2
|
2339
|
|
IDEA
|
I think it would be useful to define all of your arcade expressions in one file and call those expressions in the popup where needed, instead of having to create expressions in the 'Attribute Expressions' box individually. Something like this pseudo code: exp doThisThing {
some arcade expression
}
exp doAnotherThing {
some arcade expression
} Then when I'm building out my popup, I could just reference the defined expressions in the custom popup configuration. The benefit of this approach would be that I could edit expressions all in one place. It can be cumbersome to make changes to multiple expressions when they are complex and you need to make changes that apply to all. Bonus if you could define some things globally that could be used in multiple expressions so you don't have to do it for each individual expression. Edited to note that @PeterKnoop's explanation below is a good addition.
... View more
01-13-2021
08:06 AM
|
9
|
7
|
3306
|
|
POST
|
Same issue with point data. It works as expected with Dashboards Beta, but there are other issues with that preventing me from using the Beta for this project. Really bummed to be running into this issue.
... View more
11-04-2020
06:35 PM
|
0
|
0
|
6752
|
|
IDEA
|
I agree this would be helpful. As another example: I have a map and list of records from Survey123 in a Dashboard. There are some cases where a person who submitted records might want to make the same set of edits on different records from links in the dashboard - for example set a number field to zero, change the status, change some things back to defaults, and then resubmit.
... View more
10-26-2020
07:16 AM
|
0
|
0
|
4124
|
|
POST
|
Is it possible (or planned to be possible) to use URL parameters to open an existing survey response in edit mode and ALSO pass a new value to one of the questions in the URL? ?mode=edit&globalId=<global id>&field:fieldName=SomeValue I read through comments on blogs by Ismael Chivite but did not see an answer to this question, though one person did have this same question / use case.
... View more
10-14-2020
10:03 AM
|
0
|
3
|
1999
|
|
POST
|
I had this issue as well. It was producing the 'cents' sign when 'center' followed ampersand. But I am linking to a survey123 on the web rather than native app. When I put 'center' as the first parameter, following a question mark, it worked. https ://survey123.arcgis.com/share/<itemid>?center=30.5,-80.5 However, I ran into another issue where I want to use the URL Encode function in Arcade. It works fine from the web map, but does not work from dashboard. I'm trying to handle apostrophes that break the URL.
... View more
10-13-2020
09:18 AM
|
0
|
0
|
406
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-15-2022 05:45 AM | |
| 1 | 07-27-2023 09:10 AM | |
| 2 | 10-17-2024 11:45 AM | |
| 1 | 06-23-2021 08:32 AM | |
| 2 | 06-27-2023 08:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
12-11-2024
01:48 PM
|