<?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: Coordinate Widget - Multiple Outputs same Coordinate System in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281558#M7454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lemao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll look forward to the next release&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anthony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2015 17:18:53 GMT</pubDate>
    <dc:creator>AnthonyGiles</dc:creator>
    <dc:date>2015-10-22T17:18:53Z</dc:date>
    <item>
      <title>Coordinate Widget - Multiple Outputs same Coordinate System</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281555#M7451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody figured a work around for have the same WKID listed more than once in the coordinate widget? I would like to show &lt;SPAN class="wkid-label" data-dojo-attach-point="wkidLabel"&gt;WGS_1984_Web_Mercator_Auxiliary_Sphere&lt;/SPAN&gt; (3857) as MGRS, Degrees Minutes Seconds and Decimal Degrees but I can only add the WKID once. On the second time off trying to add the same WKID I get the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="wkid-label" data-dojo-attach-point="wkidLabel"&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/131489_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anthony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 10:18:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281555#M7451</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2015-10-16T10:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Widget - Multiple Outputs same Coordinate System</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281556#M7452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In response to my own question I can add the following json to the layout config which allows me to get the three types of output I require but it is not a very elegant way to have to do it (plus only possible with the developer version). Notice on the second spatial reference I am using 102100 you can not add this in through the widget gui as it keeps changing back to 3857:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/Coordinate/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 20,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 40
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp; "config": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "spatialReferences": [
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "wkid": "3857",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "MGRS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "outputUnit": "MGRS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationWkid": "",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationLabel": "MGRS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformForward": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "options": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "sameSRWithMap": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicCS": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicUnit": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectedCS": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectUnit": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "spheroidCS": 4326,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "defaultUnit": "Meter",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "unitRate": 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "wkid": "102100",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Degrees Minutes Seconds",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "outputUnit": "DEGREE_MINUTE_SECONDS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationWkid": "",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationLabel": "Transformation Name",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformForward": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "options": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "sameSRWithMap": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicCS": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicUnit": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectedCS": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectUnit": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "spheroidCS": 4326,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "defaultUnit": "Degree",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "unitRate": 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "wkid": "4326",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Decimal Degrees",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "outputUnit": "DECIMAL_DEGREES",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationWkid": "",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformationLabel": "Transformation Name",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "transformForward": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "options": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "sameSRWithMap": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicCS": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isGeographicUnit": true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectedCS": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "isProjectUnit": false,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "spheroidCS": 4326,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "defaultUnit": "Degree",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "unitRate": 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; ],
&amp;nbsp;&amp;nbsp;&amp;nbsp; "decimalPlaces": 3,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "addSeparator": true
&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:38:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281556#M7452</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2021-12-11T13:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Widget - Multiple Outputs same Coordinate System</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281557#M7453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has been enhanced to allow multiple CS with same wkid, and will be available in next update (AGOL Nov update and Dev Edition 1.3).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 07:44:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281557#M7453</guid>
      <dc:creator>LemaoWu</dc:creator>
      <dc:date>2015-10-20T07:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate Widget - Multiple Outputs same Coordinate System</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281558#M7454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lemao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll look forward to the next release&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anthony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 17:18:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/coordinate-widget-multiple-outputs-same-coordinate/m-p/281558#M7454</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2015-10-22T17:18:53Z</dc:date>
    </item>
  </channel>
</rss>

