|
POST
|
Apologies, in that case, you just need to add the LS layer to a web map and set it as the QuickCapture project map. You can then use $map to reference the LS layer by name. Here is an example that grabs the Regions polygon layer in the project web map and uses it for an intersect between it and the captured feature ($feature). It returns the region name for the intersected polygon: // Create a feature set using the 'Regions' layer in the map var regions = FeatureSetByName($map, 'Regions', ['name']); // Intersect the current location with the regions and // get the first region var region = First(Intersects($feature, regions)); // If the current location does intersect a feature, // return the name of the region. Otherwise, return null if (HasValue(region, "name")) { return region['name']; } else { return null; } You should be able to modify the above by updating the layer name ('Regions') and returned field ('name' and "name"). Let me know how you go. Thanks John
... View more
04-30-2024
04:53 PM
|
1
|
0
|
1920
|
|
POST
|
Hi - Unfortunately, the arcade expression can only update the field/layer it has been configured for. The functionality is intended to provide more flexibility when updating a single field and can't be used to update multiple fields in the target or additional feature layers.
The best option for your requirement would be to look into web hooks: https://www.youtube.com/watch?v=2cYsa6xsxqk - here you could build a scenario that queries and updates multiple layers.
Further information:
https://doc.arcgis.com/en/quickcapture/help/webhooks.htm
... View more
04-29-2024
04:50 PM
|
0
|
0
|
1933
|
|
POST
|
Hi Amanda, I can confirm the enterprise layers work with dyanmic choice lists. Are you able to share the problem project with me? Happy to check it out. [email protected] Thanks John
... View more
04-28-2024
06:13 PM
|
0
|
1
|
1291
|
|
POST
|
I have found that the original expression is failing in QuickCapture because of the comma followed by a space ", " . It looks like this is an ArcGIS Runtime bug. If you remove the comma the above will work.
But the following will work also: Text(Now(), "DD/MM/YYYY, hh:mm A");
... View more
04-14-2024
04:11 PM
|
0
|
4
|
3914
|
|
IDEA
|
This has been implemented in 1.19. In the QuickCapture designer there is a new option under the more (...) setting called Button user inputs. Here you can view existing button user inputs and drag to re-order them.
... View more
04-08-2024
10:53 PM
|
0
|
0
|
2140
|
|
IDEA
|
This has been implemented in version 1.19 of the designer. Under map settings you can now set the local symbology to be one of the following: - Map pins (the existing default) - Symbology from the project button - Symbology from the target feature layer
... View more
04-08-2024
10:48 PM
|
0
|
0
|
2084
|
|
POST
|
https://developers.arcgis.com/arcade/function-reference/text_functions/#find
... View more
04-04-2024
07:02 PM
|
1
|
0
|
2913
|
|
POST
|
Hi Frank, make sure that you use $feature in order to get the project user input value for the captured feature. Then use Find to do the check. var Project = $feature.Project; if (Find("Dog", Project) > -1) { return "Dog"; } else if (Find("Cat",Project,) > -1) { return "Cat"; } else if (Find("Frog", Project) > -1) { return "Frog"; }
... View more
04-04-2024
07:00 PM
|
1
|
1
|
2913
|
|
POST
|
Hi Clint. I'll get this added as a priority enhanment. There is no reason why search should not work on a button user input. Thanks for sharing.
... View more
04-04-2024
06:14 PM
|
1
|
0
|
926
|
|
POST
|
Hi @WILERMJOSEPERAZAPIMENTEL - This is not currently supported in the application. But I have logged your request as a requirement.
... View more
04-01-2024
09:58 PM
|
0
|
0
|
708
|
|
POST
|
This is an enhancement to apply dynamic choice lists to button user inputs too. I'll add this to our backlog.
... View more
03-27-2024
06:42 PM
|
0
|
1
|
1895
|
|
POST
|
@AxelAnderson1 - could you please send an email to: [email protected]. I'd like to get on a call to take a look. Thanks John
... View more
03-27-2024
06:39 PM
|
0
|
0
|
801
|
|
POST
|
Hi @WILERMJOSEPERAZAPIMENTEL - This is not currently supported in the application. But I have logged your request as a requirement.
... View more
03-27-2024
06:31 PM
|
0
|
1
|
1740
|
|
IDEA
|
03-06-2024
05:20 PM
|
0
|
0
|
1743
|
|
IDEA
|
Take a look at the following document: You could use a dynamic choice list that is filtered on location. Each time the list is opened, it could be populated with values from nearby features. "parameters": "geometry=${longitude},${latitude}&geometryType=esriGeometryPoint&spatialRel=esriSpatialRelIntersects&distance=20&units=esriSRUnit_Kilometer&inSR=4326&outSR=4326"
... View more
03-06-2024
05:20 PM
|
0
|
0
|
1744
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | 04-15-2026 08:34 PM | |
| 1 | 04-15-2026 09:29 PM | |
| 1 | 01-19-2026 07:51 PM | |
| 2 | 12-21-2025 05:34 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|