<?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: implement measurement widget (version 2.3)  to a different wkid in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294567#M27030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We have a patch for the measurement widget when working with projected data. To use the patch reference the attached .js file in your application after the jsapi script tag:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.3"&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;script type="text/javascript" src="./patch.js"&amp;gt;&amp;lt;/script&amp;gt;


&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 14:09:54 GMT</pubDate>
    <dc:creator>KellyHutchins</dc:creator>
    <dc:date>2021-12-11T14:09:54Z</dc:date>
    <item>
      <title>implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294561#M27024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to implement the new measurement widget from the new version of the api 2.3 but my wkid it is different where can i specify what wkid&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var measurement = new esri.dijit.Measurement({&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map: map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, dojo.byId('measurementDiv'));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.........&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did try to implement the widget in our stateplane sample but I am prompted to specify wkid and I don't know where or how?!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 13:47:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294561#M27024</guid>
      <dc:creator>GabiVoicu</dc:creator>
      <dc:date>2011-05-19T13:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294562#M27025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is a bug with the measurement widget and we'll fix it for the next release.&amp;nbsp; You can workaround this issue by creating a global variable in your application called wkid and assigning the spatial reference number to it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 var wkid = 26912;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:09:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294562#M27025</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T14:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294563#M27026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;This is a bug with the measurement widget and we'll fix it for the next release.&amp;nbsp; You can workaround this issue by creating a global variable in your application called wkid and assigning the spatial reference number to it:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 var wkid = 26912;
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Well thank you - thank you that certainly helped!...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;sample not working here&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://maps.collincountytx.gov/testmeasure.html" rel="nofollow noopener noreferrer" target="_blank"&gt;http://maps.collincountytx.gov/testmeasure.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294563#M27026</guid>
      <dc:creator>GabiVoicu</dc:creator>
      <dc:date>2021-12-11T14:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294564#M27027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;wkid should be global variable. Please put the line of code outside any functions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We are going to patch the bug. Sorry about any inconvenience.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 18:40:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294564#M27027</guid>
      <dc:creator>JianHuang</dc:creator>
      <dc:date>2011-05-19T18:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294565#M27028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gabi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After looking at your app, I realized that it points to a 9.3.1 geometry service, which results in a different value when calculating area. Please use a version 10 server geometry service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Well thank you - thank you that certainly helped!...&lt;BR /&gt;Thank you&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 18:51:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294565#M27028</guid>
      <dc:creator>JianHuang</dc:creator>
      <dc:date>2011-05-19T18:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294566#M27029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Gabi,&lt;BR /&gt;&lt;BR /&gt;After looking at your app, I realized that it points to a 9.3.1 geometry service, which results in a different value when calculating area. Please use a version 10 server geometry service.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;sorry..... i thought i have fixed my issue .....but now i'm not sure anymore about the 9.3.1 geometry service...really not the right values for 9.3.1 geometry service...they look fine seems like it though&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://maps.collincountytx.gov/testmeasureO.html"&gt;http://maps.collincountytx.gov/testmeasureO.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;not ready for 10 services to implement yet because of the print functionality..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 18:56:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294566#M27029</guid>
      <dc:creator>GabiVoicu</dc:creator>
      <dc:date>2011-05-19T18:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294567#M27030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We have a patch for the measurement widget when working with projected data. To use the patch reference the attached .js file in your application after the jsapi script tag:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.3"&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;script type="text/javascript" src="./patch.js"&amp;gt;&amp;lt;/script&amp;gt;


&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:09:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294567#M27030</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T14:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294568#M27031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kelly,&amp;nbsp; Is there a way to get this simple measure tool in as a compiled widget??? (with all patches/fixes)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 15:54:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294568#M27031</guid>
      <dc:creator>JosephTauer</dc:creator>
      <dc:date>2011-05-24T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294569#M27032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I completely agree with GISJJT. Is there a pre-compiled version of this anywhere, or at least some less vague instructions? This "simple" Measure Tool has proven to be anything but simple...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2013 16:43:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294569#M27032</guid>
      <dc:creator>JesseRaymond</dc:creator>
      <dc:date>2013-01-07T16:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: implement measurement widget (version 2.3)  to a different wkid</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294570#M27033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does this bug still exist?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I added just one of our layers to the Measure dijit sample, and it causes it to not work (the ruler and scalebar to measure distance and area do not show up in the titlePane).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I comment them back out and it works again. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Our layers are in Georgia State Plane Ft. But shouldn't this tool know how to deal with multiple projections?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also I put the patch.js in as a reference to the sample which uses the 3.3 API and it didn't seem to do anything, still the same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks all. I also called ESRI and I will post back here when I figure this out.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 20:08:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/implement-measurement-widget-version-2-3-nbsp-to-a/m-p/294570#M27033</guid>
      <dc:creator>KevinMacLeod1</dc:creator>
      <dc:date>2013-02-08T20:08:55Z</dc:date>
    </item>
  </channel>
</rss>

