|
POST
|
Hi Alex To answer your questions: - You can't constrain points to be collected on existing lines. - You can't auto-populate a field in a captured feature with attribute values from another layer. QuickCapture is designed to be a rapid data collection app that is quick, simple and versatile. In your case, your best approach is to go down the post-processing route (using spatial joins/intersects). One thing that might help, is that we are planning to add support for Webhooks. This means that you could build a process that starts when a record is captured/uploaded, and uses spatial inheritance against another layer to update the feature service attributes. Note that we don't have a firm date for this functionality, but it is in our roadmap. I recommend that you sign up to the Early Adopter Community so that you get early access to the functionality: https://earlyadopter.esri.com/key/ArcGISQuickCapture. We will add some examples when this functionality is released in beta. Thanks John
... View more
07-25-2019
05:57 PM
|
2
|
2
|
1839
|
|
POST
|
Hi Cathy The issue is caused by an incorrect edit made to the project using the JSON editor: "attributes": { "Username": null, "FULLNAME": null, "CRITICAL_GRADE": null, "JURISDICTION": null, "RoadLabel": null, "LocationAccuracy": "AppStudio-CoreLocation", "Timestamp": 1562950845295, "username": "mvadmin", "positionSourceType": 2, "pluginName": "AppStudio-CoreLocation", "startTime": 1562950845295, "endTime": 1562951119295 } } The username field appears twice. Removing the duplicate and saving the project will fix the issue. Thanks John
... View more
07-15-2019
05:30 PM
|
0
|
0
|
3468
|
|
BLOG
|
Hi Huong - please drop me an email on [email protected] so we can troubleshoot this. Thanks
... View more
07-11-2019
12:12 AM
|
0
|
0
|
3664
|
|
POST
|
Hi Chauhan The time threshold is currently an unsupported property. As a result, you will get a new vertex at the default frequency of your location provider, which will be at least 1 vertex per second (1Hz). An external GNSS sensor could provide more than one vertex per second if operating at a higher frequency (>1Hz). Thanks John
... View more
07-11-2019
12:10 AM
|
2
|
0
|
4571
|
|
BLOG
|
Note that you can directly download the Android builds from here while we are waiting for the store to update: https://www.esri.com/en-us/arcgis/products/arcgis-quickcapture/resources
... View more
06-27-2019
10:57 PM
|
0
|
0
|
2230
|
|
POST
|
Hi Debs We are planning this functionality in the future. But for the time being, you can add new layers using the designer's JSON editor. Please see the documentation for this functionality here. Essentially you can add in a new layer in the project JSON using the dataSources array: "dataSources": [ { "featureServiceItemId": "1f683747c06c4a7e9843a477b2ab41e0", "dataSourceId": 0, "url": "https://services1.arcgis.com/e7dVfn25KpfE6dDd/arcgis/rest/services/LayerOne/FeatureServer/0" }, { "featureServiceItemId": "2b313747c06c4a7e9843a477b2ab41e0", "dataSourceId": 1, "url": "https://services1.arcgis.com/b45KpfE6dEf121/arcgis/rest/services/LayerTwo/FeatureServer/1" } ] Each dataSource is defined by 3 properties: - featureServiceItemId: The itemid of the feature layer - dataSourceId: A unique ID for the layer that can be used to link it to a button/template - url: The url of the feature layer (including the layer number e.g. /1) You just need to make sure you are entering valid JSON. Once you add a new layer, you then need to use the datasourceId to link a button/template to it: "captureInfo": { "continuous": false, "exclusivityGroup": null, "dataSourceId": 1, "type": "esriGeometryPoint" }, I recommend that you take a moment to look at the JSON structure of your project using the JSON editor, and get familiar with it. To do this, open your project in https://quickcapture.arcgis.com and then click the </> button. Please let me know if you need any further help with this. Thanks John
... View more
06-27-2019
10:52 PM
|
0
|
0
|
1975
|
|
BLOG
|
Hi Alicia - can you make sure that you are using the newly released version of the app from here: https://www.esri.com/en-us/arcgis/products/arcgis-quickcapture/resources. Projects won't work on the old Esri Labs version of the app. If you are still having problems, please feel free to drop me an email on [email protected]. Thanks John
... View more
06-27-2019
10:23 PM
|
0
|
0
|
4105
|
|
BLOG
|
Hi Ramon We don't yet support the configuration of user inputs using the designer's UI. You must use the JSON editor to do this. We have documented the functionality here: https://doc.arcgis.com/en/quickcapture/help/editproject.htm#ESRI_SECTION1_2189D89E06E6424F9312EE1DD324ACBE Please let me know if you have any questions. Thanks John
... View more
06-27-2019
10:19 PM
|
1
|
0
|
3664
|
|
POST
|
Hi Ramon Please test drive our new documentation page on this - it has a description and some examples: But note you must use the JSON editor in the designer to set this up. We will add this functionality into the designer UI in the future, but we are not quite ready yet. Please let me know if you have any questions at all. Thanks John
... View more
06-27-2019
10:14 PM
|
2
|
7
|
2958
|
|
POST
|
Thanks Guy - what was the question that was not submitting?
... View more
03-19-2019
04:52 PM
|
0
|
3
|
2412
|
|
POST
|
Hi Wade The issue is that the required statement is: ${WR_Pass}<35 or ${WR_Background}<7 But ${WR_Pass} and {WR_Background} are both note (text) fields. The evaluation is failing because you can't do < on a string. Thanks John
... View more
03-17-2019
05:11 PM
|
0
|
0
|
1001
|
|
POST
|
Hi Chris Can you share a little more information on this issue: - Device and platform? - The version of Survey123? - Does this happen on all surveys or just this specific one? - Could create a copy of the survey and republish/retest - does that same thing happen? - Are you the survey author and are logging in to the device using the same user? Thanks John
... View more
03-17-2019
04:43 PM
|
0
|
18
|
7715
|
|
POST
|
Hi Guy 1. We are releasing a fix for this issue shortly. But as a quick workaround, move the now() to the calculate field and republish. 2. Can you share your survey? Thanks John
... View more
03-17-2019
04:36 PM
|
0
|
5
|
2412
|
|
POST
|
Hi Rawand Epoche time is seconds from 0:00:00 1/1/1970 - so you will only get duplicates if two surveys are submitted at the same time. Please take a look at the following blog which covers other approaches for generating unique IDs. https://community.esri.com/groups/survey123/blog/2017/11/25/creating-ticket-numbers-in-survey123-for-arcgis Thanks John
... View more
03-17-2019
04:32 PM
|
0
|
0
|
1451
|
|
POST
|
Please see the following link: https://community.esri.com/groups/survey123/blog/2018/03/30/using-app-links-to-launch-survey123-from-explorer-for-arcgis
... View more
03-17-2019
04:26 PM
|
0
|
0
|
1008
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-24-2026 08:51 PM | |
| 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 |
2 weeks ago
|