<?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: Using location from field maps in survey123 in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1699277#M66097</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/412943"&gt;@ChristopherCounsell&lt;/a&gt;&amp;nbsp;could you edit your line of code? I think the last line should be&amp;nbsp;&lt;/P&gt;&lt;P&gt;url = url + "&amp;amp;center=" &lt;FONT face="arial black,avant garde" color="#339966"&gt;&lt;STRONG&gt;+&lt;/STRONG&gt;&lt;/FONT&gt; latlon.y + "," + latlon.x&lt;/P&gt;</description>
    <pubDate>Thu, 30 Apr 2026 13:21:02 GMT</pubDate>
    <dc:creator>EricaNova</dc:creator>
    <dc:date>2026-04-30T13:21:02Z</dc:date>
    <item>
      <title>Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1401687#M55817</link>
      <description>&lt;P&gt;I have a field map with a point layer and when a user selects a point, the pop up contains a link that launches survey123 and automatically fills in some of the survey fields based on information from field maps using the&amp;nbsp;&lt;SPAN&gt;field:fieldname parameter. I assumed that the location of the point in field maps would be used as the location of the entry in survey123, but instead it uses the user's location. Is there a way to use the field maps point location as the survey123 location?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 20:33:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1401687#M55817</guid>
      <dc:creator>SeanOTooleCT</dc:creator>
      <dc:date>2024-03-27T20:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1401770#M55821</link>
      <description>&lt;P&gt;Hi Sean, here's how we do that:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Add&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;&amp;amp;center=&amp;lt;lat&amp;gt;,&amp;lt;long&amp;gt;&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to the end of the link that opens Survey123 (ex:&amp;nbsp; &amp;amp;&lt;EM&gt;center=40.3798956137812,-122.98043757805&lt;/EM&gt;).&lt;/LI&gt;&lt;LI&gt;On the geopoint question in your survey's XLSform, set required=yes, readonly=yes, and default=null.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;You'll need to use an Arcade expression to get the lat-long values. If your Field Maps point data happens to be in 4326 (WGS 84), you can just add&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;"&amp;amp;center=" + Geometry($feature).y + ',' + Geometry($feature).x&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;to the expression that builds your link (or if you happen to already have lat/long values elsewhere in the table, you can just use those, of course).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If your Field Maps point data is in another projection, it gets a bit trickier because you have to convert to lat/long. Let me know if this is the case and I'll see if I can help you convert those values in your popup.&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Mar 2024 01:43:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1401770#M55821</guid>
      <dc:creator>JRhodes</dc:creator>
      <dc:date>2024-03-28T01:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1402320#M55846</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/97885"&gt;@JRhodes&lt;/a&gt;&amp;nbsp;is correct with the URL values, but if your data is in WGS84 (Web Meractor) the Geomtetry($feature) returns projected coordinates instead of the necessary decimal degrees. You'll need to convert them.&lt;/P&gt;&lt;LI-CODE lang="c"&gt;function MetersToLatLon(x, y) {
    var long = (x / 20037508.34) * 180;
    var lat = (y / 20037508.34) * 180;
    lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0);
    return{
        y: lat,
        x: long
    }
}
var latlon = MetersToLatLon(Geometry($feature).X, Geometry($feature).Y);

// assuming you have a URL already and adding parameters
url = url + "&amp;amp;center=" = latlon.y + "," + latlon.x&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other examples of that here and elsewhere on the community forums&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/knowledge-base/how-to-launch-and-populate-a-survey123-for-arcgis-surve-000020624" target="_blank"&gt;https://support.esri.com/en-us/knowledge-base/how-to-launch-and-populate-a-survey123-for-arcgis-surve-000020624&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 01:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1402320#M55846</guid>
      <dc:creator>ChristopherCounsell</dc:creator>
      <dc:date>2024-03-29T01:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1405349#M55953</link>
      <description>&lt;P&gt;Thank you both so much for the very helpful responses!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 17:52:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1405349#M55953</guid>
      <dc:creator>SeanOTooleCT</dc:creator>
      <dc:date>2024-04-03T17:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1405599#M55964</link>
      <description>&lt;P&gt;did you get it working? If so please mark the comment that helped you as the answer so the post is closed.&lt;/P&gt;&lt;P&gt;Cheers, Chris&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2024 07:22:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1405599#M55964</guid>
      <dc:creator>ChristopherCounsell</dc:creator>
      <dc:date>2024-04-04T07:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1547468#M59577</link>
      <description>&lt;P&gt;Hi Joseph, I'm having a similar issue but with pulling in the z value and horizontal accuracy from Field Maps into Survey123. The S123 form is set up to capture the x, y, z values, along with the horizontal accuracy of the point that is created in Field Maps and hyperlinks to a Survey123 form. When the S123 form is initiated directly through the Survey123 app all of those values are captured correctly, however, when the form is initiated from hyperlink in Field Maps, only the x and y values are carried over. Any ideas on how I can bring in the z and horizontal accuracy as well? Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 05:45:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1547468#M59577</guid>
      <dc:creator>KelseyWong</dc:creator>
      <dc:date>2024-10-10T05:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using location from field maps in survey123</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1699277#M66097</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/412943"&gt;@ChristopherCounsell&lt;/a&gt;&amp;nbsp;could you edit your line of code? I think the last line should be&amp;nbsp;&lt;/P&gt;&lt;P&gt;url = url + "&amp;amp;center=" &lt;FONT face="arial black,avant garde" color="#339966"&gt;&lt;STRONG&gt;+&lt;/STRONG&gt;&lt;/FONT&gt; latlon.y + "," + latlon.x&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 13:21:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/using-location-from-field-maps-in-survey123/m-p/1699277#M66097</guid>
      <dc:creator>EricaNova</dc:creator>
      <dc:date>2026-04-30T13:21:02Z</dc:date>
    </item>
  </channel>
</rss>

