<?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 Add feature by WKID coordinates in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1685926#M22524</link>
    <description>&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;I have a question that maybe someone already knows the answer to, as the topic is well-known, but unfortunately I can't find the forum.&lt;BR /&gt;Does anyone have or know where I can find a widget that will insert an object based on WKID coordinates?&lt;/P&gt;&lt;P&gt;Ideally, it could be configured to connect to the map's edit data, but if it were a temporary object, meaning it could be inserted on the map, for example, as a pin, I'd also appreciate it. Experience Builder 1.19 (Dev Edition)&lt;/P&gt;&lt;P&gt;This is how I see this widget working:&lt;/P&gt;&lt;P&gt;The user enters:&lt;/P&gt;&lt;P&gt;X = 123124.66&lt;/P&gt;&lt;P&gt;Y = 434343.46&lt;/P&gt;&lt;P&gt;WKID = 2177&lt;/P&gt;&lt;P&gt;Click "Add point"&lt;/P&gt;&lt;P&gt;The point:&lt;/P&gt;&lt;P&gt;is saved to Enterprise GDB&lt;/P&gt;&lt;P&gt;appears on the map&lt;/P&gt;&lt;P&gt;The attribute form opens automatically&lt;/P&gt;&lt;P&gt;identical to the "Edit" widget&lt;/P&gt;&lt;P&gt;The user fills in the data and saves it&lt;/P&gt;&lt;P&gt;Best regards, everyone&lt;/P&gt;</description>
    <pubDate>Mon, 23 Feb 2026 16:19:49 GMT</pubDate>
    <dc:creator>PiotrCienin</dc:creator>
    <dc:date>2026-02-23T16:19:49Z</dc:date>
    <item>
      <title>Add feature by WKID coordinates</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1685926#M22524</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;I have a question that maybe someone already knows the answer to, as the topic is well-known, but unfortunately I can't find the forum.&lt;BR /&gt;Does anyone have or know where I can find a widget that will insert an object based on WKID coordinates?&lt;/P&gt;&lt;P&gt;Ideally, it could be configured to connect to the map's edit data, but if it were a temporary object, meaning it could be inserted on the map, for example, as a pin, I'd also appreciate it. Experience Builder 1.19 (Dev Edition)&lt;/P&gt;&lt;P&gt;This is how I see this widget working:&lt;/P&gt;&lt;P&gt;The user enters:&lt;/P&gt;&lt;P&gt;X = 123124.66&lt;/P&gt;&lt;P&gt;Y = 434343.46&lt;/P&gt;&lt;P&gt;WKID = 2177&lt;/P&gt;&lt;P&gt;Click "Add point"&lt;/P&gt;&lt;P&gt;The point:&lt;/P&gt;&lt;P&gt;is saved to Enterprise GDB&lt;/P&gt;&lt;P&gt;appears on the map&lt;/P&gt;&lt;P&gt;The attribute form opens automatically&lt;/P&gt;&lt;P&gt;identical to the "Edit" widget&lt;/P&gt;&lt;P&gt;The user fills in the data and saves it&lt;/P&gt;&lt;P&gt;Best regards, everyone&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 16:19:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1685926#M22524</guid>
      <dc:creator>PiotrCienin</dc:creator>
      <dc:date>2026-02-23T16:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Add feature by WKID coordinates</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1689411#M22749</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/115794"&gt;@PiotrCienin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There might be a solution with the coordinates and ensuring your map is the desired coordinate system, please see the link below which you might find helpful&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en-us/knowledge-base/how-to-create-a-point-on-a-map-by-entering-coordinates--000030877" target="_blank"&gt;How To: Create a Point on a Map by Entering Coordinates into the ArcGIS Experience Builder&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Something like the following JS might work&amp;nbsp;&lt;/P&gt;&lt;P&gt;//Create a point Geometry&lt;/P&gt;&lt;P&gt;const point = new Point({&lt;BR /&gt;x: xValue,&lt;BR /&gt;y: yValue,&lt;BR /&gt;spatialReference: { wkid: wkidValue }&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;//Add the feature to the target layer&lt;/P&gt;&lt;P&gt;layer.applyEdits({&lt;BR /&gt;addFeatures: [{ geometry: point, attributes: {} }]&lt;BR /&gt;});&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 15:50:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1689411#M22749</guid>
      <dc:creator>DanielFox1</dc:creator>
      <dc:date>2026-03-09T15:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add feature by WKID coordinates</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1694339#M22978</link>
      <description>&lt;P&gt;Thanks for the tip. However, I have a question. In which file and where in this pre-built widget should I add your script?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PC&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2026 10:30:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/add-feature-by-wkid-coordinates/m-p/1694339#M22978</guid>
      <dc:creator>PiotrCienin</dc:creator>
      <dc:date>2026-04-03T10:30:19Z</dc:date>
    </item>
  </channel>
</rss>

