Hi,
We are using Survey123 for field inspections and we are investigating if we can move it to Field Maps. The form is complex and we use Survey123 parameters to dynamically pass data into the survey. In this way the form is dynamic and input is based on the properties of the item to survey. See below for some sample URLs.
Is passing parameters in this way supported in Field Maps? I don't see any options for field parameters listed here: https://doc.arcgis.com/en/field-maps/android/help/deploy-your-map.htm#ESRI_SECTION1_F7DE2402BA8743E5...
If it is not supported are there plans to support it in the future?
Sample Survey123 URLs:
Solved! Go to Solution.
It looks like you are passing in attributes for the field. This is supported in Field Maps using the featureAttributes parameter. There are two example URLs about halfway down doc page you linked to:
Without URL encoding—https://fieldmaps.arcgis.app?referenceContext=addFeature&itemID=3ac4145c1ac44aea86e9ed42e00fbb0d&geo...
With URL encoding of form entries—https://fieldmaps.arcgis.app?referenceContext=addFeature&itemID=3ac4145c1ac44aea86e9ed42e00fbb0d&geo...
These will initiate collecting a new feature and populate the values in the form which could be used to conditionally hide/show other fields. Is that what you are hoping to achieve?
It looks like you are passing in attributes for the field. This is supported in Field Maps using the featureAttributes parameter. There are two example URLs about halfway down doc page you linked to:
Without URL encoding—https://fieldmaps.arcgis.app?referenceContext=addFeature&itemID=3ac4145c1ac44aea86e9ed42e00fbb0d&geo...
With URL encoding of form entries—https://fieldmaps.arcgis.app?referenceContext=addFeature&itemID=3ac4145c1ac44aea86e9ed42e00fbb0d&geo...
These will initiate collecting a new feature and populate the values in the form which could be used to conditionally hide/show other fields. Is that what you are hoping to achieve?
Thanks Aaron. That's what I was looking for.