Select to view content in your preferred language

ArcGIS Field Maps: Manual Feature Entry and Autocapture coordinates?

232
2
04-10-2025 07:05 AM
renee_orie
New Contributor

Does anyone know how to get the xy coordinates to populate in the data table for manually entered features in ArcGIS Field Maps? I'm able to add features via Map Viewer when I'm not at the location but I don't know how for it to record the spatially connected coordinates in the attribute table? Any ideas?

0 Kudos
2 Replies
fjramos
Frequent Contributor

Try adding these fields in the "Pop-up" attribute expressions for desired feature layer.

X-Value

return Round(Geometry($feature).X, 2)
 
Y- Value
 
return Round(Geometry($feature).Y, 2)
 
fjramos_1-1744374714028.png

 

fjramos_2-1744374745784.png

 

fjramos_3-1744374791722.png

 

0 Kudos
fjramos
Frequent Contributor

I forgot a couple steps:

The in the Pop-up "Field List" add the created expressions on "Select field"

fjramos_0-1744384992200.png

Check the X, Y expressions

fjramos_1-1744385110782.png

 

And they should be on your pop-up now

fjramos_2-1744385160565.png

 

0 Kudos