<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632779#M11109</link>
    <description>&lt;P&gt;Thanks for the suggestion, this seems to be the best approach for my implementation needs for now, and it works.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jul 2025 09:45:49 GMT</pubDate>
    <dc:creator>KevinKamau</dc:creator>
    <dc:date>2025-07-14T09:45:49Z</dc:date>
    <item>
      <title>Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417455#M8507</link>
      <description>&lt;P&gt;In ArcGIS Field Maps, is there a way to log the current location of a mobile device when a record is added to a related inspection table ? The goal is not to track the asset’s current geometry, but rather to verify the user’s location at the time of record creation. This would serve as proof that the user was indeed at the specified location.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 10:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417455#M8507</guid>
      <dc:creator>DhowalDalal_EsriUK</dc:creator>
      <dc:date>2024-05-01T10:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417477#M8509</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/442385"&gt;@DhowalDalal_EsriUK&lt;/a&gt;&amp;nbsp;. Yes, you can collect the current geometry using the Arcade function Geometry() on your field. For your X field, you would add this expression:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Round(Geometry($feature).X, 6)&lt;/LI-CODE&gt;&lt;P&gt;Then do the same for your Y field, switching the X for a Y in the expression. The example here is rounding your X coordinate to 6 places, you can change that 6 to another number to fit your needs.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 11:51:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417477#M8509</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-01T11:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417504#M8511</link>
      <description>&lt;P&gt;Thanks for the reply &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/138329"&gt;@KerriRasmussen&lt;/a&gt;&amp;nbsp;- just to check i`ve understood the steps correctly&lt;/P&gt;&lt;P&gt;1 - Create two new fields in the related table to capture X and Y&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 - Calculate geometry using Arcade expression above.&lt;/P&gt;&lt;P&gt;Question - will this use the GPS location from the device? Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 13:12:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417504#M8511</guid>
      <dc:creator>DhowalDalal_EsriUK</dc:creator>
      <dc:date>2024-05-01T13:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417689#M8524</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/442385"&gt;@DhowalDalal_EsriUK&lt;/a&gt;&amp;nbsp; Yes, you are correct, create the fields then add the Arcade expressions to those fields to calculate the geometry.&lt;/P&gt;&lt;P&gt;Yes, it will use the GPS location of the device.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 18:08:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417689#M8524</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-01T18:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417991#M8531</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/138329"&gt;@KerriRasmussen&lt;/a&gt;&amp;nbsp;- we are going to test this. Will report back.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 09:20:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1417991#M8531</guid>
      <dc:creator>DhowalDalal_EsriUK</dc:creator>
      <dc:date>2024-05-02T09:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418016#M8533</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/138329"&gt;@KerriRasmussen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Isn't the Geometry&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;) function just going to return the geometry of a feature?&lt;BR /&gt;&lt;BR /&gt;The scenario I have is, I have a point feature layer that contains assets, I have a related inspection table that users complete when carrying out cyclical operation to the asset, I already have arcade expressions in attribute rules that copies the x and y to fields on my inspection table so that we have a record of the location of the assets when it was inspected.&lt;BR /&gt;&lt;BR /&gt;What we want to add to this is a method of recording the current location of the user when they are creating an inspection record to prove that they were on site at the time that the inspection was recorded. So some way of grabing the mobile device's current GPS coordinates when the inspection record is created.&lt;BR /&gt;&lt;BR /&gt;We did have a suggestion to make the inspection table a point feature class and use GPS metadata to capture the user&amp;nbsp;&lt;/SPAN&gt;location but I don't see how you could force GPS location and prevent the user manually setting the location of this point layer.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 11:46:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418016#M8533</guid>
      <dc:creator>ShaunGibbins</dc:creator>
      <dc:date>2024-05-02T11:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418043#M8535</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/657155"&gt;@ShaunGibbins&lt;/a&gt;&amp;nbsp;It depends on how you use the geometry function. The example I used above will take the geometry of the point and return the X value for that point.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can collect the lat/long using the geometry function, but there is also another option.&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/442385"&gt;@DhowalDalal_EsriUK&lt;/a&gt;&amp;nbsp;this option may also work for you as well.&lt;/P&gt;&lt;P&gt;In Field Maps Designer, if you go into the&amp;nbsp; app settings for your form, select Collection and scroll down to Manual location. There is an option to block manual location, meaning that when the user is entering a point, it will automatically use their GPS location and will not allow the user to manually change their location. One note I should make here is that this is for collecting a point, not for collecting in a related table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 13:08:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418043#M8535</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-02T13:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418049#M8536</link>
      <description>&lt;P&gt;Hi Kerri&lt;/P&gt;&lt;P&gt;Dhowal was posting on our behalf so it's my problem he is trying to find a solution for.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If I change my inspection table to a point feature class and block manual location then this would indeed provide a solution to the dilemma.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this setting available in enterprise and if so what version as I am not seeing the option in our 10.8.1 environment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ShaunGibbins_0-1714655971546.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/102819i13EF0257023F1083/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ShaunGibbins_0-1714655971546.png" alt="ShaunGibbins_0-1714655971546.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 13:19:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418049#M8536</guid>
      <dc:creator>ShaunGibbins</dc:creator>
      <dc:date>2024-05-02T13:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418587#M8543</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/657155"&gt;@ShaunGibbins&lt;/a&gt;&amp;nbsp;. Yes, the settings are available in Enterprise at 11.2. So in that case, you may need to use Arcade for now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 10:52:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418587#M8543</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-03T10:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418591#M8544</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/138329"&gt;@KerriRasmussen&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;We are on an upgrade path to 11.x but have been delayed due to the corrupt security patch, we are in the process of attempting the repair this weekend.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For now though I still don't quite understand how I use arcade to grab gps coordinates, I can only find a function that pulls the x or y from a feature. &amp;nbsp;The feature can be manually located so I am after the GPS location of the mobile device at the time the record is created as opposed to a location the user can manipulate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 11:07:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418591#M8544</guid>
      <dc:creator>ShaunGibbins</dc:creator>
      <dc:date>2024-05-03T11:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418691#M8546</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/657155"&gt;@ShaunGibbins&lt;/a&gt;&amp;nbsp;The only other way to collect lat/long coordinate that can't be changed by the user would be to use location tracking. Otherwise, yes the user can change the location of the feature which would change the x/y values.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 13:39:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418691#M8546</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-03T13:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418704#M8547</link>
      <description>&lt;P&gt;Thanks for your help with this&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/138329"&gt;@KerriRasmussen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One last question related to your previous comment pasted below, can you block manual location by layer?&lt;BR /&gt;I would still need the asset layer to be accurately positioned against our detailed 'ordnance survey&amp;nbsp;MasterMap Topography' basemap I would just want to restrict the related inspection layer from manual location. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"In Field Maps Designer, if you go into the&amp;nbsp; app settings for your form, select Collection and scroll down to Manual location. There is an option to block manual location"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 14:09:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418704#M8547</guid>
      <dc:creator>ShaunGibbins</dc:creator>
      <dc:date>2024-05-03T14:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418743#M8551</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/657155"&gt;@ShaunGibbins&lt;/a&gt;&amp;nbsp;When blocking the manual location entry, it's done at the map level in Field Maps Designer. Since you have another layer that needs the ability to be moved manually, you may want to look into location sharing to capture actual locations of the device while giving users the ability to manually move points.&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 15:04:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1418743#M8551</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2024-05-03T15:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632309#M11085</link>
      <description>&lt;P&gt;Hi Kerri, I have a use case for this suggestion but I don't know if it will work out. In my case I have a point feature class that was created using the Create Random Points geoprocessing tool. The points represent areas were soil samples need to be taken for lab analysis. What I want to achieve is, within the field maps app, the option to edit the sampling status from not sampled to sampled (a field in the point FC), to only be visible when the mobile worker is within a certain distance from the point. How would you suggest I go about implementing such functionality. I tried using Geofencing, but due to the large number of points, there was a performance issue with the resulting map on the workers side.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 05:44:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632309#M11085</guid>
      <dc:creator>KevinKamau</dc:creator>
      <dc:date>2025-07-11T05:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632396#M11089</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/863163"&gt;@KevinKamau&lt;/a&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree that using geofencing would be problematic with a larger number of points if you were trying to add a geofence around each point. I have another possible solution for you. If you take your current layer (the random point FC) and make that layer read-only and remove the pop-up. Then you add another layer to the map that will be your data collection layer using different symbology. There is a data collection setting in Field Maps Designer (App settings &amp;gt; Collection &amp;gt; Manual location) where you can block manual location entry, basically when a point is created, it will show at the current device location and the user can’t manually move the point. This will show you the location where the sample was collected and you can compare that to the original location on the map to make sure they are within your expected tolerance. If the mobile users only need to collect the point, it’s as easy as hitting submit, otherwise they can add some other data to the form for that point as well. They can see what has been collected and what hasn’t based on the symbology.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 13:41:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632396#M11089</guid>
      <dc:creator>KerriRasmussen</dc:creator>
      <dc:date>2025-07-11T13:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing User’s Location at Related Table Record Creation in ArcGIS Field Maps</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632779#M11109</link>
      <description>&lt;P&gt;Thanks for the suggestion, this seems to be the best approach for my implementation needs for now, and it works.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 09:45:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/capturing-user-s-location-at-related-table-record/m-p/1632779#M11109</guid>
      <dc:creator>KevinKamau</dc:creator>
      <dc:date>2025-07-14T09:45:49Z</dc:date>
    </item>
  </channel>
</rss>

