<?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 Coordinate Conversion component setting currentLocation doesn't work properly in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1680182#M88094</link>
    <description>&lt;P&gt;Hi, after migrating to the new `@arcgis/map-components`, I noticed an issue with the **Coordinates Conversion** component.&lt;/P&gt;&lt;P&gt;We use this component to select a point on the map. If a point was initially selected, it should be restored after the map is initialized.&lt;/P&gt;&lt;P&gt;After the migration, the initially set `currentLocation` is displayed incorrectly. Instead of showing a proper DMS value, it is rendered as:&lt;/P&gt;&lt;P&gt;`77.037° 38.907' ", ° ' "`&lt;/P&gt;&lt;P&gt;This suggests that the degrees/minutes/seconds values are not being correctly parsed or formatted during initialization.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SvitlanaBilan_0-1769514692039.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147387i0C417E2BF6FF66C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SvitlanaBilan_0-1769514692039.png" alt="SvitlanaBilan_0-1769514692039.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    &amp;lt;arcgis-scene
      basemap="topo-vector"
      center="-118.836, 36.487"
      zoom="10"
      ground="world-elevation"
      camera-tilt="10"&amp;gt;
      &amp;lt;arcgis-zoom slot="top-right"&amp;gt;&amp;lt;/arcgis-zoom&amp;gt;
      &amp;lt;arcgis-coordinate-conversion
        slot="bottom-left"
        mode="capture"
        hide-settings-button multiple-conversions-disabled&amp;gt;&amp;lt;/arcgis-coordinate-conversion&amp;gt;
    &amp;lt;/arcgis-scene&amp;gt;
    &amp;lt;script type="module"&amp;gt;
      const coordinateConversion = document.querySelector("arcgis-coordinate-conversion");
      await coordinateConversion.componentOnReady();
      const toRemove = coordinateConversion.formats.filter(format =&amp;gt; format.name !== 'dms');
			coordinateConversion.formats.removeMany(toRemove);
      coordinateConversion.currentLocation = { x: 77.0369, y: 38.9072, spatialReference: { wkid: 4326 }};
    &amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jan 2026 11:54:23 GMT</pubDate>
    <dc:creator>SvitlanaBilan</dc:creator>
    <dc:date>2026-01-27T11:54:23Z</dc:date>
    <item>
      <title>Coordinate Conversion component setting currentLocation doesn't work properly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1680182#M88094</link>
      <description>&lt;P&gt;Hi, after migrating to the new `@arcgis/map-components`, I noticed an issue with the **Coordinates Conversion** component.&lt;/P&gt;&lt;P&gt;We use this component to select a point on the map. If a point was initially selected, it should be restored after the map is initialized.&lt;/P&gt;&lt;P&gt;After the migration, the initially set `currentLocation` is displayed incorrectly. Instead of showing a proper DMS value, it is rendered as:&lt;/P&gt;&lt;P&gt;`77.037° 38.907' ", ° ' "`&lt;/P&gt;&lt;P&gt;This suggests that the degrees/minutes/seconds values are not being correctly parsed or formatted during initialization.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SvitlanaBilan_0-1769514692039.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147387i0C417E2BF6FF66C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SvitlanaBilan_0-1769514692039.png" alt="SvitlanaBilan_0-1769514692039.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    &amp;lt;arcgis-scene
      basemap="topo-vector"
      center="-118.836, 36.487"
      zoom="10"
      ground="world-elevation"
      camera-tilt="10"&amp;gt;
      &amp;lt;arcgis-zoom slot="top-right"&amp;gt;&amp;lt;/arcgis-zoom&amp;gt;
      &amp;lt;arcgis-coordinate-conversion
        slot="bottom-left"
        mode="capture"
        hide-settings-button multiple-conversions-disabled&amp;gt;&amp;lt;/arcgis-coordinate-conversion&amp;gt;
    &amp;lt;/arcgis-scene&amp;gt;
    &amp;lt;script type="module"&amp;gt;
      const coordinateConversion = document.querySelector("arcgis-coordinate-conversion");
      await coordinateConversion.componentOnReady();
      const toRemove = coordinateConversion.formats.filter(format =&amp;gt; format.name !== 'dms');
			coordinateConversion.formats.removeMany(toRemove);
      coordinateConversion.currentLocation = { x: 77.0369, y: 38.9072, spatialReference: { wkid: 4326 }};
    &amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 11:54:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1680182#M88094</guid>
      <dc:creator>SvitlanaBilan</dc:creator>
      <dc:date>2026-01-27T11:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Conversion component setting currentLocation doesn't work properly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1680318#M88096</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/95977"&gt;@SvitlanaBilan&lt;/a&gt;, thanks for posting here. I'm seeing some issues as well, we'll investigate and update this thread as appropriate.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 19:25:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1680318#M88096</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2026-01-27T19:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Conversion component setting currentLocation doesn't work properly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1681505#M88107</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/95977"&gt;@SvitlanaBilan&lt;/a&gt;,&amp;nbsp;good news! We found the cause of the issue, and this will be resolved at the next release (expected in late February or early March).&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 16:33:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1681505#M88107</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2026-02-02T16:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Conversion component setting currentLocation doesn't work properly</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1681506#M88108</link>
      <description>&lt;P&gt;Great, thanks for the reply and confirmation &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 16:34:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/coordinate-conversion-component-setting/m-p/1681506#M88108</guid>
      <dc:creator>SvitlanaBilan</dc:creator>
      <dc:date>2026-02-02T16:34:14Z</dc:date>
    </item>
  </channel>
</rss>

